* {
            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, #7c3aed 0%, #2e1065 100%);
            color: #fff;
            min-height: 100vh;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #f0abfc;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        a:hover {
            opacity: 0.8;
        }
        img {
            max-width: 100%;
            border-radius: 10px;
            display: block;
        }

        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            background: rgba(46, 16, 101, 0.85);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 0 30px;
        }
        .nav-links {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 30px;
            height: 64px;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .nav-links a:first-child {
            font-weight: 700;
            font-size: 18px;
            color: #f0abfc;
            margin-right: 10px;
        }

        /* 通用容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        section {
            padding: 80px 0;
            position: relative;
        }
        h2 {
            font-size: 34px;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #f0abfc, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
        }
        h3 {
            font-size: 22px;
            margin: 16px 0 8px;
        }

        /* HERO */
        .hero {
            min-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            position: relative;
            background: url('/img/tiyu.webp') no-repeat center center / cover;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(46, 16, 101, 0.55);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 20px;
        }
        .hero h1 {
            font-size: 44px;
            font-weight: 800;
            letter-spacing: 3px;
            margin-bottom: 15px;
            text-shadow: 0 0 40px rgba(124, 58, 237, 0.8), 0 0 80px rgba(240, 171, 252, 0.4);
        }
        .hero p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 580px;
            margin: 0 auto 30px;
        }
        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .hero-buttons a {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 50px;
            background: linear-gradient(135deg, #f0abfc, #7c3aed);
            color: #2e1065;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 4px 20px rgba(240, 171, 252, 0.35);
            transition: transform 0.3s;
        }
        .hero-buttons a:hover {
            transform: translateY(-3px);
        }

        /* GEO */
        .geo-intro {
            background: rgba(255, 255, 255, 0.04);
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .geo-intro .geo-text {
            max-width: 860px;
            margin: 0 auto;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 2;
        }
        .geo-intro img {
            margin: 20px auto 0;
            max-height: 180px;
            object-fit: cover;
        }

        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .stat-card {
            background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.5), rgba(46, 16, 101, 0.7));
            border-radius: 16px;
            text-align: center;
            padding: 30px 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
        }
        .stat-card::after {
            content: '';
            position: absolute;
            top: -60%;
            left: -60%;
            width: 220%;
            height: 220%;
            background: conic-gradient(from 0deg, transparent 0%, rgba(240, 171, 252, 0.08) 25%, transparent 50%);
            animation: rotate 25s linear infinite;
            pointer-events: none;
        }
        @keyframes rotate {
            to {
                transform: rotate(360deg);
            }
        }
        .stat-card img {
            width: 44px;
            height: 44px;
            object-fit: contain;
            margin: 0 auto 10px;
        }
        .stat-number {
            display: block;
            font-size: 40px;
            font-weight: 800;
            background: linear-gradient(135deg, #f0abfc, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 6px;
            display: block;
        }

        /* 核心优势 */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .feature-card {
            background: linear-gradient(145deg, rgba(124, 58, 237, 0.25), rgba(46, 16, 101, 0.5));
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 80%, rgba(240, 171, 252, 0.15), transparent 60%);
            pointer-events: none;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(124, 58, 237, 0.3);
        }
        .feature-card img {
            width: 52px;
            height: 52px;
            object-fit: contain;
            margin: 0 auto 15px;
        }
        .feature-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        /* 品牌故事 */
        .story {
            background: rgba(255, 255, 255, 0.03);
        }
        .story-inner {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .story img {
            flex: 1;
            max-width: 420px;
            height: auto;
        }
        .story-text {
            flex: 1.4;
        }
        .story-text p {
            font-size: 16px;
            line-height: 2;
            color: rgba(255, 255, 255, 0.88);
            margin-bottom: 15px;
        }

        /* 焦点赛事 */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .event-card {
            border-radius: 16px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform 0.3s;
        }
        .event-card:hover {
            transform: scale(1.03);
        }
        .event-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        .event-card h3 {
            margin: 15px 15px 5px;
            font-size: 20px;
        }
        .event-card p {
            margin: 0 15px 15px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
        }

        /* 赛事直播 */
        .live-stream {
            background: radial-gradient(circle at center, rgba(124, 58, 237, 0.3), rgba(46, 16, 101, 0.3));
        }
        .live-stream .lead {
            text-align: center;
            font-size: 17px;
            max-width: 680px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.85);
        }
        .live-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 30px;
        }
        .live-card {
            border-radius: 16px;
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s;
        }
        .live-card img {
            width: 45px;
            height: 45px;
            object-fit: contain;
            margin: 0 auto 15px;
        }

        /* 用户口碑 */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .testimonial-card p {
            font-size: 15px;
            font-style: italic;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.88);
        }
        .testimonial-card span {
            display: inline-block;
            margin-top: 15px;
            font-size: 14px;
            color: #f0abfc;
            font-weight: 500;
        }

        /* 合作伙伴 */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 40px;
            align-items: center;
        }
        .partners-grid img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin: 0 auto;
            filter: brightness(0.9) drop-shadow(0 0 6px rgba(124, 58, 237, 0.4));
            transition: transform 0.3s;
        }
        .partners-grid img:hover {
            transform: scale(1.1);
        }

        /* 新闻 */
        .news-list {
            background: rgba(255, 255, 255, 0.03);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .news-card {
            background: linear-gradient(145deg, rgba(124, 58, 237, 0.2), rgba(46, 16, 101, 0.4));
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s;
        }
        .news-card:hover {
            transform: translateY(-6px);
        }
        .news-card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
        }
        .news-body {
            padding: 18px 18px 22px;
        }
        .news-body h3 {
            font-size: 18px;
            line-height: 1.5;
        }
        .news-body h3 a {
            color: #fff;
        }
        .news-date {
            display: block;
            font-size: 13px;
            color: #f0abfc;
            font-weight: 600;
            margin-top: 5px;
            letter-spacing: 1px;
        }
        .news-body p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.9;
            margin-top: 10px;
        }

        /* FAQ */
        .faq-list {
            max-width: 840px;
            margin: 40px auto 0;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 22px 28px;
            margin-bottom: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .faq-item summary {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::before {
            content: '✦';
            color: #f0abfc;
            font-size: 18px;
        }
        .faq-item p {
            margin-top: 14px;
            font-size: 15px;
            line-height: 1.95;
            color: rgba(255, 255, 255, 0.82);
        }

        /* 页脚 */
        .site-footer {
            background: rgba(20, 5, 40, 0.9);
            padding: 50px 24px 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
        }
        .footer-brand {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #f0abfc, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 18px;
        }
        .footer-info {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.9;
            margin-bottom: 6px;
        }
        .footer-links {
            margin: 20px 0 15px;
            font-size: 14px;
        }
        .footer-links a {
            color: #f0abfc;
            margin: 0 5px;
        }
        .footer-copy {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 15px;
        }

        /* 响应式 */
        @media (max-width: 900px) {
            .stats-grid,
            .features-grid,
            .events-grid,
            .live-cards,
            .testimonials-grid,
            .news-grid {
                grid-template-columns: 1fr 1fr;
            }
            .partners-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .story-inner {
                flex-direction: column;
            }
        }
        @media (max-width: 600px) {
            .stats-grid,
            .features-grid,
            .events-grid,
            .live-cards,
            .testimonials-grid,
            .news-grid,
            .partners-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 30px;
            }
            .nav-links {
                gap: 14px;
                padding: 0 10px;
                overflow-x: auto;
            }
            .nav-links a {
                font-size: 13px;
            }
        }