* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 6px 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.5rem;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #ffd700;
            margin-left: 5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1a2a6c;
            margin: 30px 0;
            font-size: 2.5rem;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            padding-bottom: 15px;
            border-bottom: 3px solid #fdbb2d;
        }
        h2 {
            color: #b21f1f;
            margin: 40px 0 20px;
            font-size: 2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #fdbb2d;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: "";
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: #b21f1f;
            bottom: -2px;
            left: 0;
        }
        h3 {
            color: #1a2a6c;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "•";
            color: #fdbb2d;
            font-size: 2rem;
            margin-right: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #1a2a6c;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 30px 0;
            transition: all 0.3s;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #2c3e8e;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #b21f1f;
        }
        .btn-download:hover {
            background-color: #c53030;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s;
            border: 5px solid white;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 15px;
            font-style: italic;
            color: #666;
            font-size: 1rem;
        }
        .highlight {
            font-weight: bold;
            color: #b21f1f;
            text-decoration: underline;
            text-decoration-color: #fdbb2d;
            text-decoration-thickness: 2px;
            text-underline-offset: 4px;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-left: 5px solid #fdbb2d;
        }
        .stats-box p {
            font-size: 1.2rem;
            margin: 15px 0;
            display: flex;
            align-items: center;
        }
        .stats-box p::before {
            content: "✓";
            color: #1a2a6c;
            margin-right: 10px;
            font-weight: bold;
        }
        .review {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        .review::before {
            content: """;
            font-size: 5rem;
            color: #fdbb2d;
            opacity: 0.2;
            position: absolute;
            top: -10px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 15px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "—";
            margin-right: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #f1f5f9;
            color: #1a2a6c;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 8px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: bold;
            transition: all 0.3s;
            border: 1px solid #e2e8f0;
        }
        .tag:hover {
            background-color: #1a2a6c;
            color: white;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            color: #b21f1f;
            text-decoration: none;
            margin: 0 12px 12px 0;
            font-weight: bold;
            font-size: 1.05rem;
            transition: all 0.3s;
        }
        .game-type:hover {
            color: #1a2a6c;
            text-decoration: underline;
        }
        footer {
            background-color: #1a2a6c;
            color: white;
            padding: 50px 0 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 25px;
            font-size: 1.4rem;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-note {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            font-size: 0.9rem;
            color: #ddd;
        }
        .feature-list {
            margin: 20px 0 30px 20px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            position: relative;
            padding-left: 30px;
        }
        .feature-list li::before {
            content: "•";
            color: #fdbb2d;
            font-size: 1.8rem;
            position: absolute;
            left: 0;
            top: -10px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 20px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 10px 0;
            }
            nav ul li a {
                display: block;
                width: 100%;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-box {
                padding: 20px;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
