:root {
            --primary: #0A2463;
            --secondary: #FF6B35;
            --accent: #FFD166;
            --light: #F7F9FC;
            --dark: #2B2D42;
            --text: #1D3557;
            --shadow: 0 3px 15px rgba(0,0,0,0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        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.2);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: white;
        }
        .main-nav {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 30px;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--accent);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-content {
            margin-top: 30px;
        }
        .intro-section {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        h1 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2.4rem;
            border-bottom: 4px solid var(--secondary);
            padding-bottom: 10px;
        }
        h2 {
            color: var(--primary);
            margin: 40px 0 20px;
            font-size: 1.9rem;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            height: 60%;
            width: 5px;
            background-color: var(--secondary);
            border-radius: 3px;
        }
        h3 {
            color: var(--secondary);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        strong {
            color: var(--primary);
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            margin: 10px 10px 10px 0;
            transition: all 0.3s ease;
            text-align: center;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #e05a25;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #2EC4B6;
        }
        .btn-download:hover {
            background-color: #26a69a;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 2px solid #eee;
        }
        .stats-box {
            background-color: #EDF2F4;
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: var(--shadow);
            border-top: 3px solid var(--accent);
        }
        .reviewer {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .stars {
            color: #FFB800;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .feature-list {
            margin: 25px 0;
            padding-left: 30px;
        }
        .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: -15px;
        }
        .game-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 35px 0;
        }
        .category-link {
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .category-link:hover {
            background-color: #071c47;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .tags-section {
            margin: 40px 0 30px;
        }
        .tag {
            display: inline-block;
            background-color: #E8F4F8;
            color: var(--primary);
            padding: 7px 15px;
            border-radius: 20px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #D0E9F2;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.3rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #C9CDD4;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #86909C;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .main-nav.active {
                display: flex;
            }
            .main-nav li {
                margin: 15px 0;
            }
            .mobile-menu {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
            .footer-grid {
                flex-direction: column;
                gap: 30px;
            }
        }
