* {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 40%, #2d1b69 100%);
            color: #e5e7eb;
            line-height: 1.75;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 导航栏 ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.92);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(34, 211, 238, 0.35);
            z-index: 9999;
            box-shadow: 0 4px 40px rgba(34, 211, 238, 0.08);
        }
        .nav-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2.4rem;
            padding: 0.9rem 1.5rem;
            flex-wrap: wrap;
            max-width: 1280px;
            margin: 0 auto;
        }
        .nav-links a {
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            transition: all 0.35s ease;
            position: relative;
        }
        .nav-links a:first-child {
            color: #22d3ee;
            text-shadow: 0 0 18px rgba(34, 211, 238, 0.6);
            border: 1px solid rgba(34, 211, 238, 0.3);
        }
        .nav-links a:hover {
            color: #ec4899;
            text-shadow: 0 0 16px rgba(236, 72, 153, 0.5);
            background: rgba(236, 72, 153, 0.06);
        }

        /* ===== Hero ===== */
        #hero {
            padding: 150px 0 80px;
            position: relative;
            text-align: center;
            background:
                radial-gradient(ellipse at 20% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(34, 211, 238, 0.12) 0%, transparent 55%),
                linear-gradient(180deg, #0a0a0a 0%, #160f2e 100%);
        }
        #hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(120deg, #fff 20%, #22d3ee 50%, #ec4899 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.02em;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .hero-sub {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 700px;
            margin: 0 auto 2.2rem;
        }
        .hero-btn {
            display: inline-block;
            background: linear-gradient(135deg, #ec4899, #8b5cf6);
            color: #fff;
            padding: 0.8rem 2.6rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
            transition: all 0.35s ease;
            letter-spacing: 0.06em;
        }
        .hero-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 50px rgba(236, 72, 153, 0.6), 0 0 80px rgba(34, 211, 238, 0.2);
        }

        /* ===== 通用区块 ===== */
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #22d3ee, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.03em;
        }
        .section-desc {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1rem;
        }
        .card-wrap {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin-bottom: 2rem;
        }
        .card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
            border: 1px solid rgba(34, 211, 238, 0.3);
            border-radius: 16px;
            padding: 2rem 1.8rem;
            outline: 1px solid rgba(236, 72, 153, 0.15);
            outline-offset: 4px;
            box-shadow: 0 0 24px rgba(34, 211, 238, 0.08), inset 0 0 30px rgba(34, 211, 238, 0.02);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.08), transparent);
            transition: left 0.6s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 45px rgba(34, 211, 238, 0.15), 0 0 60px rgba(236, 72, 153, 0.08);
            outline-color: rgba(34, 211, 238, 0.4);
        }
        .card:hover::before {
            left: 120%;
        }
        .card-icon {
            font-size: 2.4rem;
            margin-bottom: 0.8rem;
            display: block;
        }
        .card h3 {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }
        .card p {
            font-size: 0.92rem;
            color: rgba(255, 255, 255, 0.65);
        }

        /* ===== GEO ===== */
        #geo-intro {
            padding: 70px 0;
            background: rgba(10, 10, 10, 0.4);
            border-top: 1px solid rgba(34, 211, 238, 0.1);
            border-bottom: 1px solid rgba(34, 211, 238, 0.1);
        }
        #geo-intro .geo-text {
            max-width: 960px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.05rem;
            line-height: 2;
            color: rgba(255, 255, 255, 0.8);
        }

        /* ===== 数据统计 ===== */
        #data-stats {
            padding: 70px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.6rem;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(236, 72, 153, 0.25);
            border-radius: 16px;
            padding: 2rem 1rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            background: rgba(236, 72, 153, 0.06);
            box-shadow: 0 0 30px rgba(236, 72, 153, 0.15);
        }
        .stat-num {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(120deg, #22d3ee, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            margin-top: 0.3rem;
        }

        /* ===== 核心优势 ===== */
        #core-advantages {
            padding: 70px 0;
        }

        /* ===== 品牌故事 ===== */
        #brand-story {
            padding: 70px 0;
            background: rgba(255, 255, 255, 0.02);
        }
        .story-flex {
            display: flex;
            gap: 3rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .story-flex .story-text {
            flex: 1.2;
            min-width: 300px;
        }
        .story-flex .story-img {
            flex: 0.8;
            min-width: 260px;
            text-align: center;
        }
        .story-img img {
            max-width: 100%;
            border-radius: 16px;
            border: 1px solid rgba(34, 211, 238, 0.3);
            box-shadow: 0 0 30px rgba(34, 211, 238, 0.1);
        }
        .story-text h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #fff;
        }
        .story-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.98rem;
            line-height: 1.9;
        }

        /* ===== 焦点赛事 ===== */
        #featured-events {
            padding: 70px 0;
        }
        .event-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(34, 211, 238, 0.25);
            border-radius: 16px;
            padding: 1.8rem;
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
        }
        .event-card:hover {
            border-color: rgba(34, 211, 238, 0.6);
            box-shadow: 0 0 35px rgba(34, 211, 238, 0.1);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1.2rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .event-card h3 {
            color: #fff;
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
        }
        .event-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            flex: 1;
        }
        .event-link {
            color: #22d3ee;
            font-weight: 600;
            margin-top: 1rem;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .event-link:hover {
            color: #ec4899;
        }

        /* ===== 游戏推荐 ===== */
        #game-recommend {
            padding: 70px 0;
            background: rgba(0, 0, 0, 0.25);
        }
        .game-card {
            text-align: center;
            background: linear-gradient(145deg, rgba(34, 211, 238, 0.06), rgba(236, 72, 153, 0.04));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            transition: all 0.35s;
        }
        .game-card:hover {
            border-color: rgba(34, 211, 238, 0.5);
            box-shadow: 0 0 35px rgba(34, 211, 238, 0.1);
        }
        .game-card img {
            width: 96px;
            height: 96px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .game-card h3 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        .game-card p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.9rem;
        }

        /* ===== 下载中心 ===== */
        #download {
            padding: 70px 0;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.08), transparent 70%);
        }
        .download-btn {
            display: inline-block;
            background: linear-gradient(135deg, #22d3ee, #6366f1);
            color: #fff;
            padding: 0.8rem 2.4rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            margin: 0.5rem;
            transition: all 0.3s;
            box-shadow: 0 0 25px rgba(34, 211, 238, 0.3);
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 40px rgba(34, 211, 238, 0.5);
        }
        .download-img {
            margin-bottom: 1.5rem;
        }
        .download-img img {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 28px;
            border: 1px solid rgba(34, 211, 238, 0.4);
            box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
        }

        /* ===== 用户口碑 ===== */
        #testimonials {
            padding: 70px 0;
        }
        .review-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 1.8rem;
            transition: all 0.3s;
        }
        .review-card:hover {
            border-color: rgba(236, 72, 153, 0.4);
        }
        .review-card .stars {
            color: #fbbf24;
            font-size: 1rem;
            margin-bottom: 0.6rem;
        }
        .review-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.92rem;
            font-style: italic;
            line-height: 1.8;
        }
        .review-card .user {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin-top: 0.8rem;
            font-weight: 600;
        }

        /* ===== 新闻 ===== */
        #news-list {
            padding: 70px 0;
            background: rgba(0, 0, 0, 0.2);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
        }
        .news-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(34, 211, 238, 0.2);
            border-radius: 16px;
            padding: 1.8rem;
            transition: all 0.35s;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            border-color: rgba(236, 72, 153, 0.5);
            box-shadow: 0 0 30px rgba(236, 72, 153, 0.08);
        }
        .news-date {
            display: inline-block;
            background: rgba(34, 211, 238, 0.1);
            color: #22d3ee;
            font-size: 0.82rem;
            font-weight: 600;
            padding: 0.25rem 0.7rem;
            border-radius: 20px;
            margin-bottom: 0.8rem;
            align-self: flex-start;
        }
        .news-card h3 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            line-height: 1.5;
        }
        .news-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.75;
            flex: 1;
        }
        .news-more {
            color: #22d3ee;
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 1rem;
            transition: color 0.3s;
        }
        .news-more:hover {
            color: #ec4899;
        }

        /* ===== FAQ ===== */
        #faq {
            padding: 70px 0;
        }
        .faq-grid {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            transition: all 0.3s;
        }
        .faq-item:hover {
            border-color: rgba(34, 211, 238, 0.4);
            box-shadow: 0 0 24px rgba(34, 211, 238, 0.05);
        }
        .faq-q {
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .faq-q::before {
            content: "Q";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #22d3ee, #ec4899);
            border-radius: 50%;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 800;
            flex-shrink: 0;
        }
        .faq-a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.93rem;
            line-height: 1.8;
            padding-left: 2.2rem;
        }

        /* ===== CTA ===== */
        #cta {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(34, 211, 238, 0.1));
            border-top: 1px solid rgba(34, 211, 238, 0.2);
            border-bottom: 1px solid rgba(34, 211, 238, 0.2);
        }
        #cta h2 {
            font-size: 2.4rem;
            color: #fff;
            margin-bottom: 0.8rem;
        }
        #cta p {
            color: rgba(255, 255, 255, 0.65);
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.05rem;
        }

        /* ===== 页脚 ===== */
        .footer {
            background: #060606;
            border-top: 1px solid rgba(34, 211, 238, 0.2);
            padding: 50px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-about h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-about p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        .footer-links h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.92rem;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #22d3ee;
        }
        .footer-contact h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-contact p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.92rem;
            line-height: 1.6;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.85rem;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.45);
            margin: 0 0.4rem;
            transition: color 0.3s;
        }
        .footer-bottom a:hover {
            color: #22d3ee;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            #hero h1 {
                font-size: 2rem;
            }
            .nav-links {
                gap: 0.8rem;
                padding: 0.6rem;
            }
            .story-flex {
                flex-direction: column;
            }
        }