* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 40px;
        }
        header {
            background: linear-gradient(135deg, #0a4da2, #1e3a8a);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.6rem;
            font-weight: bold;
            text-align: center;
            color: #ffdd00;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            margin: 10px 0;
            font-family: 'Georgia', serif;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 10px 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            padding: 8px 14px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #1e3a8a;
            text-align: center;
            margin: 30px 0 40px;
            font-size: 2.3rem;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffdd00;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #0a4da2;
            margin: 40px 0 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffdd00;
            font-size: 1.8rem;
        }
        h3 {
            color: #1e3a8a;
            margin: 30px 0 15px;
            font-size: 1.4rem;
            position: relative;
            padding-left: 15px;
        }
        h3::before {
            content: "•";
            color: #ffdd00;
            position: absolute;
            left: 0;
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 10px 15px;
            background-color: #0a4da2;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #2e7d32;
        }
        .download-btn:hover {
            background-color: #236b27;
        }
        .image-container {
            text-align: center;
            margin: 30px 0 40px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 2px solid #ddd;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 10px;
            background-color: #f0f7ff;
            border-radius: 8px;
            border-left: 4px solid #0a4da2;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #0a4da2;
            margin-bottom: 5px;
        }
        .stat-label {
            color: #555;
            font-size: 0.95rem;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .review {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .review:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer {
            font-weight: bold;
            color: #0a4da2;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffdd00;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            color: #0a4da2;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #bbdefb;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 40px 0 50px;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
            color: #0a4da2;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #1e3a8a;
        }
        footer {
            background-color: #1e3a8a;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #ffdd00;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 10px;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffdd00;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                background-color: rgba(10, 77, 162, 0.95);
                border-radius: 8px;
                padding: 15px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 1.8rem;
                margin: 20px 0 30px;
            }
            h2 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .btn {
                width: 90%;
                display: block;
                margin: 10px auto;
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
