* {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #3b0764;
            --secondary: #1a0a2e;
            --accent: #8b5cf6;
            --accent-light: #a78bfa;
            --silver: #c4b5fd;
            --text-main: #ede9fe;
            --text-sub: #a58bc7;
            --card-bg: rgba(59, 7, 100, 0.35);
            --border-light: rgba(139, 92, 246, 0.3);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #1a0a2e 0%, #3b0764 50%, #1a0a2e 100%);
            color: var(--text-main);
            min-height: 100vh;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(26, 10, 46, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-light);
            padding: 14px 0;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-logo img {
            height: 32px;
            width: auto;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            color: var(--accent-light);
        }
        .nav-cta {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            padding: 8px 20px;
            border-radius: 24px;
            color: #fff !important;
            font-weight: 600;
        }

        /* 通用区块 */
        .section {
            padding: 80px 24px;
            position: relative;
        }
        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f0abfc, #c4b5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .section-sub {
            text-align: center;
            color: var(--text-sub);
            font-size: 15px;
            margin-bottom: 48px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Hero */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
            background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
        }
        .hero-content {
            max-width: 760px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 6px 18px;
            font-size: 13px;
            color: var(--silver);
            margin-bottom: 24px;
            letter-spacing: 1px;
        }
        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #f5d0fe, #ddd6fe, #f0abfc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 16px;
            color: var(--text-sub);
            margin-bottom: 36px;
            line-height: 1.8;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 32px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
        }
        .btn-sec {
            background: transparent;
            color: var(--text-main);
            border: 1px solid var(--border-light);
            padding: 14px 36px;
            border-radius: 32px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.3s;
        }
        .btn-sec:hover {
            background: rgba(139, 92, 246, 0.1);
        }

        /* GEO 介绍 */
        .geo-box {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 40px;
            max-width: 900px;
            margin: 0 auto;
            backdrop-filter: blur(8px);
        }
        .geo-box p {
            color: var(--text-main);
            font-size: 16px;
            line-height: 1.9;
            text-align: justify;
        }

        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 32px 20px;
            text-align: center;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-6px);
        }
        .stat-number {
            font-size: 40px;
            font-weight: 800;
            color: var(--accent-light);
            margin-bottom: 8px;
        }
        .stat-label {
            color: var(--text-sub);
            font-size: 14px;
        }

        /* 核心优势 */
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .adv-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .adv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }
        .adv-icon {
            font-size: 40px;
            margin-bottom: 16px;
        }
        .adv-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text-main);
        }
        .adv-card p {
            color: var(--text-sub);
            font-size: 14px;
            line-height: 1.7;
        }

        /* 品牌故事 */
        .story-wrap {
            display: flex;
            gap: 48px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }
        .story-img {
            flex: 1;
        }
        .story-img img {
            width: 100%;
            border-radius: 20px;
            border: 1px solid var(--border-light);
        }
        .story-content {
            flex: 1;
        }
        .story-content h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }
        .story-content p {
            color: var(--text-sub);
            line-height: 1.9;
            margin-bottom: 12px;
        }

        /* 焦点赛事 */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .event-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        .event-card:hover {
            transform: scale(1.03);
        }
        .event-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .event-info {
            padding: 20px;
        }
        .event-info h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        .event-info p {
            color: var(--text-sub);
            font-size: 14px;
        }

        /* 赛事直播 */
        .live-section {
            background: linear-gradient(135deg, rgba(59, 7, 100, 0.3), rgba(26, 10, 46, 0.5));
            border-radius: 24px;
            border: 1px solid var(--border-light);
            max-width: 1100px;
            margin: 0 auto;
            padding: 48px;
        }
        .live-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .live-img img {
            width: 100%;
            border-radius: 16px;
        }
        .live-list {
            list-style: none;
            padding: 0;
        }
        .live-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .live-list li:last-child {
            border-bottom: none;
        }
        .live-dot {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* 新闻 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .news-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 28px;
            transition: transform 0.3s;
        }
        .news-card:hover {
            transform: translateY(-4px);
        }
        .news-meta {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 12px;
            font-size: 13px;
            color: var(--text-sub);
        }
        .news-meta .tag {
            background: rgba(139, 92, 246, 0.2);
            padding: 2px 10px;
            border-radius: 12px;
            color: var(--accent-light);
            font-weight: 500;
            text-decoration: none;
        }
        .news-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .news-card p {
            color: var(--text-sub);
            font-size: 14px;
            line-height: 1.8;
        }

        /* FAQ */
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            margin-bottom: 16px;
            padding: 28px;
            transition: background 0.3s;
        }
        .faq-item:hover {
            background: rgba(59, 7, 100, 0.5);
        }
        .faq-question {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-main);
        }
        .faq-answer {
            color: var(--text-sub);
            font-size: 14px;
            line-height: 1.8;
        }

        /* 用户口碑 */
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .testi-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 28px;
            text-align: center;
        }
        .testi-stars {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 14px;
        }
        .testi-text {
            color: var(--text-sub);
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .testi-name {
            color: var(--text-main);
            font-weight: 600;
            font-size: 14px;
        }

        /* CTA */
        .cta-section {
            text-align: center;
            padding: 100px 24px;
            background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3), transparent);
        }
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 16px;
        }
        .cta-section p {
            color: var(--text-sub);
            margin-bottom: 32px;
        }

        /* 页脚 */
        .site-footer {
            background: rgba(10, 4, 20, 0.8);
            border-top: 1px solid var(--border-light);
            padding: 48px 24px 24px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto 32px;
        }
        .footer-col h4 {
            color: var(--text-main);
            font-size: 16px;
            margin-bottom: 14px;
        }
        .footer-col p {
            color: var(--text-sub);
            font-size: 14px;
            line-height: 1.8;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(139, 92, 246, 0.15);
            color: var(--text-sub);
            font-size: 13px;
        }
        .footer-bottom a {
            color: var(--text-sub);
            text-decoration: none;
            margin: 0 6px;
        }
        .footer-bottom a:hover {
            color: var(--accent-light);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .stats-grid,
            .adv-grid,
            .events-grid,
            .testi-grid {
                grid-template-columns: 1fr;
            }
            .story-wrap,
            .live-grid {
                flex-direction: column;
                grid-template-columns: 1fr;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .nav-links {
                gap: 10px;
                flex-wrap: wrap;
            }
            .nav-links a {
                font-size: 13px;
            }
            .section {
                padding: 48px 16px;
            }
        }