:root {
            --primary: #0A3D91;
            --secondary: #FFC618;
            --light: #F8F9FA;
            --dark: #212529;
            --gray: #6C757D;
            --success: #28A745;
            --blue: #007BFF;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: var(--dark);
            line-height: 1.7;
            font-size: 16px;
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .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);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            margin: 0 auto 10px;
        }
        nav ul {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        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: 30px 0;
        }
        h1 {
            color: var(--primary);
            text-align: center;
            margin-bottom: 30px;
            font-size: 36px;
            line-height: 1.3;
        }
        h2 {
            color: var(--primary);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
            font-size: 28px;
        }
        h3 {
            color: var(--primary);
            margin: 25px 0 15px;
            font-size: 22px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: var(--primary);
        }
        .emphasis {
            color: #D32F2F;
            font-weight: bold;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--success);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
        }
        .btn-login {
            background-color: var(--blue);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 2px solid #ddd;
        }
        .img-caption {
            margin-top: 10px;
            color: var(--gray);
            font-size: 14px;
            font-style: italic;
        }
        .feature-list {
            margin: 20px 0 30px 40px;
        }
        .feature-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .feature-list li:before {
            content: '•';
            color: var(--secondary);
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--secondary);
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
        }
        .tags-container {
            margin: 40px 0;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .tag {
            background-color: #e9ecef;
            color: var(--primary);
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary);
            color: white;
        }
        .categories {
            margin: 40px 0;
        }
        .category-links {
            margin-top: 15px;
        }
        .category-links a {
            color: var(--primary);
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .category-links a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        footer {
            background-color: var(--primary);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .recommendation {
            margin: 20px 0;
            padding: 15px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 24px;
            }
            .mobile-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-top: 15px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .btn {
                width: 90%;
                text-align: center;
                padding: 12px 0;
            }
            .feature-list {
                margin-left: 25px;
            }
        }
