* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 34px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            color: #f1c40f;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #f1c40f;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #2c3e50;
            font-size: 38px;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #f1c40f;
        }
        h2 {
            color: #2c3e50;
            font-size: 28px;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #f1c40f;
        }
        h3 {
            color: #34495e;
            font-size: 24px;
            margin: 30px 0 15px;
            position: relative;
            padding-bottom: 8px;
        }
        h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #f1c40f;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            margin: 0 12px;
            background-color: #2c3e50;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #1a252f;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #27ae60;
        }
        .btn-download:hover {
            background-color: #219653;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            color: #7f8c8d;
            font-size: 15px;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #2c3e50;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #f1f1f1;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-item span:first-child {
            font-weight: 500;
            color: #333;
        }
        .stat-item span:last-child {
            color: #2c3e50;
            font-weight: bold;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
        }
        .review-container:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 60px;
            color: #f1c40f;
            opacity: 0.5;
            font-family: Georgia, serif;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f1f1f1;
        }
        .reviewer {
            font-weight: bold;
            color: #2c3e50;
            font-size: 16px;
        }
        .rating {
            color: #f39c12;
            font-weight: bold;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 20px 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 40px;
        }
        .game-types h4, .tags h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #f1c40f;
            padding-bottom: 8px;
            border-bottom: 2px solid #f1c40f;
            display: inline-block;
        }
        .type-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .type-list a, .tag-list a {
            color: white;
            background-color: #7f8c8d;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .type-list a:hover, .tag-list a:hover {
            background-color: #f1c40f;
            color: #2c3e50;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 40px 0;
            padding: 25px;
            background-color: #34495e;
            border-radius: 10px;
            text-align: center;
            border-left: 5px solid #f1c40f;
        }
        .recommendation p {
            font-size: 19px;
            line-height: 1.7;
            color: #ecf0f1;
            text-align: center;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #7f8c8d;
            font-size: 15px;
            color: #bdc3c7;
        }
        .tips-box {
            background-color: #e8f4f8;
            border-left: 5px solid #3498db;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
        }
        .tips-box h4 {
            color: #2980b9;
            margin-bottom: 10px;
            font-size: 18px;
        }
        .feature-list {
            list-style-type: none;
            margin: 25px 0;
        }
        .feature-list li {
            padding: 12px 15px 12px 50px;
            margin-bottom: 10px;
            background-color: white;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            position: relative;
        }
        .feature-list li:before {
            content: '✓';
            position: absolute;
            left: 15px;
            top: 12px;
            color: #27ae60;
            font-weight: bold;
            font-size: 20px;
        }
        .strategy-list {
            list-style-type: none;
            margin: 25px 0;
        }
        .strategy-list li {
            padding: 15px;
            margin-bottom: 15px;
            background-color: white;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-left: 4px solid #f1c40f;
        }
        .strategy-list li strong {
            color: #2c3e50;
            display: block;
            margin-bottom: 5px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                background-color: rgba(44, 62, 80, 0.95);
                padding: 20px 0;
                border-radius: 8px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
            }
            h1 {
                font-size: 30px;
                margin-bottom: 20px;
            }
            h2 {
                font-size: 24px;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 12px 20px;
                font-size: 17px;
            }
            .stats-box {
                padding: 20px;
            }
            .stat-item {
                flex-direction: column;
                padding: 12px 0;
            }
            .stat-item span:last-child {
                margin-top: 5px;
            }
            .review-container {
                padding: 20px 15px 20px 30px;
            }
        }
