/* ===== 全局强制字体 ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1033 50%, #2d1b69 100%);
            background-attachment: fixed;
            color: #e2e8f0;
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: #a78bfa;
            text-decoration: none;
            transition: color .3s ease, box-shadow .3s ease;
        }
        a:hover {
            color: #22d3ee;
        }
        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }

        /* ===== 导航栏 ===== */
        .site-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            background: rgba(13, 10, 30, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(124, 58, 237, 0.35);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0.85rem 1.5rem;
            gap: 0.6rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        .nav-links a {
            display: inline-block;
            padding: 0.45rem 1.1rem;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #c4b5fd;
            background: rgba(124, 58, 237, 0.08);
            border: 1px solid rgba(124, 58, 237, 0.2);
            transition: all .3s ease;
        }
        .nav-links a:hover {
            color: #fff;
            background: linear-gradient(135deg, #7c3aed, #06b6d4);
            border-color: transparent;
            box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
            transform: translateY(-2px);
        }

        /* ===== 主容器 ===== */
        .main-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 6rem 1.5rem 2rem;
        }

        /* ===== H1 ===== */
        h1 {
            font-size: clamp(2.2rem, 4.5vw, 4rem);
            font-weight: 800;
            text-align: center;
            margin: 2rem 0 0.5rem;
            letter-spacing: 0.02em;
            background: linear-gradient(90deg, #a78bfa, #22d3ee, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.25;
            text-shadow: 0 0 60px rgba(124, 58, 237, 0.15);
        }
        .h1-sub {
            text-align: center;
            color: #94a3b8;
            font-size: 1.05rem;
            margin-bottom: 2.5rem;
            letter-spacing: 0.08em;
        }

        /* ===== Section 通用 ===== */
        .section {
            margin: 3rem 0;
            padding: 2.5rem 2rem;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(124, 58, 237, 0.15);
            border-radius: 24px;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 8px 50px rgba(0, 0, 0, 0.3), inset 0 0 80px rgba(124, 58, 237, 0.03);
            position: relative;
        }
        .section::before {
            content: "";
            position: absolute;
            top: -1px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #7c3aed, #06b6d4, transparent);
            border-radius: 2px;
        }
        .section-title {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 700;
            margin-bottom: 1.8rem;
            text-align: center;
            color: #ede9fe;
            letter-spacing: 0.02em;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, #7c3aed, #06b6d4);
        }

        /* ===== Hero ===== */
        .hero-section {
            text-align: center;
            padding: 3rem 2rem 4rem;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(124, 58, 237, 0.25), transparent 60%),
                radial-gradient(ellipse at 80% 70%, rgba(6, 182, 212, 0.15), transparent 50%);
            border: 1px solid rgba(124, 58, 237, 0.25);
            border-radius: 32px;
            margin-bottom: 3rem;
            backdrop-filter: blur(14px);
            overflow: hidden;
        }
        .hero-section h2 {
            font-size: clamp(1.8rem, 3.5vw, 3rem);
            font-weight: 800;
            background: linear-gradient(90deg, #f0abfc, #7c3aed, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.8rem;
        }
        .hero-section p {
            font-size: 1.2rem;
            color: #94a3b8;
            margin-bottom: 2rem;
            letter-spacing: 0.05em;
        }
        .hero-section img {
            max-width: 420px;
            margin: 0 auto;
            border-radius: 20px;
            box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
        }

        /* ===== GEO ===== */
        .geo-intro p {
            font-size: 1.08rem;
            line-height: 1.9;
            color: #cbd5e1;
            text-align: justify;
            max-width: 980px;
            margin: 0 auto;
        }

        /* ===== 数据统计 ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(124, 58, 237, 0.2);
            border-radius: 20px;
            padding: 1.8rem 1rem;
            text-align: center;
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
        }
        .stat-card img {
            width: 56px;
            height: 56px;
            margin: 0 auto 0.8rem;
            border-radius: 14px;
            filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.4));
        }
        .stat-card h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #f0abfc;
        }
        .stat-card p {
            color: #94a3b8;
            font-size: 0.95rem;
            margin-top: 0.3rem;
        }

        /* ===== 核心优势 ===== */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }
        .advantage-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(124, 58, 237, 0.2);
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            text-align: center;
            transition: all .3s ease;
            backdrop-filter: blur(10px);
        }
        .advantage-card:hover {
            border-color: #06b6d4;
            box-shadow: 0 0 35px rgba(6, 182, 212, 0.2);
            transform: translateY(-4px);
        }
        .advantage-card img {
            width: 64px;
            height: 64px;
            margin: 0 auto 1rem;
            border-radius: 16px;
        }
        .advantage-card h3 {
            color: #e9d5ff;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        .advantage-card p {
            color: #94a3b8;
            font-size: 0.92rem;
            line-height: 1.6;
        }

        /* ===== 品牌故事 ===== */
        .story-content {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            justify-content: center;
        }
        .story-content img {
            width: 280px;
            border-radius: 20px;
            box-shadow: 0 0 35px rgba(124, 58, 237, 0.3);
        }
        .story-content p {
            flex: 1;
            min-width: 280px;
            max-width: 620px;
            color: #cbd5e1;
            font-size: 1.02rem;
            line-height: 1.9;
            text-align: justify;
        }

        /* ===== 游戏推荐 ===== */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }
        .game-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(124, 58, 237, 0.2);
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            transition: all .3s ease;
        }
        .game-card:hover {
            border-color: #22d3ee;
            box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
            transform: translateY(-5px);
        }
        .game-card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 1rem;
        }
        .game-card h3 {
            color: #e9d5ff;
            font-size: 1.15rem;
            margin-bottom: 0.4rem;
        }
        .game-card p {
            color: #94a3b8;
            font-size: 0.88rem;
        }

        /* ===== 热门排行 ===== */
        .rankings-grid {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 640px;
            margin: 0 auto;
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(124, 58, 237, 0.15);
            border-radius: 16px;
            padding: 0.7rem 1.2rem;
            transition: all .3s ease;
        }
        .rank-item:hover {
            background: rgba(124, 58, 237, 0.1);
            transform: translateX(4px);
        }
        .rank-item img {
            width: 48px;
            height: 48px;
            border-radius: 10px;
        }
        .rank-item span {
            font-size: 1.4rem;
            font-weight: 800;
            color: #f0abfc;
            width: 30px;
            text-align: center;
        }
        .rank-item p {
            font-size: 1.05rem;
            color: #e2e8f0;
            font-weight: 600;
        }

        /* ===== 焦点赛事 ===== */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
        }
        .event-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(124, 58, 237, 0.2);
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            transition: all .3s ease;
        }
        .event-card:hover {
            border-color: #7c3aed;
            box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
            transform: translateY(-4px);
        }
        .event-card img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 1rem;
        }
        .event-card h3 {
            color: #e9d5ff;
            font-size: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .event-card p {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ===== 用户口碑 ===== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
        }
        .testimonial-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(124, 58, 237, 0.2);
            border-radius: 20px;
            padding: 1.8rem;
            text-align: center;
            transition: all .3s ease;
        }
        .testimonial-card:hover {
            border-color: #22d3ee;
            box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
        }
        .testimonial-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            border: 2px solid #7c3aed;
        }
        .testimonial-card p {
            color: #cbd5e1;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 0.8rem;
        }
        .testimonial-card span {
            color: #a78bfa;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ===== 新闻列表 ===== */
        .news-tag {
            display: inline-block;
            background: linear-gradient(135deg, #7c3aed, #06b6d4);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 0.25rem 1rem;
            border-radius: 999px;
            margin-bottom: 1.5rem;
            letter-spacing: 0.04em;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .news-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(124, 58, 237, 0.18);
            border-radius: 20px;
            padding: 1.8rem;
            transition: all .3s ease;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            border-color: #7c3aed;
            box-shadow: 0 0 35px rgba(124, 58, 237, 0.2);
            transform: translateY(-4px);
        }
        .news-date {
            font-size: 0.82rem;
            color: #22d3ee;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: 0.03em;
            background: rgba(6, 182, 212, 0.1);
            display: inline-block;
            align-self: flex-start;
            padding: 0.15rem 0.8rem;
            border-radius: 999px;
            border: 1px solid rgba(6, 182, 212, 0.2);
        }
        .news-card h3 {
            font-size: 1.2rem;
            color: #e9d5ff;
            margin-bottom: 0.7rem;
            line-height: 1.4;
            font-weight: 700;
        }
        .news-card p {
            color: #94a3b8;
            font-size: 0.95rem;
            line-height: 1.7;
            flex: 1;
            margin-bottom: 1rem;
        }
        .news-card .read-more {
            color: #22d3ee;
            font-weight: 600;
            font-size: 0.9rem;
            align-self: flex-start;
            border-bottom: 2px solid transparent;
            transition: border-color .3s;
        }
        .news-card .read-more:hover {
            border-bottom-color: #22d3ee;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        details.faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(124, 58, 237, 0.18);
            border-radius: 18px;
            padding: 1.2rem 1.6rem;
            transition: all .3s ease;
            color: #cbd5e1;
        }
        details.faq-item[open] {
            border-color: #7c3aed;
            box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
        }
        details.faq-item summary {
            font-weight: 700;
            font-size: 1.05rem;
            color: #e9d5ff;
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        details.faq-item summary::-webkit-details-marker {
            display: none;
        }
        details.faq-item summary::before {
            content: "▸";
            color: #7c3aed;
            font-size: 1.2rem;
            transition: transform .3s;
        }
        details.faq-item[open] summary::before {
            transform: rotate(90deg);
            color: #22d3ee;
        }
        details.faq-item .faq-answer {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.95rem;
            line-height: 1.8;
            color: #94a3b8;
        }

        /* ===== CTA ===== */
        .cta-section {
            text-align: center;
            padding: 3.5rem 2rem;
            background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.25), transparent 70%);
            border: 1px solid rgba(124, 58, 237, 0.25);
            border-radius: 32px;
        }
        .cta-section h2 {
            font-size: 2rem;
            color: #ede9fe;
            margin-bottom: 1rem;
            font-weight: 800;
        }
        .cta-section p {
            color: #94a3b8;
            font-size: 1.05rem;
            margin-bottom: 2rem;
        }
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        .cta-buttons a {
            display: inline-block;
            padding: 0.8rem 2rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            background: linear-gradient(135deg, #7c3aed, #06b6d4);
            border: none;
            box-shadow: 0 4px 30px rgba(124, 58, 237, 0.35);
            transition: all .3s ease;
        }
        .cta-buttons a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 40px rgba(6, 182, 212, 0.4);
        }
        .cta-buttons a.secondary {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(124, 58, 237, 0.4);
            box-shadow: none;
        }
        .cta-buttons a.secondary:hover {
            background: rgba(124, 58, 237, 0.2);
            box-shadow: 0 0 25px rgba(124, 58, 237, 0.25);
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: rgba(10, 8, 25, 0.9);
            border-top: 1px solid rgba(124, 58, 237, 0.3);
            padding: 3rem 1.5rem 2rem;
            margin-top: 4rem;
            text-align: center;
        }
        .site-footer .footer-info {
            color: #94a3b8;
            font-size: 0.92rem;
            line-height: 2;
            max-width: 640px;
            margin: 0 auto;
        }
        .site-footer a {
            color: #a78bfa;
            margin: 0 0.5rem;
            font-weight: 600;
        }
        .site-footer a:hover {
            color: #22d3ee;
        }
        .site-footer .footer-copy {
            margin-top: 1.2rem;
            color: #64748b;
            font-size: 0.85rem;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .main-container {
                padding: 5rem 1rem 1rem;
            }
            .section {
                padding: 1.8rem 1.2rem;
                margin: 2rem 0;
            }
            .story-content img {
                width: 100%;
                max-width: 320px;
            }
            .hero-section img {
                max-width: 100%;
            }
            .nav-links {
                gap: 0.3rem;
                padding: 0.6rem 0.5rem;
            }
            .nav-links a {
                font-size: 0.8rem;
                padding: 0.35rem 0.7rem;
            }
        }