/* roulang page: index */
:root {
            --bg-primary: #0A1128;
            --bg-secondary: #0D1B2A;
            --bg-card: rgba(255, 255, 255, 0.06);
            --bg-card-hover: rgba(255, 255, 255, 0.10);
            --border-card: rgba(255, 255, 255, 0.18);
            --border-glow: rgba(44, 229, 163, 0.35);
            --text-primary: #F2F6FF;
            --text-body: #C8D2E8;
            --text-muted: #7E8BA8;
            --accent-cyan: #16F2C3;
            --accent-green: #2CE5A3;
            --accent-orange: #FFB547;
            --accent-yellow: #F5E663;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 16px rgba(44, 229, 163, 0.35);
            --shadow-glow-strong: 0 0 24px rgba(44, 229, 163, 0.5);
            --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --spacing-section: 72px;
            --spacing-section-mobile: 40px;
            --container-max: 1200px;
            --nav-height: 68px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-primary);
            color: var(--text-body);
            line-height: 1.8;
            font-size: 15px;
            letter-spacing: 0.01em;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            padding-top: var(--nav-height);
        }

        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--accent-green);
            text-decoration: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-green);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--text-primary);
            font-weight: 600;
            line-height: 1.35;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 700;
        }
        h2 {
            font-size: clamp(20px, 2.5vw, 32px);
            font-weight: 600;
        }
        h3 {
            font-size: 18px;
            font-weight: 500;
        }
        p {
            margin-bottom: 0.8rem;
            text-align: justify;
            line-height: 1.85;
        }
        .text-muted {
            color: var(--text-muted) !important;
        }

        .container {
            max-width: var(--container-max);
            padding-left: 20px;
            padding-right: 20px;
        }
        .section {
            padding: var(--spacing-section) 0;
            position: relative;
        }
        .section-alt {
            background-color: rgba(13, 27, 42, 0.6);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-header h2 {
            margin-bottom: 12px;
        }
        .section-header .section-desc {
            max-width: 720px;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.85;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-cyan);
            background: rgba(22, 242, 195, 0.12);
            border: 1px solid rgba(22, 242, 195, 0.3);
            border-radius: var(--radius-pill);
            padding: 4px 14px;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }

        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: rgba(10, 17, 40, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(44, 229, 163, 0.18);
            min-height: var(--nav-height);
            padding: 10px 0;
            transition: background 0.3s ease;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            transition: color 0.25s ease;
        }
        .navbar-brand:hover {
            color: var(--accent-cyan);
        }
        .brand-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #0A1128;
            flex-shrink: 0;
            box-shadow: 0 0 14px rgba(44, 229, 163, 0.45);
        }
        .navbar-nav {
            display: flex;
            align-items: center;
            gap: 22px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .navbar-nav .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-body);
            padding: 8px 2px;
            position: relative;
            transition: color 0.2s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--accent-cyan);
        }
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            color: #0A1128;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 18px rgba(44, 229, 163, 0.45);
            transition: all 0.3s ease;
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .nav-cta:hover {
            background: linear-gradient(135deg, #2CE5A3 0%, #3DF0B3 100%);
            box-shadow: 0 0 28px rgba(44, 229, 163, 0.6);
            transform: translateY(-1px);
            color: #0A1128;
        }
        .nav-cta:active {
            transform: translateY(1px);
            box-shadow: 0 0 12px rgba(44, 229, 163, 0.35);
        }
        .navbar-toggler {
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 20px;
            transition: background 0.2s ease;
        }
        .navbar-toggler:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 2px rgba(44, 229, 163, 0.4);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23F2F6FF' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
            display: inline-block;
            width: 24px;
            height: 24px;
        }
        .mobile-menu-wrapper {
            display: none;
        }
        @media (max-width: 991px) {
            .navbar-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 17, 40, 0.97);
                backdrop-filter: blur(14px);
                border-bottom: 1px solid rgba(44, 229, 163, 0.2);
                padding: 16px 20px 20px;
                gap: 6px;
                align-items: stretch;
                box-shadow: 0 24px 40px rgba(0, 0, 0, 0.55);
            }
            .navbar-nav.show {
                display: flex;
            }
            .navbar-nav .nav-link {
                padding: 12px 4px;
                font-size: 15px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .navbar-nav .nav-link::after {
                display: none;
            }
            .navbar-nav .nav-cta {
                margin-top: 12px;
                justify-content: center;
                width: 100%;
            }
            .navbar-toggler {
                display: block;
            }
        }
        @media (min-width: 992px) {
            .navbar-toggler {
                display: none;
            }
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 78vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: var(--bg-primary);
            padding: 80px 0 60px;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/1445441fdaf791be.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(165deg, rgba(10, 17, 40, 0.88) 0%, rgba(13, 27, 42, 0.7) 45%, rgba(10, 17, 40, 0.92) 100%);
            z-index: 1;
        }
        .hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-card {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-top: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: var(--radius-lg);
            padding: 48px 44px;
            box-shadow: var(--shadow-card);
            max-width: 760px;
        }
        .hero-card h1 {
            margin-bottom: 18px;
            letter-spacing: 0.015em;
        }
        .hero-card .hero-sub {
            font-size: 16px;
            color: var(--text-body);
            max-width: 640px;
            line-height: 1.9;
            margin-bottom: 26px;
        }
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .btn-primary-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 32px;
            border-radius: var(--radius-pill);
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            color: #0A1128;
            font-weight: 600;
            font-size: 15px;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 22px rgba(44, 229, 163, 0.45);
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
        }
        .btn-primary-cta:hover {
            background: linear-gradient(135deg, #2CE5A3 0%, #3DF0B3 100%);
            box-shadow: 0 0 34px rgba(44, 229, 163, 0.6);
            transform: translateY(-2px);
            color: #0A1128;
        }
        .btn-primary-cta:active {
            transform: translateY(1px);
            box-shadow: 0 0 14px rgba(44, 229, 163, 0.35);
        }
        .btn-secondary-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-pill);
            background: transparent;
            color: var(--accent-cyan);
            font-weight: 500;
            font-size: 15px;
            border: 1px solid var(--accent-green);
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
        }
        .btn-secondary-cta:hover {
            background: rgba(44, 229, 163, 0.12);
            border-color: var(--accent-green);
            color: var(--accent-green);
            box-shadow: 0 0 16px rgba(44, 229, 163, 0.25);
        }
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 28px;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }
        .hero-stat {
            display: flex;
            flex-direction: column;
        }
        .hero-stat .stat-num {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-cyan);
            letter-spacing: 0.02em;
        }
        .hero-stat .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 0.03em;
        }

        /* 比分播报带 */
        .ticker-section {
            background: rgba(13, 27, 42, 0.7);
            border-top: 1px solid rgba(44, 229, 163, 0.15);
            border-bottom: 1px solid rgba(44, 229, 163, 0.15);
        }
        .ticker-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 18px 4px;
            scrollbar-width: thin;
            scrollbar-color: rgba(44, 229, 163, 0.4) transparent;
        }
        .ticker-scroll::-webkit-scrollbar {
            height: 4px;
        }
        .ticker-scroll::-webkit-scrollbar-thumb {
            background: rgba(44, 229, 163, 0.4);
            border-radius: 4px;
        }
        .ticker-card {
            flex: 0 0 auto;
            min-width: 230px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: var(--radius-md);
            padding: 14px 18px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
            transition: all 0.25s ease;
        }
        .ticker-card:hover {
            border-color: rgba(44, 229, 163, 0.4);
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
        }
        .ticker-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
        }
        .ticker-status {
            font-size: 11px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            letter-spacing: 0.03em;
        }
        .ticker-status.live {
            background: rgba(22, 242, 195, 0.2);
            color: var(--accent-cyan);
            border: 1px solid rgba(22, 242, 195, 0.4);
        }
        .ticker-status.finished {
            background: rgba(126, 139, 168, 0.25);
            color: var(--text-muted);
            border: 1px solid rgba(126, 139, 168, 0.4);
        }
        .ticker-time {
            font-size: 12px;
            color: var(--text-muted);
        }
        .ticker-matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
        }
        .ticker-score {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-cyan);
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        /* 服务矩阵 */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        .service-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-lg);
            padding: 26px 24px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 24px;
            right: 24px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
            border-radius: 2px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .service-card:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(44, 229, 163, 0.35);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: rgba(22, 242, 195, 0.14);
            border: 1px solid rgba(22, 242, 195, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent-cyan);
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon {
            background: rgba(22, 242, 195, 0.22);
            box-shadow: 0 0 18px rgba(22, 242, 195, 0.3);
        }
        .service-card h3 {
            font-size: 17px;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .service-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        /* 优势数据带 */
        .stats-band {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            border-color: rgba(44, 229, 163, 0.35);
            background: rgba(255, 255, 255, 0.08);
        }
        .stat-card .stat-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-cyan);
            letter-spacing: 0.02em;
        }
        .stat-card .stat-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* 方案流程 */
        .flow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            counter-reset: step;
        }
        .flow-step {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            position: relative;
            transition: all 0.3s ease;
        }
        .flow-step:hover {
            border-color: rgba(44, 229, 163, 0.35);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }
        .flow-step .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(22, 242, 195, 0.16);
            border: 1px solid rgba(22, 242, 195, 0.35);
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .flow-step h3 {
            font-size: 16px;
            margin-bottom: 6px;
        }
        .flow-step p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        /* 案例墙 */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 18px;
        }
        .case-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
            transition: all 0.3s ease;
            position: relative;
        }
        .case-card:hover {
            border-color: rgba(44, 229, 163, 0.4);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .case-card .case-tag {
            font-size: 12px;
            font-weight: 500;
            padding: 2px 10px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 10px;
        }
        .case-tag.orange {
            background: rgba(255, 181, 71, 0.15);
            color: var(--accent-orange);
            border: 1px solid rgba(255, 181, 71, 0.35);
        }
        .case-tag.green {
            background: rgba(22, 242, 195, 0.15);
            color: var(--accent-cyan);
            border: 1px solid rgba(22, 242, 195, 0.35);
        }
        .case-card h3 {
            font-size: 16px;
            margin-bottom: 6px;
        }
        .case-card .case-score {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-cyan);
            margin-bottom: 6px;
        }
        .case-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        /* 资讯列表 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .news-item {
            display: flex;
            gap: 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: var(--radius-md);
            padding: 14px 18px;
            transition: all 0.3s ease;
            align-items: flex-start;
        }
        .news-item:hover {
            border-color: rgba(44, 229, 163, 0.35);
            background: rgba(255, 255, 255, 0.08);
        }
        .news-thumb {
            width: 80px;
            height: 60px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.08);
        }
        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .news-content h3 {
            font-size: 15px;
            margin-bottom: 0;
            color: var(--text-primary);
        }
        .news-content p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.65;
        }
        .news-meta {
            display: flex;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
            align-items: center;
        }
        .news-meta .badge-tag {
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 20px;
            background: rgba(22, 242, 195, 0.12);
            color: var(--accent-cyan);
            border: 1px solid rgba(22, 242, 195, 0.3);
        }

        /* 品牌介绍 */
        .brand-section {
            position: relative;
            overflow: hidden;
        }
        .brand-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 100%;
            background-image: url('/assets/images/c2ed6736034abdbe.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            z-index: 0;
        }
        .brand-section .container {
            position: relative;
            z-index: 1;
        }
        .brand-text {
            max-width: 800px;
            font-size: 15px;
            line-height: 1.95;
            color: var(--text-body);
        }
        .brand-text p {
            margin-bottom: 14px;
        }

        /* 热门赛事 */
        .hot-match-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 16px;
        }
        .hot-match-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: var(--radius-md);
            padding: 16px 16px 14px;
            transition: all 0.3s ease;
            position: relative;
        }
        .hot-match-card:hover {
            border-color: rgba(44, 229, 163, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        }
        .hot-match-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .hot-match-top .hot-badge {
            font-size: 11px;
            padding: 2px 10px;
            border-radius: 20px;
            background: rgba(255, 181, 71, 0.2);
            color: var(--accent-orange);
            border: 1px solid rgba(255, 181, 71, 0.4);
            font-weight: 500;
        }
        .hot-match-top .hot-time {
            font-size: 12px;
            color: var(--text-muted);
        }
        .hot-match-teams {
            font-size: 14px;
            color: var(--text-primary);
            margin-bottom: 6px;
            font-weight: 500;
        }
        .hot-match-score {
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-cyan);
            margin-bottom: 6px;
        }
        .hot-match-info {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* 图表区 */
        .chart-area {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-md);
            padding: 30px 26px;
        }
        .chart-bar-group {
            display: flex;
            align-items: flex-end;
            gap: 14px;
            height: 160px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }
        .chart-bar {
            flex: 1;
            background: linear-gradient(180deg, rgba(22, 242, 195, 0.7) 0%, rgba(22, 242, 195, 0.2) 100%);
            border-radius: 6px 6px 0 0;
            min-width: 18px;
            transition: all 0.3s ease;
            position: relative;
        }
        .chart-bar:hover {
            background: linear-gradient(180deg, var(--accent-cyan) 0%, rgba(22, 242, 195, 0.5) 100%);
            box-shadow: 0 0 16px rgba(22, 242, 195, 0.4);
        }
        .chart-labels {
            display: flex;
            gap: 12px;
            margin-top: 10px;
            font-size: 12px;
            color: var(--text-muted);
        }
        .chart-labels span {
            flex: 1;
            text-align: center;
        }
        .chart-legend {
            display: flex;
            gap: 20px;
            margin-top: 16px;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
        }
        .chart-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 6px;
        }

        /* 合作伙伴 */
        .partner-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .partner-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-md);
            padding: 14px 24px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }
        .partner-item:hover {
            border-color: rgba(44, 229, 163, 0.35);
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.08);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: border-color 0.3s ease;
        }
        .faq-item.active {
            border-color: rgba(44, 229, 163, 0.5);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
            cursor: pointer;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            gap: 12px;
            transition: color 0.2s ease;
            letter-spacing: 0.01em;
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(22, 242, 195, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--accent-cyan);
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: rgba(22, 242, 195, 0.25);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 22px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.85;
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 22px 18px;
        }

        /* 保障条 */
        .assurance-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 32px;
            align-items: center;
            justify-content: center;
        }
        .assurance-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-body);
        }
        .assurance-item i {
            font-size: 18px;
            color: var(--accent-cyan);
        }

        /* CTA尾段 */
        .cta-final {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(44, 229, 163, 0.25);
            border-radius: var(--radius-lg);
            padding: 44px 36px;
            text-align: center;
            box-shadow: 0 0 28px rgba(44, 229, 163, 0.1);
        }
        .cta-final h2 {
            margin-bottom: 10px;
        }
        .cta-final p {
            max-width: 540px;
            margin: 0 auto 22px;
            color: var(--text-muted);
        }

        /* 页脚 */
        .footer {
            background: #080D1E;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 50px 0 30px;
            font-size: 14px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 28px;
        }
        .footer-brand {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }
        .footer-desc {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.8;
        }
        .footer h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
            list-style: none;
            padding: 0;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 13px;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-size: 12px;
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* 响应式 */
        @media (max-width: 991px) {
            .hero {
                min-height: 62vh;
                padding: 60px 0 50px;
            }
            .hero-card {
                padding: 32px 24px;
            }
            .section {
                padding: 48px 0;
            }
            .service-grid {
                grid-template-columns: 1fr 1fr;
            }
            .case-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hot-match-grid {
                grid-template-columns: 1fr 1fr;
            }
            .news-thumb {
                width: 60px;
                height: 48px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 767px) {
            .hero {
                min-height: 56vh;
                padding: 50px 0 40px;
            }
            .hero-card {
                padding: 24px 18px;
            }
            .hero-stats {
                gap: 16px;
            }
            .hero-stat .stat-num {
                font-size: 18px;
            }
            .section {
                padding: 40px 0;
            }
            .service-grid {
                grid-template-columns: 1fr;
            }
            .case-grid {
                grid-template-columns: 1fr;
            }
            .hot-match-grid {
                grid-template-columns: 1fr;
            }
            .stats-band {
                grid-template-columns: 1fr 1fr;
            }
            .flow-steps {
                grid-template-columns: 1fr;
            }
            .news-item {
                flex-direction: column;
                gap: 10px;
            }
            .news-thumb {
                width: 100%;
                height: 120px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .cta-final {
                padding: 28px 18px;
            }
            .faq-question {
                padding: 14px 16px;
                font-size: 14px;
            }
            .faq-answer {
                padding: 0 16px;
                font-size: 13px;
            }
            .faq-item.active .faq-answer {
                padding: 0 16px 14px;
            }
            .partner-item {
                padding: 10px 16px;
                font-size: 13px;
            }
            .ticker-card {
                min-width: 180px;
                padding: 10px 14px;
            }
        }
        @media (max-width: 520px) {
            .hero-card {
                padding: 20px 14px;
                border-radius: 12px;
            }
            .hero-card h1 {
                font-size: 24px;
            }
            .hero-cta-group {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-primary-cta,
            .btn-secondary-cta {
                justify-content: center;
                width: 100%;
                font-size: 14px;
                padding: 12px 20px;
            }
            .stats-band {
                grid-template-columns: 1fr;
            }
            .section-header h2 {
                font-size: 20px;
            }
            .chart-bar-group {
                height: 100px;
                gap: 8px;
            }
            .navbar-brand {
                font-size: 17px;
                gap: 6px;
            }
            .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #0A1128;
            --bg-secondary: #0D1B2A;
            --bg-card: rgba(255, 255, 255, 0.06);
            --bg-card-hover: rgba(255, 255, 255, 0.10);
            --border-card: rgba(255, 255, 255, 0.18);
            --border-glow: rgba(44, 229, 163, 0.35);
            --text-primary: #F2F6FF;
            --text-body: #C8D2E8;
            --text-muted: #7E8BA8;
            --accent-cyan: #16F2C3;
            --accent-green: #2CE5A3;
            --accent-orange: #FFB547;
            --accent-yellow: #F5E663;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 16px rgba(44, 229, 163, 0.35);
            --shadow-glow-strong: 0 0 24px rgba(44, 229, 163, 0.5);
            --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --spacing-section: 72px;
            --spacing-section-mobile: 40px;
            --container-max: 1200px;
            --nav-height: 68px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-family);
            background-color: var(--bg-primary);
            color: var(--text-body);
            line-height: 1.8;
            font-size: 15px;
            letter-spacing: 0.01em;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            padding-top: var(--nav-height);
        }
        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--accent-green);
            text-decoration: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-green);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .text-muted {
            color: var(--text-muted) !important;
        }
        .container {
            max-width: var(--container-max);
            padding-left: 20px;
            padding-right: 20px;
        }
        .section {
            padding: var(--spacing-section) 0;
            position: relative;
        }
        .section-alt {
            background-color: rgba(13, 27, 42, 0.6);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-header h2 {
            margin-bottom: 12px;
            color: var(--text-primary);
            font-size: clamp(20px, 2.5vw, 32px);
            font-weight: 600;
            letter-spacing: 0.01em;
        }
        .section-header .section-desc {
            max-width: 720px;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.85;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-cyan);
            background: rgba(22, 242, 195, 0.12);
            border: 1px solid rgba(22, 242, 195, 0.3);
            border-radius: var(--radius-pill);
            padding: 4px 14px;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }
        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: rgba(10, 17, 40, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(44, 229, 163, 0.18);
            min-height: var(--nav-height);
            padding: 10px 0;
            transition: background 0.3s ease;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            transition: color 0.25s ease;
            flex-shrink: 0;
        }
        .navbar-brand:hover {
            color: var(--accent-cyan);
        }
        .brand-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #0A1128;
            flex-shrink: 0;
            box-shadow: 0 0 14px rgba(44, 229, 163, 0.45);
        }
        .navbar-nav {
            display: flex;
            align-items: center;
            gap: 22px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .navbar-nav .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-body);
            padding: 8px 2px;
            position: relative;
            transition: color 0.2s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--accent-cyan);
        }
        .navbar-nav .nav-link.active::after,
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            color: #0A1128;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 0 16px rgba(44, 229, 163, 0.35);
            border: none;
            cursor: pointer;
        }
        .nav-cta:hover {
            color: #0A1128;
            background: linear-gradient(135deg, #2CE5A3 0%, #16F2C3 100%);
            box-shadow: 0 0 24px rgba(44, 229, 163, 0.5);
            transform: translateY(-1px);
        }
        .nav-cta:active {
            transform: translateY(1px);
        }
        .navbar-toggler {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            cursor: pointer;
            transition: border-color 0.25s ease;
        }
        .navbar-toggler:hover {
            border-color: var(--accent-cyan);
        }
        .navbar-toggler-icon {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            position: relative;
            border-radius: 2px;
        }
        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after {
            content: '';
            position: absolute;
            left: 0;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: transform 0.3s ease;
        }
        .navbar-toggler-icon::before {
            top: -6px;
        }
        .navbar-toggler-icon::after {
            bottom: -6px;
        }
        .mobile-menu-wrapper {
            display: flex;
            align-items: center;
            gap: 22px;
        }
        /* 分类页Hero区 */
        .category-hero {
            padding: 60px 0 50px;
            background: linear-gradient(160deg, #0A1128 0%, #0D1B2A 45%, #0A1128 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            overflow: hidden;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(44, 229, 163, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            bottom: -140px;
            left: -100px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(22, 242, 195, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .category-hero .container {
            position: relative;
            z-index: 1;
        }
        .breadcrumb-text {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb-text a {
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .breadcrumb-text a:hover {
            color: var(--accent-cyan);
        }
        .breadcrumb-text i {
            font-size: 11px;
            color: var(--text-muted);
        }
        .category-hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 28px;
            align-items: stretch;
        }
        .category-hero-main {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .category-hero-main h1 {
            font-size: clamp(28px, 3.5vw, 44px);
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            margin-bottom: 14px;
            line-height: 1.3;
        }
        .category-hero-main .cat-subtitle {
            font-size: 16px;
            color: var(--text-body);
            line-height: 1.85;
            margin-bottom: 22px;
            max-width: 560px;
        }
        .category-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn-primary-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            color: #0A1128;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 26px;
            border-radius: var(--radius-pill);
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 16px rgba(44, 229, 163, 0.35);
            cursor: pointer;
        }
        .btn-primary-cta:hover {
            color: #0A1128;
            background: linear-gradient(135deg, #2CE5A3 0%, #16F2C3 100%);
            box-shadow: 0 0 24px rgba(44, 229, 163, 0.5);
            transform: translateY(-1px);
        }
        .btn-primary-cta:active {
            transform: translateY(1px);
        }
        .btn-outline-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid var(--accent-green);
            color: var(--accent-cyan);
            font-size: 15px;
            font-weight: 500;
            padding: 12px 24px;
            border-radius: var(--radius-pill);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .btn-outline-cta:hover {
            background: rgba(44, 229, 163, 0.12);
            border-color: var(--accent-cyan);
            color: var(--accent-green);
        }
        .category-hero-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .side-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            box-shadow: var(--shadow-card);
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .side-card .side-label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.04em;
            margin-bottom: 8px;
        }
        .side-card .side-value {
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-cyan);
            line-height: 1.3;
        }
        .side-card .side-note {
            font-size: 13px;
            color: var(--text-body);
            margin-top: 6px;
        }
        .side-card-top {
            transform: translateY(0);
        }
        .side-card-bottom {
            transform: translateY(0);
        }
        /* 比分卡片 */
        .score-card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .score-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 18px;
            cursor: default;
        }
        .score-card:hover {
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(44, 229, 163, 0.35);
            transform: translateY(-2px);
        }
        .score-card .match-league {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.03em;
            margin-bottom: 6px;
        }
        .score-card .match-teams {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .score-card .team-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 15px;
            color: var(--text-primary);
            font-weight: 500;
        }
        .score-card .team-row .team-name {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .score-card .team-row .team-score {
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-cyan);
            min-width: 36px;
            text-align: center;
        }
        .score-card .match-status-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        .status-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .status-live {
            background: rgba(44, 229, 163, 0.15);
            color: var(--accent-green);
            border: 1px solid rgba(44, 229, 163, 0.35);
        }
        .status-live .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.2s ease-in-out infinite;
            display: inline-block;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(44, 229, 163, 0.7); }
            50% { opacity: 0.5; box-shadow: 0 0 16px rgba(44, 229, 163, 0.9); }
        }
        .status-finished {
            background: rgba(200, 210, 232, 0.12);
            color: var(--text-body);
            border: 1px solid rgba(200, 210, 232, 0.25);
        }
        .status-upcoming {
            background: rgba(255, 181, 71, 0.12);
            color: var(--accent-orange);
            border: 1px solid rgba(255, 181, 71, 0.3);
        }
        .status-delayed {
            background: rgba(245, 230, 99, 0.1);
            color: var(--accent-yellow);
            border: 1px solid rgba(245, 230, 99, 0.3);
        }
        .match-time {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
        }
        /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-cloud .tag-item {
            display: inline-flex;
            align-items: center;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-body);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-pill);
            padding: 6px 16px;
            transition: all 0.25s ease;
        }
        .tag-cloud .tag-item:hover {
            background: rgba(44, 229, 163, 0.1);
            border-color: rgba(44, 229, 163, 0.35);
            color: var(--accent-cyan);
            transform: translateY(-1px);
        }
        /* 数据更新说明 */
        .update-notice {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            justify-content: space-between;
        }
        .update-notice .notice-text {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.75;
            flex: 1;
            min-width: 280px;
        }
        .update-notice .notice-time {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        /* 焦点赛事 */
        .focus-scroll {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 8px;
        }
        .focus-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            min-width: 0;
        }
        .focus-card:hover {
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(44, 229, 163, 0.35);
            transform: translateY(-3px);
        }
        .focus-card .focus-img {
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        .focus-card .focus-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .focus-card:hover .focus-img img {
            transform: scale(1.04);
        }
        .focus-card .focus-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(10, 17, 40, 0.1) 0%, rgba(10, 17, 40, 0.6) 100%);
            pointer-events: none;
        }
        .focus-card .focus-body {
            padding: 16px 18px;
        }
        .focus-card .focus-teams {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .focus-card .focus-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            margin-top: 8px;
        }
        .focus-card .focus-score {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-cyan);
        }
        /* FAQ */
        .faq-accordion .faq-item {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-accordion .faq-item.open {
            border-color: rgba(44, 229, 163, 0.45);
            box-shadow: var(--shadow-glow);
        }
        .faq-accordion .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
            transition: color 0.25s ease;
            user-select: none;
        }
        .faq-accordion .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-accordion .faq-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(44, 229, 163, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--accent-cyan);
            font-size: 13px;
            transition: transform 0.3s ease;
        }
        .faq-accordion .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }
        .faq-accordion .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            color: var(--text-body);
            font-size: 14px;
            line-height: 1.85;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        .faq-accordion .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px 56px;
        }
        /* 收口CTA */
        .closing-cta {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }
        .closing-cta h2 {
            font-size: clamp(20px, 2.5vw, 30px);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .closing-cta p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 20px;
        }
        /* 页脚 */
        .footer {
            background: #080D1E;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 48px 0 28px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .footer-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.75;
        }
        .footer h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            font-size: 13px;
            color: var(--text-body);
            transition: color 0.25s ease;
        }
        .footer-links a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color 0.25s ease;
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        /* 响应式 */
        @media (max-width: 991.98px) {
            .navbar-toggler {
                display: block;
            }
            .mobile-menu-wrapper {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 17, 40, 0.95);
                backdrop-filter: blur(14px);
                -webkit-backdrop-filter: blur(14px);
                border-bottom: 1px solid rgba(44, 229, 163, 0.18);
                flex-direction: column;
                align-items: stretch;
                padding: 16px 20px 20px;
                gap: 4px;
                z-index: 1040;
            }
            .mobile-menu-wrapper.show {
                display: flex;
            }
            .navbar-nav {
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
            }
            .navbar-nav .nav-link {
                padding: 10px 0;
                font-size: 15px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .navbar-nav .nav-link::after {
                display: none;
            }
            .navbar-nav .nav-cta {
                margin-top: 12px;
                justify-content: center;
            }
            .navbar .nav-cta.d-none.d-lg-inline-flex {
                display: none !important;
            }
            .category-hero-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .category-hero-side {
                flex-direction: column;
            }
            .score-card-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .focus-scroll {
                grid-template-columns: repeat(3, 320px);
                overflow-x: auto;
                gap: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 767.98px) {
            :root {
                --spacing-section: 40px;
            }
            .section {
                padding: var(--spacing-section) 0;
            }
            .category-hero {
                padding: 40px 0 36px;
            }
            .category-hero-main {
                padding: 24px 20px;
            }
            .category-hero-main h1 {
                font-size: clamp(24px, 5vw, 32px);
            }
            .score-card {
                padding: 16px 18px;
                gap: 12px;
                flex-direction: column;
                align-items: stretch;
            }
            .score-card .team-row .team-score {
                font-size: 18px;
            }
            .focus-scroll {
                grid-template-columns: repeat(3, 280px);
                gap: 12px;
            }
            .focus-card .focus-img {
                height: 130px;
            }
            .update-notice {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 18px 20px;
            }
            .closing-cta {
                padding: 24px 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }
        @media (max-width: 520px) {
            .navbar-brand {
                font-size: 18px;
            }
            .brand-icon {
                width: 32px;
                height: 32px;
                font-size: 15px;
            }
            .category-hero-main {
                padding: 18px 16px;
            }
            .category-hero-actions {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary-cta,
            .btn-outline-cta {
                width: 100%;
                justify-content: center;
            }
            .score-card .team-row {
                font-size: 13px;
            }
            .score-card .team-row .team-score {
                font-size: 16px;
            }
            .faq-accordion .faq-question {
                font-size: 14px;
                padding: 12px 16px;
            }
            .faq-accordion .faq-item.open .faq-answer {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #0A1128;
            --bg-secondary: #0D1B2A;
            --bg-card: rgba(255, 255, 255, 0.06);
            --bg-card-hover: rgba(255, 255, 255, 0.10);
            --border-card: rgba(255, 255, 255, 0.18);
            --border-glow: rgba(44, 229, 163, 0.35);
            --text-primary: #F2F6FF;
            --text-body: #C8D2E8;
            --text-muted: #7E8BA8;
            --accent-cyan: #16F2C3;
            --accent-green: #2CE5A3;
            --accent-orange: #FFB547;
            --accent-yellow: #F5E663;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 16px rgba(44, 229, 163, 0.35);
            --shadow-glow-strong: 0 0 24px rgba(44, 229, 163, 0.5);
            --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --spacing-section: 72px;
            --spacing-section-mobile: 40px;
            --container-max: 1200px;
            --nav-height: 68px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-primary);
            color: var(--text-body);
            line-height: 1.8;
            font-size: 15px;
            letter-spacing: 0.01em;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            padding-top: var(--nav-height);
        }

        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--accent-green);
            text-decoration: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-green);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .text-muted {
            color: var(--text-muted) !important;
        }
        .container {
            max-width: var(--container-max);
            padding-left: 20px;
            padding-right: 20px;
        }
        .section {
            padding: var(--spacing-section) 0;
            position: relative;
        }
        .section-alt {
            background-color: rgba(13, 27, 42, 0.6);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-header h2 {
            margin-bottom: 12px;
        }
        .section-header .section-desc {
            max-width: 720px;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.85;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-cyan);
            background: rgba(22, 242, 195, 0.12);
            border: 1px solid rgba(22, 242, 195, 0.3);
            border-radius: var(--radius-pill);
            padding: 4px 14px;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }

        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: rgba(10, 17, 40, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(44, 229, 163, 0.18);
            min-height: var(--nav-height);
            padding: 10px 0;
            transition: background 0.3s ease;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            transition: color 0.25s ease;
        }
        .navbar-brand:hover {
            color: var(--accent-cyan);
        }
        .brand-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #0A1128;
            flex-shrink: 0;
            box-shadow: 0 0 14px rgba(44, 229, 163, 0.45);
        }
        .navbar-nav {
            display: flex;
            align-items: center;
            gap: 22px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .navbar-nav .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-body);
            padding: 8px 2px;
            position: relative;
            transition: color 0.2s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--accent-cyan);
        }
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            color: #0A1128;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 0 16px rgba(44, 229, 163, 0.35);
            border: none;
        }
        .nav-cta:hover {
            color: #0A1128;
            box-shadow: 0 0 24px rgba(44, 229, 163, 0.5);
            transform: translateY(-1px);
        }
        .navbar-toggler {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            padding: 6px 10px;
            color: var(--text-primary);
            font-size: 18px;
            cursor: pointer;
        }
        .navbar-toggler-icon {
            display: inline-block;
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            position: relative;
            transition: all 0.3s ease;
        }
        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after {
            content: '';
            position: absolute;
            left: 0;
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .navbar-toggler-icon::before {
            top: -6px;
        }
        .navbar-toggler-icon::after {
            top: 6px;
        }
        .mobile-menu-wrapper {
            display: none;
            position: absolute;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: rgba(10, 17, 40, 0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(44, 229, 163, 0.2);
            padding: 16px 20px;
            z-index: 1029;
        }
        .mobile-menu-wrapper .navbar-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }
        .mobile-menu-wrapper .nav-link {
            padding: 10px 0;
            font-size: 15px;
        }
        .mobile-menu-wrapper .nav-cta {
            margin-top: 10px;
            display: inline-flex;
        }

        /* 分类页H1区 - 深色横幅 */
        .cat-banner {
            background: linear-gradient(160deg, #0D1B2A 0%, #0A1128 55%, rgba(22, 242, 195, 0.08) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 56px 0 48px;
            position: relative;
            overflow: hidden;
        }
        .cat-banner::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(22, 242, 195, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .cat-banner h1 {
            font-size: clamp(26px, 3.5vw, 40px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.02em;
            position: relative;
            z-index: 1;
        }
        .cat-banner .cat-banner-sub {
            font-size: 16px;
            color: var(--text-body);
            max-width: 680px;
            line-height: 1.85;
            position: relative;
            z-index: 1;
        }
        .cat-banner .cat-banner-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }
        .cat-banner .cat-banner-meta span {
            font-size: 13px;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .cat-banner .cat-banner-meta i {
            color: var(--accent-cyan);
            font-size: 14px;
        }

        /* 数据速览指标卡 */
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: -28px;
            position: relative;
            z-index: 2;
        }
        .stat-card {
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--border-glow);
        }
        .stat-card .stat-number {
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--accent-cyan);
            line-height: 1.3;
            letter-spacing: 0.01em;
        }
        .stat-card .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* 数据表格 */
        .data-table-wrapper {
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .data-table-wrapper .table-header-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding: 18px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
        }
        .data-table-wrapper .table-header-bar .table-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .data-table-wrapper .table-header-bar .table-title i {
            color: var(--accent-cyan);
        }
        .data-table-wrapper .table-header-bar .table-update {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .data-table-wrapper .table-header-bar .table-update i {
            color: var(--accent-green);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
            line-height: 1.7;
        }
        .data-table thead th {
            background: rgba(13, 27, 42, 0.85);
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: 13px;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .data-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--text-body);
            vertical-align: middle;
            white-space: nowrap;
        }
        .data-table tbody tr {
            transition: background 0.2s ease;
        }
        .data-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .data-table tbody tr:last-child td {
            border-bottom: none;
        }
        .data-table .team-cell {
            font-weight: 500;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .data-table .team-cell .vs-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(22, 242, 195, 0.12);
            color: var(--accent-cyan);
            font-size: 11px;
            font-weight: 600;
            flex-shrink: 0;
        }
        .data-table .score-cell {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 14px;
            letter-spacing: 0.02em;
        }
        .data-table .half-score {
            color: var(--text-muted);
            font-size: 12px;
        }
        .status-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 12px;
            border-radius: var(--radius-pill);
            white-space: nowrap;
        }
        .status-badge.status-done {
            background: rgba(22, 242, 195, 0.12);
            color: var(--accent-cyan);
            border: 1px solid rgba(22, 242, 195, 0.3);
        }
        .status-badge.status-live {
            background: rgba(245, 230, 99, 0.1);
            color: var(--accent-yellow);
            border: 1px solid rgba(245, 230, 99, 0.35);
        }
        .status-badge.status-scheduled {
            background: rgba(126, 139, 168, 0.15);
            color: var(--text-muted);
            border: 1px solid rgba(126, 139, 168, 0.3);
        }

        /* 联赛覆盖板块 */
        .league-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .league-card {
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .league-card:hover {
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--border-glow);
        }
        .league-card .league-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(22, 242, 195, 0.15), rgba(44, 229, 163, 0.08));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent-cyan);
            flex-shrink: 0;
        }
        .league-card h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }
        .league-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.8;
        }
        .league-card .league-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }
        .league-card .league-meta span {
            font-size: 12px;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.06);
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* 数据更新板块 */
        .update-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-card);
        }
        .update-panel .update-img {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .update-panel .update-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 16 / 10;
        }
        .update-panel .update-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .update-panel .update-content p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.85;
            margin-bottom: 14px;
        }
        .update-panel .update-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .update-panel .update-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
        }
        .update-panel .update-list li i {
            color: var(--accent-green);
            margin-top: 4px;
            flex-shrink: 0;
        }

        /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag-cloud .tag-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-body);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-pill);
            padding: 8px 18px;
            transition: all 0.25s ease;
            cursor: default;
        }
        .tag-cloud .tag-item:hover {
            background: rgba(22, 242, 195, 0.1);
            border-color: var(--border-glow);
            color: var(--accent-cyan);
            box-shadow: 0 0 12px rgba(44, 229, 163, 0.15);
        }
        .tag-cloud .tag-item i {
            font-size: 12px;
            color: var(--accent-green);
        }

        /* 数据要点卡片组 */
        .point-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .point-card {
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 22px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .point-card:hover {
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--border-glow);
        }
        .point-card .point-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(22, 242, 195, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--accent-cyan);
            flex-shrink: 0;
        }
        .point-card h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }
        .point-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.75;
        }

        /* CTA尾段 */
        .cta-final {
            background: linear-gradient(160deg, rgba(13, 27, 42, 0.9) 0%, rgba(10, 17, 40, 0.95) 100%);
            border: 1px solid rgba(44, 229, 163, 0.2);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }
        .cta-final h2 {
            font-size: clamp(20px, 2.5vw, 28px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .cta-final p {
            font-size: 15px;
            color: var(--text-body);
            max-width: 560px;
            margin: 0 auto 24px;
            line-height: 1.8;
        }
        .btn-primary-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            color: #0A1128;
            font-weight: 600;
            font-size: 15px;
            padding: 14px 32px;
            border-radius: var(--radius-pill);
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 0 20px rgba(44, 229, 163, 0.35);
            text-decoration: none;
        }
        .btn-primary-cta:hover {
            color: #0A1128;
            box-shadow: 0 0 28px rgba(44, 229, 163, 0.55);
            transform: translateY(-2px);
        }
        .btn-primary-cta:active {
            transform: translateY(0);
        }
        .btn-secondary-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--accent-cyan);
            font-weight: 500;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: var(--radius-pill);
            border: 1px solid var(--accent-green);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .btn-secondary-cta:hover {
            background: rgba(44, 229, 163, 0.12);
            color: var(--accent-cyan);
            border-color: var(--accent-green);
            box-shadow: 0 0 16px rgba(44, 229, 163, 0.2);
        }

        /* 页脚 */
        .footer {
            background: #080D1E;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 56px 0 24px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .footer-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 320px;
        }
        .footer h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-links a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 12px;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* 响应式 */
        @media (max-width: 991px) {
            .navbar-nav {
                gap: 14px;
            }
            .navbar-nav .nav-link {
                font-size: 13px;
            }
            .nav-cta {
                padding: 8px 16px;
                font-size: 13px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .point-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .update-panel {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 767px) {
            :root {
                --spacing-section: 40px;
                --nav-height: 60px;
            }
            body {
                font-size: 14px;
            }
            .navbar {
                padding: 8px 0;
            }
            .navbar-brand {
                font-size: 18px;
            }
            .brand-icon {
                width: 34px;
                height: 34px;
                font-size: 16px;
            }
            .navbar-toggler {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                gap: 5px;
                background: transparent;
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 6px;
                padding: 8px 10px;
                cursor: pointer;
            }
            .navbar-toggler .navbar-toggler-icon,
            .navbar-toggler .navbar-toggler-icon::before,
            .navbar-toggler .navbar-toggler-icon::after {
                display: block;
                content: '';
                width: 20px;
                height: 2px;
                background: var(--text-primary);
                border-radius: 2px;
                position: relative;
            }
            .navbar-toggler .navbar-toggler-icon::before {
                position: absolute;
                top: -6px;
                left: 0;
            }
            .navbar-toggler .navbar-toggler-icon::after {
                position: absolute;
                top: 6px;
                left: 0;
            }
            .nav-cta.d-none.d-lg-inline-flex {
                display: none !important;
            }
            .mobile-menu-wrapper {
                display: block;
                top: var(--nav-height);
            }
            .mobile-menu-wrapper.hidden {
                display: none;
            }
            .cat-banner {
                padding: 40px 0 36px;
            }
            .cat-banner h1 {
                font-size: 24px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                margin-top: -20px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-card .stat-number {
                font-size: 22px;
            }
            .league-grid {
                grid-template-columns: 1fr;
            }
            .point-grid {
                grid-template-columns: 1fr;
            }
            .update-panel {
                padding: 20px;
            }
            .data-table-wrapper .table-header-bar {
                padding: 14px 16px;
                flex-direction: column;
                align-items: flex-start;
            }
            .data-table thead th,
            .data-table tbody td {
                padding: 10px 12px;
                font-size: 12px;
            }
            .data-table {
                font-size: 12px;
            }
            .data-table-wrapper {
                overflow-x: auto;
            }
            .data-table {
                min-width: 680px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-final {
                padding: 28px 20px;
            }
        }

        @media (max-width: 520px) {
            .stat-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .cat-banner .cat-banner-meta {
                gap: 10px;
                flex-direction: column;
                align-items: flex-start;
            }
            .btn-primary-cta,
            .btn-secondary-cta {
                display: flex;
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 14px;
            }
            .cta-final .d-flex {
                flex-direction: column;
                gap: 12px;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #0A1128;
            --bg-secondary: #0D1B2A;
            --bg-card: rgba(255, 255, 255, 0.06);
            --bg-card-hover: rgba(255, 255, 255, 0.10);
            --border-card: rgba(255, 255, 255, 0.18);
            --border-glow: rgba(44, 229, 163, 0.35);
            --text-primary: #F2F6FF;
            --text-body: #C8D2E8;
            --text-muted: #7E8BA8;
            --accent-cyan: #16F2C3;
            --accent-green: #2CE5A3;
            --accent-orange: #FFB547;
            --accent-yellow: #F5E663;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 16px rgba(44, 229, 163, 0.35);
            --shadow-glow-strong: 0 0 24px rgba(44, 229, 163, 0.5);
            --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --spacing-section: 72px;
            --spacing-section-mobile: 40px;
            --container-max: 1200px;
            --nav-height: 68px;
        }
        :root {
            --bg-primary: #0A1128;
            --bg-secondary: #0D1B2A;
            --bg-card: rgba(255, 255, 255, 0.06);
            --bg-card-hover: rgba(255, 255, 255, 0.10);
            --border-card: rgba(255, 255, 255, 0.18);
            --border-glow: rgba(44, 229, 163, 0.35);
            --text-primary: #F2F6FF;
            --text-body: #C8D2E8;
            --text-muted: #7E8BA8;
            --accent-cyan: #16F2C3;
            --accent-green: #2CE5A3;
            --accent-orange: #FFB547;
            --accent-yellow: #F5E663;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 16px rgba(44, 229, 163, 0.35);
            --shadow-glow-strong: 0 0 24px rgba(44, 229, 163, 0.5);
            --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --spacing-section: 72px;
            --spacing-section-mobile: 40px;
            --container-max: 1200px;
            --nav-height: 68px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-family);
            background-color: var(--bg-primary);
            color: var(--text-body);
            line-height: 1.8;
            font-size: 15px;
            letter-spacing: 0.01em;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            padding-top: var(--nav-height);
        }
        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--accent-green);
            text-decoration: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-green);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .text-muted {
            color: var(--text-muted) !important;
        }
        .container {
            max-width: var(--container-max);
            padding-left: 20px;
            padding-right: 20px;
        }
        .section {
            padding: var(--spacing-section) 0;
            position: relative;
        }
        .section-alt {
            background-color: rgba(13, 27, 42, 0.6);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-header h2 {
            margin-bottom: 12px;
        }
        .section-header .section-desc {
            max-width: 720px;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.85;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-cyan);
            background: rgba(22, 242, 195, 0.12);
            border: 1px solid rgba(22, 242, 195, 0.3);
            border-radius: var(--radius-pill);
            padding: 4px 14px;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--text-primary);
            font-weight: 700;
            line-height: 1.35;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
        }
        h2 {
            font-size: clamp(20px, 2.5vw, 32px);
            font-weight: 600;
        }
        h3 {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-primary);
        }
        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: rgba(10, 17, 40, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(44, 229, 163, 0.18);
            min-height: var(--nav-height);
            padding: 10px 0;
            transition: background 0.3s ease;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            transition: color 0.25s ease;
        }
        .navbar-brand:hover {
            color: var(--accent-cyan);
        }
        .brand-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #0A1128;
            flex-shrink: 0;
            box-shadow: 0 0 14px rgba(44, 229, 163, 0.45);
        }
        .navbar-nav {
            display: flex;
            align-items: center;
            gap: 22px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .navbar-nav .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-body);
            padding: 8px 2px;
            position: relative;
            transition: color 0.2s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--accent-cyan);
        }
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            color: #0A1128;
            font-size: 14px;
            font-weight: 700;
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.02em;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 16px rgba(44, 229, 163, 0.35);
            white-space: nowrap;
        }
        .nav-cta:hover {
            color: #0A1128;
            background: linear-gradient(135deg, #2CE5A3 0%, #16F2C3 100%);
            box-shadow: 0 0 24px rgba(44, 229, 163, 0.5);
            transform: translateY(-1px);
        }
        .navbar-toggler {
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 6px 10px;
            color: var(--text-primary);
        }
        .navbar-toggler-icon {
            background-image: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            font-size: 18px;
        }
        .navbar-toggler-icon::before {
            content: '\f0c9';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }
        .mobile-menu-wrapper {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(10, 17, 40, 0.98);
            border-bottom: 1px solid rgba(44, 229, 163, 0.2);
            padding: 16px 20px;
            z-index: 1031;
        }
        .mobile-menu-wrapper.open {
            display: block;
        }
        .mobile-menu-wrapper .navbar-nav {
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
        }
        .mobile-menu-wrapper .nav-cta {
            display: inline-flex;
            margin-top: 6px;
        }
        @media (max-width: 991.98px) {
            .navbar-nav {
                display: none;
            }
            .navbar-toggler {
                display: inline-flex;
            }
            .mobile-menu-wrapper {
                display: none;
            }
        }
        @media (min-width: 992px) {
            .navbar-toggler {
                display: none;
            }
            .mobile-menu-wrapper {
                display: none !important;
            }
        }
        /* 分类页H1区 */
        .category-hero {
            position: relative;
            padding: 56px 0 44px;
            background: linear-gradient(160deg, #0D1B2A 0%, #0A1128 60%, #0A0F20 100%);
            border-bottom: 1px solid rgba(44, 229, 163, 0.15);
            overflow: hidden;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(22, 242, 195, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .category-hero h1 {
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .category-hero .subtitle {
            font-size: 16px;
            color: var(--text-body);
            max-width: 720px;
            line-height: 1.85;
            position: relative;
            z-index: 1;
        }
        .category-hero .breadcrumb {
            margin-bottom: 16px;
            background: transparent;
            padding: 0;
            font-size: 13px;
            position: relative;
            z-index: 1;
        }
        .category-hero .breadcrumb-item a {
            color: var(--text-muted);
        }
        .category-hero .breadcrumb-item a:hover {
            color: var(--accent-cyan);
        }
        .category-hero .breadcrumb-item.active {
            color: var(--accent-cyan);
        }
        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.35);
        }
        /* 指标速览卡 */
        .metric-card {
            background: var(--bg-card);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            min-height: 100%;
        }
        .metric-card:hover {
            box-shadow: var(--shadow-card-hover);
            background: var(--bg-card-hover);
            transform: translateY(-2px);
        }
        .metric-card .metric-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-md);
            background: rgba(22, 242, 195, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent-cyan);
            margin-bottom: 14px;
        }
        .metric-card .metric-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
            margin-bottom: 4px;
        }
        .metric-card .metric-label {
            font-size: 13px;
            color: var(--text-muted);
        }
        /* 盘路卡片列表 */
        .panlu-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .panlu-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }
        .panlu-card:hover {
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(44, 229, 163, 0.4);
            transform: translateY(-2px);
        }
        .panlu-card .match-info {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .panlu-card .match-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .panlu-card .tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.02em;
        }
        .tag-let {
            background: rgba(22, 242, 195, 0.12);
            color: var(--accent-cyan);
            border: 1px solid rgba(22, 242, 195, 0.3);
        }
        .tag-ou {
            background: rgba(255, 183, 71, 0.12);
            color: var(--accent-orange);
            border: 1px solid rgba(255, 183, 71, 0.3);
        }
        .tag-up {
            background: rgba(255, 107, 107, 0.1);
            color: #ff6b6b;
            border: 1px solid rgba(255, 107, 107, 0.3);
        }
        .tag-down {
            background: rgba(44, 229, 163, 0.1);
            color: var(--accent-green);
            border: 1px solid rgba(44, 229, 163, 0.3);
        }
        .panlu-card .match-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .panlu-card .match-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .panlu-card .score-line {
            font-size: 14px;
            color: var(--text-body);
            margin-bottom: 10px;
        }
        .panlu-card .score-line strong {
            color: var(--accent-cyan);
            font-weight: 700;
            font-size: 16px;
        }
        /* 简易走势条 */
        .trend-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
        }
        .trend-bar .trend-track {
            flex: 1;
            height: 8px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-pill);
            position: relative;
            overflow: hidden;
        }
        .trend-bar .trend-track .trend-fill {
            height: 100%;
            border-radius: var(--radius-pill);
            background: linear-gradient(90deg, #16F2C3 0%, #2CE5A3 50%, #FFB547 100%);
            transition: width 0.6s ease;
        }
        .trend-bar .trend-label {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
        }
        /* 走势示意大图 */
        .chart-container {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
        }
        .chart-bars {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            height: 180px;
            padding-top: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }
        .chart-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            min-height: 6px;
            transition: height 0.6s ease;
        }
        .chart-bar.mid {
            background: rgba(22, 242, 195, 0.25);
        }
        .chart-bar.high {
            background: rgba(22, 242, 195, 0.65);
            box-shadow: 0 0 12px rgba(22, 242, 195, 0.35);
        }
        .chart-bar.orange {
            background: rgba(255, 183, 71, 0.6);
            box-shadow: 0 0 12px rgba(255, 183, 71, 0.3);
        }
        .chart-legend {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 12px;
        }
        .chart-legend span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .chart-legend .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }
        .dot-cyan {
            background: var(--accent-cyan);
        }
        .dot-orange {
            background: var(--accent-orange);
        }
        /* 关键节点时间线 */
        .timeline {
            position: relative;
            padding-left: 28px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 4px;
            bottom: 4px;
            width: 2px;
            background: rgba(22, 242, 195, 0.25);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            padding-bottom: 22px;
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 8px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px rgba(22, 242, 195, 0.4);
        }
        .timeline-item .node-time {
            font-size: 13px;
            color: var(--accent-cyan);
            font-weight: 600;
        }
        .timeline-item .node-text {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
        }
        /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-cloud .cloud-tag {
            font-size: 13px;
            font-weight: 500;
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: var(--text-body);
            transition: all 0.3s ease;
            cursor: default;
        }
        .tag-cloud .cloud-tag:hover {
            background: rgba(22, 242, 195, 0.12);
            border-color: rgba(22, 242, 195, 0.4);
            color: var(--accent-cyan);
        }
        /* 数据说明卡 */
        .info-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-card);
        }
        .info-card h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--accent-cyan);
        }
        .info-card p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 0;
        }
        /* FAQ */
        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        .faq-item .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            padding: 16px 20px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
            text-align: left;
            transition: all 0.3s ease;
        }
        .faq-item .faq-question:hover,
        .faq-item .faq-question[aria-expanded="true"] {
            color: var(--accent-cyan);
        }
        .faq-item .faq-question .icon {
            flex-shrink: 0;
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        .faq-item .faq-question[aria-expanded="true"] .icon {
            transform: rotate(180deg);
        }
        .faq-item .faq-answer {
            padding: 0 20px 16px;
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.8;
            display: none;
        }
        .faq-item .faq-answer.open {
            display: block;
        }
        .faq-item.active {
            border-color: rgba(44, 229, 163, 0.4);
            box-shadow: 0 0 16px rgba(44, 229, 163, 0.15);
        }
        /* 收口CTA */
        .cta-closing {
            background: linear-gradient(135deg, rgba(22, 242, 195, 0.08) 0%, rgba(44, 229, 163, 0.04) 100%);
            border: 1px solid rgba(22, 242, 195, 0.25);
            border-radius: var(--radius-lg);
            padding: 40px 28px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }
        .cta-closing h2 {
            margin-bottom: 12px;
        }
        .cta-closing p {
            max-width: 640px;
            margin: 0 auto 20px;
            color: var(--text-body);
        }
        /* 按钮 */
        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
            color: #0A1128;
            font-size: 15px;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: var(--radius-pill);
            border: none;
            letter-spacing: 0.02em;
            box-shadow: var(--shadow-glow);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .btn-primary-custom:hover {
            color: #0A1128;
            background: linear-gradient(135deg, #2CE5A3 0%, #16F2C3 100%);
            box-shadow: var(--shadow-glow-strong);
            transform: translateY(-2px);
        }
        .btn-secondary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--accent-cyan);
            font-size: 15px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-pill);
            border: 1px solid var(--accent-green);
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .btn-secondary-custom:hover {
            background: rgba(44, 229, 163, 0.12);
            color: var(--accent-cyan);
            box-shadow: 0 0 12px rgba(44, 229, 163, 0.25);
        }
        /* 图片卡片 */
        .image-card {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            aspect-ratio: 16/9;
        }
        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .image-card:hover img {
            transform: scale(1.03);
        }
        .image-card .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px 20px 12px;
            background: linear-gradient(0deg, rgba(10, 17, 40, 0.85) 0%, transparent 100%);
        }
        .image-card .image-overlay span {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }
        /* 页脚 */
        .footer {
            background: #080D1E;
            padding: 56px 0 28px;
            border-top: 1px solid rgba(44, 229, 163, 0.15);
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-brand {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .footer h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--accent-cyan);
            margin-bottom: 14px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            font-size: 14px;
            color: var(--text-body);
            transition: color 0.25s ease;
        }
        .footer-links a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        /* 响应式 */
        @media (max-width: 991.98px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .section {
                padding: 56px 0;
            }
            .category-hero {
                padding: 40px 0 32px;
            }
        }
        @media (max-width: 767.98px) {
            :root {
                --spacing-section: 40px;
            }
            .section {
                padding: 40px 0;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .category-hero {
                padding: 32px 0 28px;
            }
            .category-hero h1 {
                font-size: 24px;
            }
            .panlu-card {
                padding: 16px 16px;
            }
            .chart-bars {
                height: 120px;
                gap: 6px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 520px) {
            .panlu-card .match-info,
            .panlu-card .match-meta {
                gap: 8px;
            }
            .nav-cta {
                padding: 8px 16px;
                font-size: 13px;
            }
        }

/* roulang page: category4 */
:root {
        --bg-primary: #0A1128;
        --bg-secondary: #0D1B2A;
        --bg-card: rgba(255, 255, 255, 0.06);
        --bg-card-hover: rgba(255, 255, 255, 0.10);
        --border-card: rgba(255, 255, 255, 0.18);
        --border-glow: rgba(44, 229, 163, 0.35);
        --text-primary: #F2F6FF;
        --text-body: #C8D2E8;
        --text-muted: #7E8BA8;
        --accent-cyan: #16F2C3;
        --accent-green: #2CE5A3;
        --accent-orange: #FFB547;
        --accent-yellow: #F5E663;
        --radius-lg: 16px;
        --radius-md: 12px;
        --radius-sm: 8px;
        --radius-pill: 50px;
        --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
        --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
        --shadow-glow: 0 0 16px rgba(44, 229, 163, 0.35);
        --shadow-glow-strong: 0 0 24px rgba(44, 229, 163, 0.5);
        --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        --spacing-section: 72px;
        --spacing-section-mobile: 40px;
        --container-max: 1200px;
        --nav-height: 68px;
    }
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }
    body {
        font-family: var(--font-family);
        background-color: var(--bg-primary);
        color: var(--text-body);
        line-height: 1.8;
        font-size: 15px;
        letter-spacing: 0.01em;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        padding-top: var(--nav-height);
    }
    a {
        color: var(--accent-cyan);
        text-decoration: none;
        transition: color 0.25s ease;
    }
    a:hover {
        color: var(--accent-green);
        text-decoration: none;
    }
    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
        outline: 2px solid var(--accent-green);
        outline-offset: 2px;
        border-radius: 4px;
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    .text-muted {
        color: var(--text-muted) !important;
    }
    .container {
        max-width: var(--container-max);
        padding-left: 20px;
        padding-right: 20px;
    }
    .section {
        padding: var(--spacing-section) 0;
        position: relative;
    }
    .section-alt {
        background-color: rgba(13, 27, 42, 0.6);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-header h2 {
        margin-bottom: 12px;
    }
    .section-header .section-desc {
        max-width: 720px;
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.85;
    }
    .section-tag {
        display: inline-block;
        font-size: 13px;
        font-weight: 500;
        color: var(--accent-cyan);
        background: rgba(22, 242, 195, 0.12);
        border: 1px solid rgba(22, 242, 195, 0.3);
        border-radius: var(--radius-pill);
        padding: 4px 14px;
        margin-bottom: 10px;
        letter-spacing: 0.02em;
    }
    /* 导航栏 */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        background: rgba(10, 17, 40, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(44, 229, 163, 0.18);
        min-height: var(--nav-height);
        padding: 10px 0;
        transition: background 0.3s ease;
    }
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 16px;
    }
    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: 0.02em;
        transition: color 0.25s ease;
        white-space: nowrap;
    }
    .navbar-brand:hover {
        color: var(--accent-cyan);
    }
    .brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #0A1128;
        flex-shrink: 0;
        box-shadow: 0 0 14px rgba(44, 229, 163, 0.45);
    }
    .navbar-nav {
        display: flex;
        align-items: center;
        gap: 22px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .navbar-nav .nav-link {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-body);
        padding: 8px 2px;
        position: relative;
        transition: color 0.2s ease;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-cyan);
        border-radius: 2px;
        transition: width 0.3s ease;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--accent-cyan);
    }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }
    .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #0A1128;
        background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
        border-radius: var(--radius-pill);
        padding: 10px 22px;
        border: none;
        box-shadow: var(--shadow-glow);
        transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease;
        white-space: nowrap;
    }
    .nav-cta:hover {
        color: #0A1128;
        box-shadow: var(--shadow-glow-strong);
        transform: translateY(-2px);
        background: linear-gradient(135deg, #2CE5A3 0%, #16F2C3 100%);
    }
    .nav-cta:active {
        transform: translateY(0);
        box-shadow: var(--shadow-glow);
    }
    .navbar-toggler {
        display: none;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 8px;
        width: 44px;
        height: 40px;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        font-size: 20px;
        cursor: pointer;
        flex-shrink: 0;
    }
    .navbar-toggler-icon {
        width: 18px;
        height: 2px;
        background: var(--text-primary);
        position: relative;
        display: inline-block;
        border-radius: 2px;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        left: 0;
        width: 18px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: transform 0.3s ease;
    }
    .navbar-toggler-icon::before {
        top: -6px;
    }
    .navbar-toggler-icon::after {
        top: 6px;
    }
    .mobile-menu-wrapper {
        display: flex;
        align-items: center;
    }
    /* 分类页 H1 区 */
    .category-hero {
        background: linear-gradient(135deg, #0A1128 0%, #0D1B2A 50%, #0F2A35 100%);
        border-bottom: 1px solid rgba(44, 229, 163, 0.2);
        padding: 48px 0 40px;
        position: relative;
        overflow: hidden;
    }
    .category-hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: radial-gradient(ellipse at 80% 30%, rgba(22, 242, 195, 0.12) 0%, rgba(44, 229, 163, 0.04) 40%, transparent 70%);
        pointer-events: none;
    }
    .category-hero h1 {
        font-size: clamp(26px, 3.5vw, 40px);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 12px;
        letter-spacing: 0.01em;
        position: relative;
        z-index: 1;
    }
    .category-hero .hero-desc {
        font-size: 16px;
        line-height: 1.85;
        color: var(--text-body);
        max-width: 640px;
        position: relative;
        z-index: 1;
    }
    .category-hero .hero-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
        position: relative;
        z-index: 1;
    }
    .hero-meta .meta-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--text-muted);
        background: rgba(22, 242, 195, 0.08);
        border: 1px solid rgba(22, 242, 195, 0.2);
        border-radius: var(--radius-pill);
        padding: 6px 16px;
    }
    .hero-meta .meta-item i {
        color: var(--accent-cyan);
        font-size: 13px;
    }
    /* 实时比分播报带 */
    .score-ticker-wrapper {
        overflow-x: auto;
        padding: 4px 0 16px;
        scrollbar-width: thin;
        scrollbar-color: rgba(44, 229, 163, 0.5) rgba(255, 255, 255, 0.05);
        -webkit-overflow-scrolling: touch;
    }
    .score-ticker-wrapper::-webkit-scrollbar {
        height: 6px;
    }
    .score-ticker-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }
    .score-ticker-wrapper::-webkit-scrollbar-thumb {
        background: rgba(44, 229, 163, 0.5);
        border-radius: 3px;
    }
    .score-ticker {
        display: flex;
        gap: 16px;
        min-width: max-content;
    }
    .ticker-card {
        background: var(--bg-card);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid var(--border-card);
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-lg);
        padding: 20px 24px;
        min-width: 260px;
        max-width: 300px;
        flex-shrink: 0;
        box-shadow: var(--shadow-card);
        transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
    }
    .ticker-card:hover {
        box-shadow: var(--shadow-card-hover);
        transform: translateY(-2px);
        border-color: var(--border-glow);
    }
    .ticker-card .status-tag {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: var(--radius-pill);
        margin-bottom: 10px;
        letter-spacing: 0.03em;
    }
    .status-tag.live {
        background: rgba(22, 242, 195, 0.15);
        color: var(--accent-cyan);
        border: 1px solid rgba(22, 242, 195, 0.4);
    }
    .status-tag.half {
        background: rgba(255, 181, 71, 0.15);
        color: var(--accent-orange);
        border: 1px solid rgba(255, 181, 71, 0.4);
    }
    .status-tag.finished {
        background: rgba(255, 255, 255, 0.08);
        color: var(--text-muted);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .ticker-card .team-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 8px;
    }
    .ticker-card .team-name {
        font-size: 15px;
        font-weight: 500;
        color: var(--text-primary);
        white-space: nowrap;
    }
    .ticker-card .team-score {
        font-size: 22px;
        font-weight: 700;
        color: var(--accent-cyan);
        min-width: 36px;
        text-align: center;
        font-variant-numeric: tabular-nums;
    }
    .ticker-card .match-meta {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 8px;
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }
    /* 列表主体 */
    .match-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .match-list-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        background: var(--bg-card);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid var(--border-card);
        border-left: 3px solid var(--accent-green);
        border-radius: var(--radius-lg);
        padding: 16px 20px;
        box-shadow: var(--shadow-card);
        transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
    }
    .match-list-item:hover {
        box-shadow: var(--shadow-card-hover);
        transform: translateY(-1px);
        border-left-color: var(--accent-cyan);
    }
    .match-list-item .thumb {
        width: 60px;
        height: 60px;
        border-radius: var(--radius-md);
        overflow: hidden;
        flex-shrink: 0;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .match-list-item .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .match-list-item .match-info {
        flex: 1;
        min-width: 0;
    }
    .match-list-item .match-info .row-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 6px;
    }
    .match-list-item .match-info .match-title {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0;
        line-height: 1.5;
    }
    .match-list-item .match-info .match-desc {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.6;
    }
    .match-list-item .score-box {
        display: flex;
        gap: 16px;
        align-items: center;
        flex-shrink: 0;
        margin-top: 4px;
    }
    .score-box .score-group {
        text-align: center;
    }
    .score-box .score-label {
        font-size: 11px;
        color: var(--text-muted);
        display: block;
        margin-bottom: 2px;
        letter-spacing: 0.04em;
    }
    .score-box .score-value {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
        font-variant-numeric: tabular-nums;
    }
    .score-box .score-value.highlight {
        color: var(--accent-cyan);
    }
    .match-list-item .item-tag {
        display: inline-block;
        font-size: 11px;
        font-weight: 500;
        padding: 2px 10px;
        border-radius: var(--radius-pill);
        background: rgba(22, 242, 195, 0.12);
        color: var(--accent-cyan);
        border: 1px solid rgba(22, 242, 195, 0.25);
        white-space: nowrap;
    }
    .match-list-item .item-tag.orange {
        background: rgba(255, 181, 71, 0.12);
        color: var(--accent-orange);
        border: 1px solid rgba(255, 181, 71, 0.3);
    }
    /* 热门标签云 */
    .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    .tag-cloud .cloud-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-body);
        background: var(--bg-card);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-pill);
        padding: 8px 18px;
        transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    }
    .tag-cloud .cloud-tag:hover {
        border-color: var(--border-glow);
        color: var(--accent-cyan);
        box-shadow: var(--shadow-glow);
    }
    .tag-cloud .cloud-tag i {
        font-size: 12px;
        color: var(--accent-cyan);
    }
    /* 数据更新说明 */
    .update-note {
        background: rgba(22, 242, 195, 0.06);
        border: 1px solid rgba(22, 242, 195, 0.2);
        border-radius: var(--radius-lg);
        padding: 24px 28px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .update-note .note-title {
        font-size: 17px;
        font-weight: 600;
        color: var(--accent-cyan);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .update-note .note-body {
        font-size: 14px;
        line-height: 1.85;
        color: var(--text-body);
    }
    .update-note .note-list {
        list-style: none;
        padding: 0;
        margin: 12px 0 0;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    .update-note .note-list li {
        font-size: 13px;
        color: var(--text-muted);
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        padding: 6px 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .update-note .note-list li i {
        color: var(--accent-green);
    }
    /* CTA 面板 */
    .cta-panel {
        background: linear-gradient(135deg, #0D1B2A 0%, #0A1F2E 50%, #0B2535 100%);
        border: 1px solid rgba(44, 229, 163, 0.22);
        border-radius: var(--radius-lg);
        padding: 40px 36px;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-card);
    }
    .cta-panel::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -15%;
        width: 50%;
        height: 180%;
        background: radial-gradient(ellipse, rgba(22, 242, 195, 0.15) 0%, transparent 60%);
        pointer-events: none;
    }
    .cta-panel h2 {
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }
    .cta-panel p {
        font-size: 15px;
        color: var(--text-muted);
        margin-bottom: 24px;
        position: relative;
        z-index: 1;
    }
    .cta-panel .btn-custom {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        font-weight: 600;
        color: #0A1128;
        background: linear-gradient(135deg, #16F2C3 0%, #2CE5A3 100%);
        border: none;
        border-radius: var(--radius-pill);
        padding: 14px 34px;
        box-shadow: var(--shadow-glow);
        transition: box-shadow 0.3s ease, transform 0.2s ease, background 0.3s ease;
        position: relative;
        z-index: 1;
    }
    .cta-panel .btn-custom:hover {
        color: #0A1128;
        box-shadow: var(--shadow-glow-strong);
        transform: translateY(-2px);
        background: linear-gradient(135deg, #2CE5A3 0%, #16F2C3 100%);
    }
    .cta-panel .btn-custom:active {
        transform: translateY(0);
    }
    /* FAQ 手风琴 */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .faq-item {
        background: var(--bg-card);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .faq-item.active {
        border-color: var(--border-glow);
        box-shadow: var(--shadow-glow);
    }
    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 22px;
        cursor: pointer;
        transition: background 0.25s ease;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-primary);
        user-select: none;
        background: transparent;
        border: none;
        width: 100%;
        text-align: left;
    }
    .faq-question:hover {
        background: rgba(255, 255, 255, 0.04);
    }
    .faq-question .faq-icon {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(22, 242, 195, 0.12);
        border-radius: 50%;
        color: var(--accent-cyan);
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    .faq-item.active .faq-question .faq-icon {
        transform: rotate(180deg);
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0 22px;
        color: var(--text-body);
        font-size: 14px;
        line-height: 1.85;
    }
    .faq-item.active .faq-answer {
        max-height: 280px;
        padding: 0 22px 18px;
    }
    /* 页脚 */
    .footer {
        background: #080D1E;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 48px 0 24px;
        color: var(--text-muted);
        font-size: 14px;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    .footer-brand {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 10px;
    }
    .footer-desc {
        font-size: 13px;
        line-height: 1.75;
        color: var(--text-muted);
        max-width: 320px;
    }
    .footer h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 12px;
        letter-spacing: 0.03em;
    }
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .footer-links a {
        font-size: 13px;
        color: var(--text-muted);
        transition: color 0.2s ease;
    }
    .footer-links a:hover {
        color: var(--accent-cyan);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12px;
        color: var(--text-muted);
    }
    .footer-bottom a {
        color: var(--text-muted);
    }
    .footer-bottom a:hover {
        color: var(--accent-cyan);
    }
    /* 按钮通用 */
    .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        color: var(--accent-cyan);
        background: transparent;
        border: 1px solid var(--accent-green);
        border-radius: var(--radius-pill);
        padding: 10px 22px;
        transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    }
    .btn-ghost:hover {
        background: rgba(44, 229, 163, 0.12);
        color: var(--accent-cyan);
        box-shadow: var(--shadow-glow);
    }
    .btn-ghost:active {
        transform: translateY(1px);
    }
    /* 支持板块卡片 */
    .support-card {
        background: var(--bg-card);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid var(--border-card);
        border-radius: var(--radius-lg);
        padding: 22px 24px;
        box-shadow: var(--shadow-card);
        transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
        height: 100%;
    }
    .support-card:hover {
        box-shadow: var(--shadow-card-hover);
        transform: translateY(-2px);
        border-color: var(--border-glow);
    }
    .support-card .card-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(22, 242, 195, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--accent-cyan);
        margin-bottom: 14px;
    }
    .support-card .card-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 8px;
    }
    .support-card .card-text {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.75;
    }
    /* 响应式 */
    @media (max-width: 991px) {
        .navbar-toggler {
            display: flex;
        }
        .mobile-menu-wrapper {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(10, 17, 40, 0.98);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(44, 229, 163, 0.2);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
            padding: 16px 20px 24px;
            display: none;
            border-radius: 0 0 16px 16px;
        }
        .mobile-menu-wrapper.open {
            display: block;
        }
        .navbar-nav {
            flex-direction: column;
            align-items: stretch;
            gap: 4px;
            width: 100%;
        }
        .navbar-nav .nav-link {
            display: block;
            padding: 10px 4px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 15px;
        }
        .navbar-nav .nav-link::after {
            display: none;
        }
        .navbar-nav .nav-cta {
            margin-top: 12px;
            justify-content: center;
            width: 100%;
            text-align: center;
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .section {
            padding: var(--spacing-section-mobile) 0;
        }
    }
    @media (max-width: 767px) {
        .category-hero {
            padding: 32px 0 28px;
        }
        .category-hero h1 {
            font-size: 24px;
        }
        .hero-meta .meta-item {
            font-size: 12px;
            padding: 4px 12px;
        }
        .match-list-item {
            flex-direction: column;
            gap: 12px;
            padding: 14px 16px;
        }
        .match-list-item .thumb {
            width: 48px;
            height: 48px;
        }
        .match-list-item .match-info .row-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
        }
        .match-list-item .score-box {
            gap: 12px;
            margin-top: 8px;
        }
        .score-box .score-value {
            font-size: 16px;
        }
        .ticker-card {
            min-width: 220px;
            max-width: 240px;
            padding: 16px 18px;
        }
        .ticker-card .team-score {
            font-size: 18px;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 6px;
        }
        .cta-panel {
            padding: 28px 20px;
        }
        .cta-panel .btn-custom {
            width: 100%;
            justify-content: center;
        }
        .tag-cloud .cloud-tag {
            font-size: 13px;
            padding: 6px 14px;
        }
        .update-note {
            padding: 18px 16px;
        }
    }
    @media (max-width: 520px) {
        .category-hero h1 {
            font-size: 20px;
        }
        .category-hero .hero-desc {
            font-size: 14px;
            line-height: 1.7;
        }
        .section-header h2 {
            font-size: 20px;
        }
        .score-ticker-wrapper {
            margin-left: -12px;
            margin-right: -12px;
            padding-left: 12px;
            padding-right: 12px;
        }
    }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
