* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #2c3e50;
            padding: 15px 0;
            color: white;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #feca57;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 28px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        nav ul li a:hover {
            color: #feca57;
            border-bottom: 2px solid #feca57;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #2c3e50;
            font-size: 38px;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 3px solid #3498db;
        }
        h2 {
            color: #2c3e50;
            font-size: 30px;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #3498db;
        }
        h3 {
            color: #2c3e50;
            font-size: 24px;
            margin: 30px 0 15px;
            position: relative;
            padding-bottom: 8px;
        }
        h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #3498db;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 17px;
        }
        .highlight {
            font-weight: bold;
            color: #2c3e50;
            text-decoration: underline;
            text-decoration-color: #feca57;
            text-decoration-thickness: 2px;
            text-underline-offset: 4px;
        }
        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 40px 0;
            justify-content: center;
        }
        .btn {
            padding: 14px 30px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s;
            text-align: center;
            min-width: 180px;
            font-size: 18px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .download-btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .login-btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border-top: 4px solid #3498db;
        }
        .stat-value {
            font-size: 32px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 16px;
            color: #636e72;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            position: relative;
        }
        .review-container::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 60px;
            color: #ecf0f1;
            font-family: Georgia, serif;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-left: 10px;
        }
        .reviewer {
            font-weight: bold;
            color: #2c3e50;
            font-size: 18px;
        }
        .rating {
            color: #f39c12;
            font-weight: bold;
            font-size: 18px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e8f4f8;
            padding: 8px 16px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: all 0.3s;
            font-size: 16px;
        }
        .tag:hover {
            background-color: #d6eafe;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 50px 0 30px;
        }
        .type-link {
            color: #2c3e50;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 500;
            font-size: 17px;
            transition: color 0.3s;
        }
        .type-link:hover {
            color: #3498db;
            text-decoration: underline;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #feca57;
            border-bottom: 2px solid #feca57;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .footer-section p {
            color: #ecf0f1;
            margin-bottom: 15px;
        }
        .footer-section a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: #feca57;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            margin-top: 30px;
            font-size: 15px;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                position: relative;
                padding: 15px 20px;
            }
            nav {
                width: 100%;
                margin-top: 20px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 12px 0 0 0;
            }
            nav ul li a {
                display: block;
                padding: 8px 0;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 18px;
                right: 20px;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 22px;
                margin: 25px 0 12px;
            }
            p {
                font-size: 16px;
                line-height: 1.7;
            }
            .btn {
                padding: 12px 25px;
                min-width: 160px;
                font-size: 17px;
            }
            .stats-grid {
                gap: 15px;
            }
            .stat-value {
                font-size: 28px;
            }
        }
