* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #202124;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #0f172a;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #f97316;
            text-decoration: none;
            letter-spacing: 0.3px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        nav ul li a:hover {
            color: #f97316;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #f97316;
            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: 1001;
        }
        main {
            max-width: 1300px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0f172a;
            font-size: 2.4rem;
            margin-bottom: 20px;
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 3px solid #f97316;
        }
        h2 {
            color: #0f172a;
            font-size: 1.9rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #f97316;
        }
        h3 {
            color: #0f172a;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            position: relative;
            padding-bottom: 6px;
        }
        h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #f97316;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #333;
            line-height: 1.8;
        }
        strong {
            color: #0f172a;
            font-weight: 700;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 28px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .download-btn {
            background-color: #10b981;
            color: white;
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px 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 20px rgba(0,0,0,0.1);
            border: 1px solid #e2e8f0;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 6px 25px rgba(0,0,0,0.07);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f1f5f9;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-4px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #0f172a;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1rem;
            color: #64748b;
        }
        .review-container {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 6px 25px rgba(0,0,0,0.07);
        }
        .review {
            border-bottom: 1px solid #f1f5f9;
            padding: 20px 0;
        }
        .review:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: bold;
            color: #0f172a;
            margin-bottom: 6px;
            font-size: 1.1rem;
        }
        .reviewer-location {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 8px;
            display: block;
        }
        .stars {
            color: #f59e0b;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e0f2fe;
            color: #0f172a;
            padding: 8px 18px;
            border-radius: 20px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #0f172a;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #0f172a;
            font-weight: bold;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        .game-type:hover {
            color: #f97316;
        }
        footer {
            background-color: #0f172a;
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #f97316;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            margin-top: 30px;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .tips-box {
            background-color: #fffbeb;
            border-left: 4px solid #f59e0b;
            padding: 18px 22px;
            margin: 25px 0;
            border-radius: 0 6px 6px 0;
        }
        .tips-box h4 {
            color: #d97706;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        .toc {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 6px 25px rgba(0,0,0,0.07);
        }
        .toc h3 {
            margin-top: 0;
        }
        .toc ul {
            list-style-type: none;
            columns: 1;
        }
        .toc li {
            margin-bottom: 10px;
        }
        .toc a {
            color: #3b82f6;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .toc a:hover {
            color: #0f172a;
            text-decoration: underline;
        }
        @media (min-width: 768px) {
            .toc ul {
                columns: 2;
                column-gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                margin-top: 20px;
                width: 100%;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 12px 0;
                text-align: left;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 18px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
                margin: 35px 0 18px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 25px 0 12px;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 12px 18px;
                font-size: 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .stat-number {
                font-size: 2.2rem;
            }
        }
