* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', Arial, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1e3a8a;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #f97316;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #1e3a8a;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-left: 5px solid #f97316;
            padding-left: 15px;
        }
        h3 {
            color: #1e3a8a;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 3px solid #f97316;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #3b82f6;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(59, 130, 246, 0.4);
        }
        .download-btn {
            background-color: #10b981;
            box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
        }
        .login-btn {
            background-color: #f59e0b;
            box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .highlight {
            font-weight: bold;
            color: #dc2626;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f8fafc;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 5px;
        }
        .review-box {
            background-color: white;
            border-left: 5px solid #3b82f6;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-weight: bold;
            color: #1e3a8a;
            display: block;
            margin-top: 10px;
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #eff6ff;
            color: #1e3a8a;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #3b82f6;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 40px 0 20px;
        }
        .game-type-link {
            color: #3b82f6;
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 3px 8px;
            border-radius: 4px;
        }
        .game-type-link:hover {
            color: #1e3a8a;
            background-color: #eff6ff;
        }
        footer {
            background-color: #1e3a8a;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #fbbf24;
            border-bottom: 2px solid #fbbf24;
            padding-bottom: 5px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #e0e7ff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 3px 0;
        }
        .footer-links a:hover {
            color: #fbbf24;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #3b82f6;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .recommendation {
            background-color: #fef3c7;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
            border: 1px solid #fde68a;
        }
        .recommendation p {
            text-align: center;
            font-size: 1.1rem;
            color: #92400e;
        }
        .feature-list {
            margin: 20px 0 20px 40px;
        }
        .feature-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        .feature-list li:before {
            content: "•";
            color: #f97316;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                text-align: left;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 10px auto;
                width: 90%;
            }
        }
