* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #0a3d62;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px 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.6rem;
            font-weight: bold;
            color: #f9ca24;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:hover {
            color: #f9ca24;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #f9ca24;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0a3d62;
            font-size: 2.3rem;
            margin: 30px 0 40px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #f9ca24;
        }
        h2 {
            color: #0a3d62;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #f9ca24;
        }
        h3 {
            color: #0a3d62;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            position: relative;
            padding-left: 15px;
        }
        h3:before {
            content: '►';
            color: #f9ca24;
            position: absolute;
            left: 0;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #0a3d62;
            text-decoration: underline dotted #f9ca24;
            text-underline-offset: 4px;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: all 0.3s;
            font-size: 1.1rem;
            text-align: center;
            min-width: 180px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
            display: inline-block;
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn:active {
            transform: translateY(1px);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: 1px solid #e1e1e1;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #f9ca24;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f0f7ff;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #0a3d62;
            margin-bottom: 10px;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 3px solid #0a3d62;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            align-items: center;
        }
        .reviewer {
            font-weight: bold;
            color: #0a3d62;
        }
        .rating {
            color: #f9ca24;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .rating:before {
            content: '★★★★★';
            background: linear-gradient(90deg, #f9ca24 var(--rating, 0%), #e0e0e0 var(--rating, 0%));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-right: 5px;
        }
        .tips-list {
            margin: 20px 0;
            padding-left: 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: '•';
            color: #f9ca24;
            font-size: 1.5rem;
            position: absolute;
            left: -20px;
            top: -5px;
        }
        .tag-container {
            margin: 40px 0;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .tag {
            display: inline-block;
            background-color: #e8f4f8;
            color: #0a3d62;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #b8d9e5;
        }
        .tag:hover {
            background-color: #0a3d62;
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #1a1a2e;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .game-types {
            margin-bottom: 30px;
        }
        .game-types h3 {
            color: #f9ca24;
            margin-bottom: 15px;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
        }
        .type-link {
            color: #ddd;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .type-link:hover {
            color: #f9ca24;
        }
        .recommendation {
            background-color: #252a41;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid #f9ca24;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                margin-top: 15px;
                width: 100%;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: left;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            p {
                text-align: left;
                font-size: 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
