* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d35400;
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
            line-height: 1.3;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #e67e22;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #f39c12;
            line-height: 1.4;
        }
        h3 {
            color: #d35400;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            line-height: 1.4;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.125rem;
            color: #444;
        }
        .highlight {
            font-weight: 700;
            color: #d35400;
            text-decoration: none;
        }
        .btn-container {
            text-align: center;
            margin: 60px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px 15px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(220, 100, 30, 0.3);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(220, 100, 30, 0.4);
        }
        .btn-download {
            background-color: #27ae60;
            box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
        }
        .btn-download:hover {
            background-color: #219653;
            box-shadow: 0 6px 16px rgba(39, 174, 96, 0.4);
        }
        .image-container {
            text-align: center;
            margin: 50px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: translateY(-5px);
        }
        .image-caption {
            font-style: italic;
            margin-top: 12px;
            color: #666;
            font-size: 1rem;
        }
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 60px 0;
            gap: 30px;
        }
        .stat-box {
            background-color: white;
            padding: 35px 25px;
            border-radius: 12px;
            text-align: center;
            flex: 1;
            min-width: 250px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-8px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #e67e22;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 1.25rem;
            color: #555;
            font-weight: 500;
        }
        .review-container {
            background-color: white;
            padding: 35px;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            position: relative;
        }
        .review-container:before {
            content: '"';
            font-size: 5rem;
            color: #f39c12;
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 18px;
            background-color: #f1c40f;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .reviewer-name {
            font-weight: 700;
            font-size: 1.15rem;
        }
        .stars {
            color: #f1c40f;
            margin: 12px 0;
            letter-spacing: 2px;
            font-size: 1.2rem;
        }
        .tag-container {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f39c12;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .game-types {
            margin: 50px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 25px;
            color: #e67e22;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            color: #d35400;
            text-decoration: underline;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 30px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-section h3 {
            color: #f1c40f;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: #f1c40f;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            margin-top: 50px;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 20px;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                text-align: center;
            }
            .stat-box {
                padding: 25px 15px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .review-container {
                padding: 25px 20px;
            }
        }
