* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #0984e3;
            color: #ffeaa7;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffeaa7;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffeaa7;
            border-bottom: 2px solid #ffeaa7;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0984e3;
            margin: 30px 0 40px;
            font-size: 2.6rem;
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 3px solid #fdcb6e;
        }
        h2 {
            color: #00cec9;
            margin: 45px 0 20px;
            font-size: 2rem;
            padding: 8px 0 8px 15px;
            border-left: 5px solid #e17055;
        }
        h3 {
            color: #d63031;
            margin: 30px 0 15px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "⚡";
            margin-right: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #2d3436;
            background-color: #ffeaa7;
            padding: 0 3px;
            border-radius: 2px;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 14px 28px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
            min-width: 200px;
        }
        .download-btn {
            background-color: #00b894;
            color: white;
        }
        .download-btn:hover {
            background-color: #009688;
            transform: translateY(-2px);
            box-shadow: 0 5px 8px rgba(0,0,0,0.15);
        }
        .login-btn {
            background-color: #6c5ce7;
            color: white;
        }
        .login-btn:hover {
            background-color: #5549b8;
            transform: translateY(-2px);
            box-shadow: 0 5px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.01);
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
            margin: 25px 0;
            border-top: 4px solid #0984e3;
        }
        .review {
            background-color: #fff9e6;
            border-left: 4px solid #fdcb6e;
            padding: 18px;
            margin: 18px 0;
            border-radius: 0 6px 6px 0;
            position: relative;
        }
        .review::before {
            content: "💬";
            font-size: 2rem;
            color: rgba(253, 203, 110, 0.2);
            position: absolute;
            top: 10px;
            left: 10px;
        }
        .tag-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            background-color: #74b9ff;
            color: white;
            padding: 8px 18px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 3px rgba(0,0,0,0.05);
        }
        .tag:hover {
            background-color: #0984e3;
            transform: translateY(-1px);
        }
        .game-type-nav {
            margin: 25px 0;
            padding: 12px;
            background-color: #e3f2fd;
            border-radius: 6px;
        }
        .game-type-nav a {
            color: #0984e3;
            text-decoration: none;
            margin-right: 18px;
            font-size: 1.05rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .game-type-nav a:hover {
            color: #0768b8;
            text-decoration: underline;
        }
        footer {
            background-color: #0984e3;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffeaa7;
            margin-bottom: 15px;
            font-size: 1.4rem;
            border-bottom: 2px solid #ffeaa7;
            padding-bottom: 5px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #74b9ff;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #dfe6e9;
        }
        .tip-box {
            background-color: #e8f5e9;
            border-radius: 6px;
            padding: 18px;
            margin: 20px 0;
            border-left: 4px solid #4caf50;
        }
        .tip-box strong {
            color: #2e7d32;
        }
        .region-badge {
            display: inline-block;
            background-color: #fdcb6e;
            color: #2d3436;
            padding: 2px 8px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-right: 8px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #0984e3;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 5px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn-container {
                flex-direction: column;
            }
            .btn {
                width: 100%;
                padding: 12px;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .review {
                padding: 15px;
            }
            .image-container {
                margin: 25px 0;
            }
        }
