/* roulang page: index */
/* ============ 设计变量 ============ */
        :root {
            /* 主色系 - 黑白灰 */
            --color-bg: #ffffff;
            --color-bg-secondary: #f5f5f7;
            --color-bg-tertiary: #eaeaec;
            --color-bg-dark: #1a1a1a;
            --color-bg-darker: #0d0d0d;

            /* 文字色 */
            --color-text: #1a1a1a;
            --color-text-secondary: #4a4a4a;
            --color-text-weak: #7a7a7a;
            --color-text-light: #9a9a9a;
            --color-text-on-dark: #f0f0f0;
            --color-text-on-dark-weak: #b0b0b0;

            /* 点缀色 - 蓝 */
            --color-accent: #1e6df2;
            --color-accent-hover: #1558cc;
            --color-accent-light: #e8f0fe;
            --color-accent-glow: rgba(30, 109, 242, 0.2);

            /* 边框 */
            --border-color: #e2e2e4;
            --border-color-light: #eeeef0;
            --border-radius-sm: 8px;
            --border-radius: 14px;
            --border-radius-lg: 20px;
            --border-radius-xl: 28px;
            --border-radius-full: 50px;

            /* 阴影 */
            --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
            --shadow-accent: 0 8px 30px rgba(30, 109, 242, 0.25);

            /* 间距 */
            --space-xs: 6px;
            --space-sm: 12px;
            --space: 20px;
            --space-md: 28px;
            --space-lg: 44px;
            --space-xl: 64px;
            --space-2xl: 90px;
            --space-3xl: 120px;

            /* 字体 */
            --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-size-xs: 0.75rem;
            --font-size-sm: 0.875rem;
            --font-size-base: 1rem;
            --font-size-md: 1.125rem;
            --font-size-lg: 1.25rem;
            --font-size-xl: 1.5rem;
            --font-size-2xl: 2rem;
            --font-size-3xl: 2.75rem;
            --font-size-4xl: 3.5rem;
            --font-size-hero: 4rem;

            /* 过渡 */
            --transition-fast: 0.18s ease;
            --transition: 0.28s ease;
            --transition-slow: 0.4s ease;

            /* 导航 */
            --nav-height: 62px;
            --nav-capsule-padding: 10px 22px;
        }

        /* ============ 基础 Reset ============ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-family);
            font-size: var(--font-size-base);
            line-height: 1.65;
            color: var(--color-text);
            background-color: var(--color-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--color-accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }

        button {
            cursor: pointer;
        }

        ul,
        ol {
            list-style: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            font-weight: 700;
            color: var(--color-text);
        }

        /* ============ 容器 ============ */
        .container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: var(--space);
            padding-right: var(--space);
        }

        .container--narrow {
            max-width: 900px;
        }

        .container--wide {
            max-width: 1320px;
        }

        /* ============ 全局板块间距 ============ */
        .section {
            padding: var(--space-3xl) 0;
        }

        .section--light {
            background-color: var(--color-bg-secondary);
        }

        .section--dark {
            background-color: var(--color-bg-dark);
            color: var(--color-text-on-dark);
        }

        .section--dark h2,
        .section--dark h3 {
            color: var(--color-text-on-dark);
        }

        .section--dark .section__subtitle {
            color: var(--color-text-on-dark-weak);
        }

        .section__header {
            text-align: center;
            margin-bottom: var(--space-xl);
        }

        .section__label {
            display: inline-block;
            font-size: var(--font-size-sm);
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: var(--space-sm);
            background: var(--color-accent-light);
            padding: 5px 14px;
            border-radius: var(--border-radius-full);
        }

        .section__title {
            font-size: var(--font-size-3xl);
            font-weight: 800;
            margin-bottom: var(--space-sm);
            letter-spacing: -0.02em;
        }

        .section__subtitle {
            font-size: var(--font-size-md);
            color: var(--color-text-weak);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ============ 导航 - 悬浮胶囊 ============ */
        .header {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: auto;
            max-width: calc(100% - 40px);
            transition: all var(--transition);
        }

        .header__capsule {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-md);
            padding: var(--nav-capsule-padding);
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(200, 200, 205, 0.45);
            border-radius: var(--border-radius-full);
            box-shadow: var(--shadow-lg);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .header--scrolled .header__capsule {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-xl);
            border-color: rgba(180, 180, 190, 0.5);
        }

        .header__logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: var(--font-size-lg);
            font-weight: 700;
            color: var(--color-text);
            letter-spacing: -0.01em;
            flex-shrink: 0;
            transition: color var(--transition-fast);
        }

        .header__logo:hover {
            color: var(--color-accent);
        }

        .header__logo-icon {
            width: 36px;
            height: 36px;
            background: var(--color-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .header__nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .header__nav-link {
            padding: 8px 18px;
            border-radius: var(--border-radius-full);
            font-weight: 500;
            font-size: var(--font-size-sm);
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
            position: relative;
        }

        .header__nav-link:hover {
            color: var(--color-accent);
            background: var(--color-accent-light);
        }

        .header__nav-link--active {
            color: #fff;
            background: var(--color-accent);
            font-weight: 600;
            box-shadow: 0 2px 12px rgba(30, 109, 242, 0.35);
        }

        .header__nav-link--active:hover {
            color: #fff;
            background: var(--color-accent-hover);
        }

        .header__cta {
            padding: 9px 22px;
            border-radius: var(--border-radius-full);
            font-weight: 600;
            font-size: var(--font-size-sm);
            background: var(--color-bg-dark);
            color: #fff;
            transition: all var(--transition-fast);
            flex-shrink: 0;
            letter-spacing: 0.01em;
        }

        .header__cta:hover {
            background: var(--color-accent);
            box-shadow: var(--shadow-accent);
            transform: translateY(-1px);
            color: #fff;
        }

        /* 移动端导航 */
        .header__mobile-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            background: var(--color-bg-tertiary);
            font-size: 1.1rem;
            color: var(--color-text);
            flex-shrink: 0;
            transition: all var(--transition-fast);
        }

        .header__mobile-toggle:hover {
            background: var(--color-accent);
            color: #fff;
        }

        /* ============ Hero 首屏 ============ */
        .hero {
            padding: 170px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #fafafb 0%, #ffffff 60%, #f5f5f7 100%);
        }

        .hero__bg-glow {
            position: absolute;
            top: -120px;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(30, 109, 242, 0.07) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }

        .hero__bg-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }

        .hero__content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1px solid var(--border-color-light);
            padding: 7px 18px;
            border-radius: var(--border-radius-full);
            font-size: var(--font-size-sm);
            font-weight: 500;
            color: var(--color-text-secondary);
            margin-bottom: var(--space-md);
            box-shadow: var(--shadow-xs);
        }

        .hero__badge-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
            }
        }

        .hero__title {
            font-size: var(--font-size-hero);
            font-weight: 900;
            letter-spacing: -0.03em;
            margin-bottom: var(--space);
            line-height: 1.1;
            color: var(--color-text);
        }

        .hero__title-accent {
            color: var(--color-accent);
            position: relative;
        }

        .hero__title-accent::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 10px;
            background: var(--color-accent-light);
            border-radius: 4px;
            z-index: -1;
            opacity: 0.7;
        }

        .hero__desc {
            font-size: var(--font-size-lg);
            color: var(--color-text-secondary);
            margin-bottom: var(--space-lg);
            line-height: 1.7;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero__search-wrap {
            display: flex;
            align-items: center;
            gap: 0;
            max-width: 520px;
            margin: 0 auto var(--space);
            background: #fff;
            border-radius: var(--border-radius-full);
            box-shadow: var(--shadow-lg);
            border: 2px solid transparent;
            transition: all var(--transition);
            overflow: hidden;
        }

        .hero__search-wrap:focus-within {
            border-color: var(--color-accent);
            box-shadow: var(--shadow-xl), 0 0 0 8px var(--color-accent-glow);
        }

        .hero__search-input {
            flex: 1;
            padding: 16px 22px;
            font-size: var(--font-size-base);
            color: var(--color-text);
            min-width: 0;
        }

        .hero__search-input::placeholder {
            color: var(--color-text-light);
        }

        .hero__search-btn {
            padding: 14px 28px;
            background: var(--color-accent);
            color: #fff;
            font-weight: 600;
            font-size: var(--font-size-base);
            border-radius: var(--border-radius-full);
            margin: 5px;
            transition: all var(--transition-fast);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .hero__search-btn:hover {
            background: var(--color-accent-hover);
            box-shadow: var(--shadow-accent);
        }

        .hero__tags {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm);
            justify-content: center;
            font-size: var(--font-size-sm);
            color: var(--color-text-weak);
        }

        .hero__tag {
            padding: 6px 16px;
            background: #fff;
            border-radius: var(--border-radius-full);
            border: 1px solid var(--border-color-light);
            font-size: var(--font-size-xs);
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
            cursor: default;
        }

        .hero__tag:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            background: var(--color-accent-light);
        }

        /* ============ 按钮系统 ============ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--border-radius-full);
            font-weight: 600;
            font-size: var(--font-size-base);
            transition: all var(--transition-fast);
            text-align: center;
            justify-content: center;
            line-height: 1.4;
            cursor: pointer;
            letter-spacing: 0.01em;
        }

        .btn--primary {
            background: var(--color-accent);
            color: #fff;
            box-shadow: 0 4px 16px rgba(30, 109, 242, 0.3);
        }

        .btn--primary:hover {
            background: var(--color-accent-hover);
            box-shadow: var(--shadow-accent);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn--outline {
            background: transparent;
            border: 2px solid var(--border-color);
            color: var(--color-text);
        }

        .btn--outline:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            background: var(--color-accent-light);
        }

        .btn--dark {
            background: var(--color-bg-dark);
            color: #fff;
        }

        .btn--dark:hover {
            background: #333;
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn--lg {
            padding: 17px 36px;
            font-size: var(--font-size-md);
            border-radius: var(--border-radius-xl);
        }

        .btn--sm {
            padding: 8px 18px;
            font-size: var(--font-size-sm);
            border-radius: var(--border-radius-full);
        }

        /* ============ 卡片系统 ============ */
        .card {
            background: #fff;
            border-radius: var(--border-radius-lg);
            padding: var(--space-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color-light);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: transparent;
        }

        .card__icon {
            width: 52px;
            height: 52px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: var(--space);
            flex-shrink: 0;
        }

        .card__icon--blue {
            background: var(--color-accent-light);
            color: var(--color-accent);
        }

        .card__icon--green {
            background: #ecfdf5;
            color: #10b981;
        }

        .card__icon--orange {
            background: #fff7ed;
            color: #f97316;
        }

        .card__icon--purple {
            background: #f5f3ff;
            color: #8b5cf6;
        }

        .card__title {
            font-size: var(--font-size-lg);
            font-weight: 700;
            margin-bottom: var(--space-xs);
            color: var(--color-text);
        }

        .card__text {
            color: var(--color-text-weak);
            font-size: var(--font-size-sm);
            line-height: 1.6;
        }

        /* 赛事卡片 */
        .card--match {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            padding: var(--space-md);
            border-radius: var(--border-radius-lg);
        }

        .card--match .card__match-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: var(--font-size-xs);
            color: var(--color-text-weak);
        }

        .card--match .card__match-badge {
            padding: 3px 10px;
            border-radius: var(--border-radius-full);
            font-weight: 600;
            font-size: var(--font-size-xs);
        }

        .card--match .card__match-badge--live {
            background: #fef2f2;
            color: #ef4444;
            animation: pulse-badge 1.8s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }

        .card--match .card__match-badge--upcoming {
            background: #f0f9ff;
            color: #3b82f6;
        }

        .card--match .card__match-teams {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: var(--space-sm);
            padding: var(--space-sm) 0;
        }

        .card--match .card__match-team {
            text-align: center;
            flex: 1;
            min-width: 0;
        }

        .card--match .card__match-team-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: 0 auto var(--space-xs);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.3rem;
            color: #fff;
        }

        .card--match .card__match-vs {
            font-weight: 800;
            font-size: var(--font-size-lg);
            color: var(--color-text-weak);
            flex-shrink: 0;
        }

        .card--match .card__match-info {
            text-align: center;
            font-size: var(--font-size-sm);
            color: var(--color-text-secondary);
            padding-top: var(--space-xs);
            border-top: 1px solid var(--border-color-light);
        }

        /* ============ 数据统计块 ============ */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-md);
        }

        .stat-item {
            text-align: center;
            padding: var(--space-lg) var(--space);
            background: #fff;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color-light);
            transition: all var(--transition);
        }

        .stat-item:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }

        .stat-item__number {
            font-size: var(--font-size-4xl);
            font-weight: 900;
            color: var(--color-accent);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .stat-item__label {
            font-size: var(--font-size-sm);
            color: var(--color-text-weak);
            margin-top: var(--space-xs);
            font-weight: 500;
        }

        /* ============ 步骤流程 ============ */
        .steps-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-md);
            counter-reset: step;
        }

        .step-item {
            position: relative;
            padding: var(--space-lg);
            background: #fff;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color-light);
            text-align: center;
            transition: all var(--transition);
            counter-increment: step;
        }

        .step-item:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }

        .step-item__num {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-accent);
            color: #fff;
            font-weight: 800;
            font-size: var(--font-size-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space);
        }

        .step-item__title {
            font-weight: 700;
            font-size: var(--font-size-md);
            margin-bottom: var(--space-xs);
        }

        .step-item__desc {
            font-size: var(--font-size-sm);
            color: var(--color-text-weak);
            line-height: 1.6;
        }

        /* ============ FAQ ============ */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .faq-item {
            background: #fff;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color-light);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .faq-item__question {
            width: 100%;
            padding: var(--space) var(--space-md);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space);
            font-weight: 600;
            font-size: var(--font-size-base);
            color: var(--color-text);
            text-align: left;
            cursor: pointer;
            transition: all var(--transition-fast);
            background: transparent;
            line-height: 1.5;
        }

        .faq-item__question:hover {
            color: var(--color-accent);
            background: #fafbfc;
        }

        .faq-item__icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--color-bg-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            transition: all var(--transition-fast);
            color: var(--color-text-weak);
        }

        .faq-item__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 var(--space-md);
            color: var(--color-text-secondary);
            font-size: var(--font-size-sm);
            line-height: 1.7;
        }

        .faq-item--open .faq-item__answer {
            max-height: 240px;
            padding: 0 var(--space-md) var(--space-md);
        }

        .faq-item--open .faq-item__icon {
            transform: rotate(45deg);
            background: var(--color-accent);
            color: #fff;
        }

        /* ============ CTA 板块 ============ */
        .cta-section {
            text-align: center;
            padding: var(--space-2xl) 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section__inner {
            background: var(--color-bg-dark);
            border-radius: var(--border-radius-xl);
            padding: var(--space-2xl) var(--space-lg);
            position: relative;
            overflow: hidden;
        }

        .cta-section__glow {
            position: absolute;
            top: -80px;
            right: -120px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(30, 109, 242, 0.25) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }

        .cta-section__title {
            font-size: var(--font-size-2xl);
            font-weight: 800;
            color: #fff;
            margin-bottom: var(--space-sm);
            position: relative;
            z-index: 1;
        }

        .cta-section__desc {
            color: var(--color-text-on-dark-weak);
            margin-bottom: var(--space-lg);
            position: relative;
            z-index: 1;
            font-size: var(--font-size-md);
        }

        .cta-section__actions {
            display: flex;
            gap: var(--space);
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* ============ 页脚 ============ */
        .footer {
            background: var(--color-bg-darker);
            color: var(--color-text-on-dark-weak);
            padding: var(--space-2xl) 0 var(--space-lg);
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--space-xl);
            margin-bottom: var(--space-xl);
        }

        .footer__brand-name {
            font-size: var(--font-size-xl);
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--space-sm);
        }

        .footer__brand-desc {
            font-size: var(--font-size-sm);
            color: var(--color-text-on-dark-weak);
            line-height: 1.7;
            max-width: 280px;
        }

        .footer__col-title {
            font-weight: 600;
            color: #fff;
            margin-bottom: var(--space);
            font-size: var(--font-size-sm);
            letter-spacing: 0.03em;
        }

        .footer__links {
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
        }

        .footer__links a {
            font-size: var(--font-size-sm);
            color: var(--color-text-on-dark-weak);
            transition: color var(--transition-fast);
        }

        .footer__links a:hover {
            color: #fff;
        }

        .footer__bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--space-md);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: var(--space);
            font-size: var(--font-size-xs);
            color: var(--color-text-on-dark-weak);
        }

        /* ============ 标签/徽章系统 ============ */
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 5px 12px;
            border-radius: var(--border-radius-full);
            font-size: var(--font-size-xs);
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .badge--accent {
            background: var(--color-accent-light);
            color: var(--color-accent);
        }

        .badge--success {
            background: #ecfdf5;
            color: #10b981;
        }

        /* ============ 响应式网格辅助 ============ */
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-md);
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-md);
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-md);
        }

        /* ============ 分割线 ============ */
        .divider {
            border: none;
            height: 1px;
            background: var(--border-color-light);
            margin: var(--space-lg) 0;
        }

        /* ============ 辅助文本 ============ */
        .text-accent {
            color: var(--color-accent);
        }

        .text-weak {
            color: var(--color-text-weak);
        }

        .text-center {
            text-align: center;
        }

        /* ============ 响应式断点 ============ */
        @media screen and (max-width: 1024px) {
            :root {
                --font-size-hero: 3rem;
                --font-size-3xl: 2.2rem;
                --font-size-4xl: 2.6rem;
                --space-3xl: 80px;
                --space-2xl: 60px;
                --space-xl: 44px;
            }

            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-list {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero {
                padding: 140px 0 70px;
            }

            .hero__bg-glow {
                width: 500px;
                height: 500px;
                top: -80px;
            }
        }

        @media screen and (max-width: 768px) {
            :root {
                --font-size-hero: 2.4rem;
                --font-size-3xl: 1.8rem;
                --font-size-2xl: 1.5rem;
                --font-size-4xl: 2rem;
                --space-3xl: 60px;
                --space-2xl: 44px;
                --space-xl: 32px;
                --space-lg: 28px;
                --nav-height: 52px;
            }

            .header {
                top: 10px;
                max-width: calc(100% - 24px);
            }

            .header__capsule {
                padding: 8px 16px;
                gap: var(--space-sm);
            }

            .header__logo {
                font-size: var(--font-size-sm);
                gap: 6px;
            }

            .header__logo-icon {
                width: 30px;
                height: 30px;
                border-radius: 8px;
                font-size: 0.8rem;
            }

            .header__nav {
                gap: 2px;
            }

            .header__nav-link {
                padding: 6px 12px;
                font-size: var(--font-size-xs);
            }

            .header__cta {
                padding: 7px 15px;
                font-size: var(--font-size-xs);
            }

            .hero {
                padding: 120px 0 50px;
            }

            .hero__title {
                font-size: var(--font-size-hero);
            }

            .hero__desc {
                font-size: var(--font-size-base);
            }

            .hero__search-wrap {
                max-width: 100%;
                flex-direction: column;
                border-radius: var(--border-radius-lg);
                gap: 0;
            }

            .hero__search-input {
                padding: 14px 18px;
                width: 100%;
            }

            .hero__search-btn {
                margin: 4px 8px 8px;
                width: calc(100% - 16px);
                justify-content: center;
                border-radius: var(--border-radius);
            }

            .grid-2,
            .grid-3,
            .grid-4 {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-sm);
            }

            .stat-item {
                padding: var(--space-md) var(--space);
            }

            .stat-item__number {
                font-size: 1.8rem;
            }

            .steps-list {
                grid-template-columns: 1fr;
            }

            .footer__grid {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }

            .footer__bottom {
                flex-direction: column;
                text-align: center;
            }

            .card--match .card__match-teams {
                flex-direction: column;
                gap: var(--space-xs);
            }

            .card--match .card__match-vs {
                font-size: var(--font-size-base);
            }

            .section__title {
                font-size: var(--font-size-2xl);
            }

            .cta-section__inner {
                padding: var(--space-xl) var(--space);
            }
        }

        @media screen and (max-width: 520px) {
            :root {
                --font-size-hero: 1.9rem;
                --font-size-3xl: 1.5rem;
                --font-size-2xl: 1.35rem;
                --space-3xl: 44px;
                --space-2xl: 32px;
            }

            .header__capsule {
                padding: 7px 12px;
                gap: 6px;
                border-radius: 28px;
            }

            .header__logo {
                font-size: 0.7rem;
                gap: 4px;
            }

            .header__logo-icon {
                width: 26px;
                height: 26px;
                border-radius: 6px;
                font-size: 0.7rem;
            }

            .header__nav-link {
                padding: 5px 10px;
                font-size: 0.7rem;
            }

            .header__cta {
                padding: 6px 12px;
                font-size: 0.7rem;
            }

            .hero {
                padding: 100px 0 40px;
            }

            .hero__bg-glow {
                width: 300px;
                height: 300px;
                top: -40px;
            }

            .hero__search-input {
                font-size: var(--font-size-sm);
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .stat-item {
                padding: var(--space) var(--space-sm);
                border-radius: var(--border-radius);
            }

            .stat-item__number {
                font-size: 1.5rem;
            }

            .stat-item__label {
                font-size: 0.7rem;
            }

            .card {
                padding: var(--space);
            }

            .faq-item__question {
                font-size: var(--font-size-sm);
                padding: var(--space-sm) var(--space);
            }

            .container {
                padding-left: var(--space-sm);
                padding-right: var(--space-sm);
            }
        }

        /* ============ 可访问性 ============ */
        :focus-visible {
            outline: 2px solid var(--color-accent);
            outline-offset: 3px;
            border-radius: 4px;
        }

        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--color-accent);
            outline-offset: 3px;
        }

        /* ============ 滚动条美化 ============ */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: #c8c8cc;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #a0a0a5;
        }
