:root {
            --primary: #0064D2;
            --secondary: #FFD700;
            --accent: #E63946;
            --light: #F8F9FA;
            --dark: #1D3557;
            --gray: #6C757D;
            --success: #2A9D8F;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #f7f9fc;
            color: var(--dark);
            line-height: 1.8;
            font-size: 16px;
            padding-bottom: 50px;
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--secondary);
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 26px;
            cursor: pointer;
            margin: 0 auto 10px;
        }
        nav ul {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
            gap: 28px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 0;
            position: relative;
            font-size: 16px;
        }
        nav a:hover {
            color: var(--secondary);
        }
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        nav a:hover:after {
            width: 100%;
        }
        main {
            padding: 35px 0;
        }
        h1 {
            color: var(--primary);
            text-align: center;
            margin-bottom: 35px;
            font-size: 36px;
            line-height: 1.4;
            font-weight: 700;
        }
        h2 {
            color: var(--primary);
            margin: 45px 0 22px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--secondary);
            font-size: 28px;
            font-weight: 600;
        }
        h3 {
            color: var(--dark);
            margin: 30px 0 18px;
            font-size: 22px;
            font-weight: 600;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 16px;
        }
        .highlight {
            font-weight: bold;
            color: var(--primary);
        }
        .emphasis {
            color: var(--accent);
            font-weight: bold;
        }
        .stats-number {
            font-size: 18px;
            color: var(--success);
            font-weight: bold;
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: var(--success);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.12);
            border: none;
            cursor: pointer;
        }
        .btn-login {
            background-color: var(--primary);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.18);
        }
        .img-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            border: 2px solid #e0e0e0;
        }
        .img-caption {
            margin-top: 12px;
            color: var(--gray);
            font-size: 14px;
            font-style: italic;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .feature-list {
            margin: 22px 0 32px 40px;
        }
        .feature-list li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 12px;
        }
        .feature-list li:before {
            content: '•';
            color: var(--secondary);
            font-weight: bold;
            position: absolute;
            left: -22px;
            font-size: 20px;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 28px;
            margin: 35px 0;
            box-shadow: 0 5px 18px rgba(0,0,0,0.07);
            border-left: 5px solid var(--secondary);
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 22px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border-radius: 8px;
        }
        .reviewer {
            font-style: italic;
            color: var(--gray);
            margin-top: 12px;
            font-size: 15px;
        }
        .tags-container {
            margin: 45px 0;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
        }
        .tag {
            background-color: #e9f0fc;
            color: var(--primary);
            padding: 9px 18px;
            border-radius: 22px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: var(--primary);
            color: white;
        }
        .categories {
            margin: 45px 0;
        }
        .category-links {
            margin-top: 18px;
        }
        .category-links a {
            color: var(--primary);
            text-decoration: none;
            margin-right: 18px;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 16px;
        }
        .category-links a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 45px 0 25px;
            margin-top: 60px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h3 {
            color: var(--secondary);
            margin-bottom: 22px;
            font-size: 20px;
            font-weight: 600;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 15px;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .recommendation {
            margin: 25px 0;
            padding: 20px;
            background-color: rgba(255,255,255,0.08);
            border-radius: 8px;
            font-size: 16px;
            line-height: 1.7;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #b0b0b0;
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 24px;
            }
            .mobile-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 18px;
                margin-top: 18px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 24px;
                margin: 35px 0 18px;
            }
            h3 {
                font-size: 20px;
                margin: 25px 0 15px;
            }
            .btn {
                width: 90%;
                text-align: center;
                padding: 14px 0;
                font-size: 17px;
            }
            .feature-list {
                margin-left: 28px;
            }
            p {
                font-size: 15px;
                line-height: 1.7;
            }
            .stats-box {
                padding: 20px;
            }
            .review-box {
                padding: 18px;
            }
        }
