:root {
            --primary: #ec4899;
            --secondary: #a855f7;
            --text: #1e1b4b;
            --text-light: #6b7280;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #ec4899, #a855f7);
            --shadow: 0 8px 32px rgba(236, 72, 153, 0.15);
            --radius: 24px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
            background: linear-gradient(135deg, #fdf2f8 0%, #f5f3ff 50%, #fdf2f8 100%);
            color: var(--text);
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p,
        a,
        span,
        div,
        section,
        nav,
        footer,
        article,
        li,
        ul,
        ol,
        button,
        input,
        textarea {
            font-family: inherit;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all .3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 导航栏 */
        .site-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 40px;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(236, 72, 153, 0.08);
            box-shadow: 0 4px 24px rgba(236, 72, 153, 0.06);
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-logo img {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            object-fit: cover;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: #4c1d95;
            padding: 6px 2px;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width .3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        @media(max-width:768px) {
            .site-nav {
                padding: 12px 20px;
            }
            .nav-links {
                gap: 12px;
            }
            .nav-links a {
                font-size: 13px;
            }
        }

        /* Hero */
        .hero {
            padding: 140px 40px 80px;
            text-align: center;
            position: relative;
            background: radial-gradient(ellipse at 70% 20%, rgba(236, 72, 153, 0.12), transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(168, 85, 247, 0.10), transparent 50%);
        }
        .hero h1 {
            font-size: clamp(30px, 4vw, 52px);
            font-weight: 800;
            line-height: 1.3;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 32px;
            letter-spacing: 1px;
        }
        .hero-desc {
            max-width: 900px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.9;
            color: #4c1d95;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(16px);
            border-radius: var(--radius);
            padding: 36px 48px;
            box-shadow: var(--shadow);
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.6);
        }
        .hero-img-wrap {
            margin: 36px auto 0;
            max-width: 480px;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 4px solid rgba(255, 255, 255, 0.7);
        }

        /* 通用区块 */
        .section {
            padding: 80px 40px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text);
            letter-spacing: 1px;
        }
        .section-subtitle {
            text-align: center;
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 48px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            border-radius: var(--radius);
            padding: 36px 24px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.7);
            transition: transform .3s, box-shadow .3s;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(236, 72, 153, 0.2);
        }
        .stat-num {
            font-size: 44px;
            font-weight: 900;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label {
            font-size: 15px;
            color: var(--text-light);
            margin-top: 8px;
        }
        @media(max-width:900px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* 核心优势 */
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .adv-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            border-radius: var(--radius);
            padding: 40px 28px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.7);
            text-align: center;
            transition: transform .3s;
        }
        .adv-card:hover {
            transform: translateY(-4px);
        }
        .adv-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        .adv-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .adv-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
        }
        @media(max-width:900px) {
            .adv-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 品牌故事 */
        .story-wrap {
            display: flex;
            align-items: center;
            gap: 60px;
            background: rgba(255, 255, 255, 0.68);
            backdrop-filter: blur(16px);
            border-radius: 36px;
            padding: 60px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.7);
        }
        .story-img {
            flex: 0 0 360px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
        }
        .story-content {
            flex: 1;
        }
        .story-content h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .story-content p {
            font-size: 16px;
            line-height: 1.9;
            color: #44403c;
        }
        @media(max-width:960px) {
            .story-wrap {
                flex-direction: column;
                padding: 36px;
            }
            .story-img {
                flex: auto;
                width: 100%;
            }
        }

        /* 焦点赛事 */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .event-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.7);
            text-align: center;
            transition: transform .3s;
        }
        .event-card:hover {
            transform: scale(1.02);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 16px;
        }
        .event-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .event-card .event-league {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 12px;
        }
        .event-card p {
            font-size: 14px;
            color: var(--text-light);
        }
        @media(max-width:900px) {
            .events-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 新闻 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        .news-card {
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: blur(16px);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.7);
            transition: transform .3s, box-shadow .3s;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(168, 85, 247, 0.18);
        }
        .news-card .news-img {
            height: 180px;
            overflow: hidden;
        }
        .news-card .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        .news-body {
            padding: 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-date {
            font-size: 13px;
            color: var(--primary);
            font-weight: 600;
            display: inline-block;
            background: rgba(236, 72, 153, 0.08);
            padding: 4px 14px;
            border-radius: 20px;
            align-self: flex-start;
            margin-bottom: 12px;
        }
        .news-body h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.5;
        }
        .news-body p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.8;
            flex: 1;
        }
        .news-link {
            display: inline-block;
            margin-top: 16px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
        }
        .news-link:hover {
            color: var(--secondary);
        }
        @media(max-width:800px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }

        /* FAQ */
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(16px);
            border-radius: 20px;
            margin-bottom: 18px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.7);
            overflow: hidden;
        }
        .faq-q {
            padding: 24px 32px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text);
        }
        .faq-q .icon {
            font-size: 20px;
            color: var(--primary);
            transition: transform .3s;
        }
        .faq-a {
            padding: 0 32px 24px;
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-light);
            display: block;
        }

        /* 合作伙伴 */
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .partner-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            border-radius: 60px;
            padding: 14px 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.6);
            font-size: 14px;
            font-weight: 500;
            color: #4c1d95;
            transition: transform .3s;
        }
        .partner-item:hover {
            transform: scale(1.04);
        }
        .partner-item img {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            object-fit: cover;
        }

        /* CTA */
        .cta-wrap {
            background: var(--gradient);
            border-radius: 36px;
            padding: 80px 48px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
        }
        .cta-wrap h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .cta-wrap p {
            font-size: 17px;
            opacity: 0.92;
            margin-bottom: 36px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-white {
            background: #fff;
            color: var(--primary);
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 16px;
            transition: transform .3s, box-shadow .3s;
            display: inline-block;
        }
        .btn-white:hover {
            transform: scale(1.04);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }
        .cta-wrap img.cta-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 260px;
            opacity: 0.15;
            border-radius: 0;
            pointer-events: none;
        }

        /* 页脚 */
        .site-footer {
            background: #1e1b4b;
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 40px 30px;
            margin-top: 80px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1;
            min-width: 220px;
        }
        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-col p,
        .footer-col a {
            font-size: 14px;
            line-height: 2;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-col a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
            margin: 0 8px;
        }
        .footer-bottom a:hover {
            color: var(--primary);
        }

        /* 动画 */
        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-12px);
            }
        }
        .float-anim {
            animation: float 4s ease-in-out infinite;
        }

        @media(max-width:768px) {
            .section {
                padding: 48px 20px;
            }
            .hero {
                padding: 100px 20px 50px;
            }
            .hero-desc {
                padding: 24px;
                font-size: 15px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .cta-wrap {
                padding: 48px 24px;
            }
        }