* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #0984e3, #74b9ff);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            font-family: 'Times New Roman', serif;
        }
        .logo span {
            color: #ffeaa7;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #0984e3;
            font-size: 2.4rem;
            margin: 30px 0;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffeaa7;
        }
        h2 {
            color: #0984e3;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding: 8px 15px;
            background-color: #e3f2fd;
            border-radius: 4px;
        }
        h3 {
            color: #2d3436;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 3px solid #0984e3;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #0984e3;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 0 10px 15px;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #2ecc71;
        }
        .download-btn:hover {
            background-color: #27ae60;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .login-btn {
            background-color: #e67e22;
        }
        .login-btn:hover {
            background-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f1f9ff;
            border-radius: 6px;
            border: 1px dashed #b8daff;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #0984e3;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #2d3436;
            font-size: 0.95rem;
        }
        .tag-container {
            margin: 40px 0;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            padding: 6px 14px;
            margin: 0 8px 10px 0;
            border-radius: 20px;
            text-decoration: none;
            color: #0984e3;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #b8daff;
            color: #0864b0;
        }
        .game-type-section {
            margin: 30px 0;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .game-type-section h3 {
            margin-top: 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
        }
        .game-type a {
            color: #0984e3;
            text-decoration: none;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .game-type a:hover {
            background-color: #e3f2fd;
        }
        footer {
            background-color: #2d3436;
            color: #dfe6e9;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffeaa7;
            margin-bottom: 15px;
            border-left-color: #ffeaa7;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #dfe6e9;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffeaa7;
        }
        .recommendation {
            margin: 20px 0;
            padding: 15px;
            background-color: rgba(255,234,167,0.1);
            border-radius: 6px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #495057;
            margin-top: 30px;
            font-size: 0.9rem;
        }
        .emoji {
            margin-right: 5px;
        }
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 15px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 8px 0;
                text-align: left;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
