/* roulang page: index */
:root {
            --bg-deep: #0E151C;
            --bg-deeper: #0A1015;
            --bg-card-dark: #141E27;
            --accent: #FF4D2E;
            --accent-hover: #E63E22;
            --accent-soft: rgba(255, 77, 46, 0.12);
            --complete: #9FE870;
            --complete-soft: rgba(159, 232, 112, 0.12);
            --amber: #FFC857;
            --amber-soft: rgba(255, 200, 87, 0.12);
            --bg-light: #F4F6F8;
            --text-dark: #17212B;
            --text-muted: #5C6B7A;
            --border-light: #E3E8EE;
            --border-dark: #26323D;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --font-mono: 'Roboto Mono', 'SFMono-Regular', 'Menlo', 'Consolas', monospace;
            --radius-card: 14px;
            --radius-btn: 999px;
            --radius-input: 10px;
            --shadow-light: 0 6px 16px rgba(14, 21, 28, 0.08);
            --shadow-dark: 0 10px 28px rgba(0, 0, 0, 0.35);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.65;
            color: var(--text-dark);
            background: var(--bg-light);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 15px;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--accent-hover);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 64px 0;
        }

        .section-dark {
            background: var(--bg-deep);
            color: #E8EEF3;
            padding: 64px 0;
        }

        .section-muted {
            background: #EEF2F5;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-dark);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .section-dark .section-title {
            color: #fff;
        }

        .section-sub {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 720px;
            margin-bottom: 32px;
            line-height: 1.75;
        }

        .section-dark .section-sub {
            color: #A8B6C2;
        }

        .section-head {
            margin-bottom: 32px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            letter-spacing: 0.01em;
        }

        .tag-accent {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .tag-complete {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .tag-amber {
            background: var(--amber-soft);
            color: #B8860B;
        }

        .tag-dark {
            background: rgba(255, 255, 255, 0.08);
            color: #B8C4CE;
        }

        .mono {
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.02em;
        }

        /* Header */
        .site-header {
            background: var(--bg-deep);
            border-bottom: 1px solid var(--border-dark);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 12px 0;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .logo:hover {
            color: #fff;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }

        .nav-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
            padding: 4px 0;
            flex: 1;
            min-width: 0;
        }

        .nav-chips::-webkit-scrollbar {
            height: 3px;
        }

        .nav-chips::-webkit-scrollbar-thumb {
            background: var(--border-dark);
            border-radius: 999px;
        }

        .nav-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            padding: 7px 16px;
            border-radius: 999px;
            white-space: nowrap;
            color: #A8B6C2;
            transition: all var(--transition);
            border: 1px solid transparent;
            flex-shrink: 0;
        }

        .nav-chip:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .nav-chip.active {
            background: var(--accent);
            color: #fff;
            font-weight: 600;
        }

        .header-cta {
            flex-shrink: 0;
            white-space: nowrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            line-height: 1.4;
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 12px rgba(255, 77, 46, 0.3);
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            color: #fff;
            box-shadow: 0 6px 18px rgba(255, 77, 46, 0.4);
            transform: translateY(-1px);
        }

        .btn-outline {
            background: transparent;
            color: var(--accent);
            border: 1.5px solid var(--accent);
        }

        .btn-outline:hover {
            background: var(--accent-soft);
            color: var(--accent);
            transform: translateY(-1px);
        }

        .btn-light {
            background: #fff;
            color: var(--bg-deep);
        }

        .btn-light:hover {
            background: #F0F2F4;
            color: var(--bg-deep);
            transform: translateY(-1px);
        }

        .btn-dark-outline {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
        }

        .btn-dark-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.55);
        }

        .btn-lg {
            padding: 14px 28px;
            font-size: 16px;
        }

        .btn-block {
            display: flex;
            width: 100%;
            justify-content: center;
        }

        /* Hero */
        .hero {
            background: var(--bg-deep);
            position: relative;
            overflow: hidden;
            padding: 48px 0 64px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(14, 21, 28, 0.92) 0%, rgba(14, 21, 28, 0.75) 50%, rgba(14, 21, 28, 0.88) 100%), url('/assets/images/a1b00a46726460e7.webp') center/cover no-repeat;
            z-index: 0;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 38px;
            font-weight: 700;
            color: #fff;
            line-height: 1.25;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .hero-content h1 .highlight {
            color: var(--accent);
        }

        .hero-desc {
            font-size: 17px;
            color: #B8C4CE;
            line-height: 1.8;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }

        .hero-stats {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
        }

        .hero-stat-value {
            font-size: 22px;
            font-weight: 700;
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
            color: #fff;
            letter-spacing: -0.02em;
        }

        .hero-stat-label {
            font-size: 13px;
            color: #7A8B99;
        }

        .hero-board {
            background: var(--bg-card-dark);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-dark);
            border: 1px solid var(--border-dark);
        }

        .board-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            font-size: 13px;
            color: #A8B6C2;
        }

        .board-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--accent);
            font-weight: 600;
        }

        .board-live-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse-dot 1.6s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.45; transform: scale(0.8); }
        }

        .board-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-top: 1px solid var(--border-dark);
            gap: 10px;
        }

        .board-row:first-of-type {
            border-top: none;
        }

        .board-team {
            font-size: 14px;
            color: #E8EEF3;
            font-weight: 500;
            flex: 1;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .board-score {
            font-size: 20px;
            font-weight: 700;
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
            color: #fff;
            letter-spacing: -0.03em;
            flex-shrink: 0;
        }

        .board-score .live-indicator {
            color: var(--accent);
        }

        .board-status {
            font-size: 12px;
            color: #7A8B99;
            flex-shrink: 0;
            text-align: right;
        }

        /* Live Ticker */
        .live-ticker {
            background: var(--bg-deeper);
            border-bottom: 1px solid var(--border-dark);
            padding: 12px 0;
            overflow: hidden;
        }

        .ticker-track {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
            padding: 4px 0;
        }

        .ticker-track::-webkit-scrollbar {
            height: 3px;
        }

        .ticker-track::-webkit-scrollbar-thumb {
            background: var(--border-dark);
            border-radius: 999px;
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-card-dark);
            border: 1px solid var(--border-dark);
            border-radius: 10px;
            padding: 8px 14px;
            font-size: 13px;
            white-space: nowrap;
            flex-shrink: 0;
            color: #B8C4CE;
            transition: border-color var(--transition);
        }

        .ticker-item:hover {
            border-color: var(--accent);
        }

        .ticker-sport {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 2px 8px;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .ticker-sport.football {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .ticker-sport.basketball {
            background: var(--amber-soft);
            color: var(--amber);
        }

        .ticker-sport.esports {
            background: var(--complete-soft);
            color: var(--complete);
        }

        .ticker-score {
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
            font-weight: 700;
            color: #fff;
        }

        .ticker-live-tag {
            color: var(--accent);
            font-size: 11px;
            font-weight: 600;
        }

        /* Feature Cards */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(14, 21, 28, 0.12);
            border-color: #D0D8DF;
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 16px;
            flex-shrink: 0;
        }

        .feature-icon.accent-bg {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .feature-icon.complete-bg {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .feature-icon.amber-bg {
            background: var(--amber-soft);
            color: #B8860B;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            line-height: 1.35;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
            flex: 1;
        }

        .feature-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap var(--transition);
        }

        .feature-link:hover {
            gap: 10px;
            color: var(--accent-hover);
        }

        /* Scenarios */
        .scenario-list {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .scenario-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 22px 18px;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            text-align: center;
        }

        .scenario-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-light);
        }

        .scenario-num {
            font-size: 12px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--accent);
            margin-bottom: 8px;
        }

        .scenario-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .scenario-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.65;
        }

        /* Demo */
        .demo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .demo-text h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }

        .demo-text p {
            color: #B8C4CE;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .demo-points {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
        }

        .demo-points li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #A8B6C2;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .demo-points li i {
            color: var(--complete);
            margin-top: 4px;
            flex-shrink: 0;
        }

        .demo-visual {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .demo-img-wrap {
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-dark);
            border: 1px solid var(--border-dark);
            position: relative;
        }

        .demo-img-wrap img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .demo-img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px;
            background: linear-gradient(transparent, rgba(14, 21, 28, 0.85));
            color: #fff;
            font-size: 13px;
            font-weight: 500;
        }

        .demo-mini-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .demo-mini {
            background: var(--bg-card-dark);
            border: 1px solid var(--border-dark);
            border-radius: 10px;
            padding: 14px;
        }

        .demo-mini-label {
            font-size: 12px;
            color: #7A8B99;
            margin-bottom: 6px;
        }

        .demo-mini-value {
            font-size: 16px;
            font-weight: 700;
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
            color: #fff;
        }

        /* Deep Data */
        .data-deep-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .data-chart-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
        }

        .data-chart-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .chart-placeholder {
            background: linear-gradient(135deg, #F0F3F6, #E6EBF0);
            border-radius: 10px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            position: relative;
            overflow: hidden;
        }

        .chart-placeholder::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 3px;
            background: var(--accent);
            opacity: 0.6;
        }

        .chart-placeholder i {
            font-size: 32px;
            color: #B0BEC9;
        }

        .chart-note {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Coverage */
        .coverage-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .coverage-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--border-light);
            color: var(--text-dark);
            transition: all var(--transition);
        }

        .coverage-chip:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .coverage-desc {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 860px;
        }

        /* Data Stats */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--bg-card-dark);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-card);
            padding: 24px;
            text-align: center;
            transition: all var(--transition);
        }

        .stat-card:hover {
            border-color: var(--accent);
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
            color: var(--accent);
            letter-spacing: -0.03em;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 14px;
            color: #A8B6C2;
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        .pricing-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            transition: all var(--transition);
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(255, 77, 46, 0.15);
        }

        .pricing-card.featured::before {
            content: '推荐选择';
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--accent);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: 999px;
        }

        .pricing-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .pricing-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .pricing-price {
            font-size: 32px;
            font-weight: 700;
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .pricing-price span {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-muted);
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            flex: 1;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .pricing-features li i {
            color: var(--complete);
            margin-top: 4px;
            flex-shrink: 0;
        }

        /* Reviews */
        .reviews-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
            padding: 8px 4px;
        }

        .reviews-track::-webkit-scrollbar {
            height: 4px;
        }

        .reviews-track::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: 999px;
        }

        .review-card {
            min-width: 320px;
            max-width: 360px;
            background: #fff;
            border-radius: var(--radius-card);
            padding: 22px;
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            flex-shrink: 0;
        }

        .review-stars {
            color: var(--amber);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .review-text {
            font-size: 14px;
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .review-author {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Word of mouth */
        .wom-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .wom-card {
            background: #fff;
            border-radius: 10px;
            padding: 18px;
            border: 1px solid var(--border-light);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .wom-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-deep);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .wom-content h5 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .wom-content p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* News */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: #fff;
            border-radius: 10px;
            padding: 16px 20px;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            text-decoration: none;
            color: var(--text-dark);
        }

        .news-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-light);
            color: var(--text-dark);
        }

        .news-tag {
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .news-tag.preview {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .news-tag.review {
            background: var(--amber-soft);
            color: #B8860B;
        }

        .news-tag.info {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .news-item h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 2px;
            flex: 1;
            min-width: 0;
        }

        .news-item p {
            font-size: 13px;
            color: var(--text-muted);
            flex: 1;
        }

        .news-time {
            font-size: 12px;
            color: #9AA8B5;
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
            flex-shrink: 0;
        }

        /* Brand intro */
        .brand-intro {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 32px;
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
        }

        .brand-intro h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .brand-intro p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.85;
            margin-bottom: 14px;
        }

        .brand-intro p:last-child {
            margin-bottom: 0;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: #fff;
            border-radius: 10px;
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: #D0D8DF;
            box-shadow: var(--shadow-light);
        }

        .faq-question {
            padding: 18px 22px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            gap: 12px;
            user-select: none;
        }

        .faq-question i {
            color: var(--accent);
            font-size: 14px;
            transition: transform var(--transition);
            flex-shrink: 0;
        }

        .faq-answer {
            padding: 0 22px 18px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.75;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA */
        .cta-section {
            background: var(--bg-deep);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 77, 46, 0.15), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section h3 {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            color: #B8C4CE;
            font-size: 16px;
            line-height: 1.75;
            max-width: 560px;
            margin: 0 auto 28px;
            position: relative;
            z-index: 1;
        }

        .cta-actions {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-deeper);
            border-top: 1px solid var(--border-dark);
            padding: 40px 0 20px;
            color: #7A8B99;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }

        .footer-brand h4 {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-col h5 {
            font-size: 14px;
            font-weight: 600;
            color: #E8EEF3;
            margin-bottom: 12px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: #7A8B99;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 16px;
            font-size: 12px;
            text-align: center;
            color: #5C6B7A;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .scenario-list {
                grid-template-columns: repeat(2, 1fr);
            }

            .demo-grid {
                grid-template-columns: 1fr;
            }

            .data-deep-grid {
                grid-template-columns: 1fr;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
            }

            .wom-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                gap: 12px;
            }

            .logo {
                font-size: 18px;
            }

            .nav-chips {
                order: 3;
                width: 100%;
                gap: 6px;
            }

            .nav-chip {
                font-size: 13px;
                padding: 6px 12px;
            }

            .header-cta .btn {
                padding: 8px 14px;
                font-size: 13px;
            }

            .hero {
                padding: 32px 0 48px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-desc {
                font-size: 15px;
            }

            .section {
                padding: 48px 0;
            }

            .section-dark {
                padding: 48px 0;
            }

            .section-title {
                font-size: 22px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .scenario-list {
                grid-template-columns: 1fr;
            }

            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .stat-number {
                font-size: 24px;
            }

            .wom-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .cta-section {
                padding: 32px 20px;
            }

            .cta-section h3 {
                font-size: 22px;
            }

            .brand-intro {
                padding: 22px;
            }

            .demo-mini-row {
                grid-template-columns: 1fr;
            }

            .review-card {
                min-width: 260px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .hero-content h1 {
                font-size: 24px;
            }

            .hero-stats {
                gap: 16px;
            }

            .hero-stat-value {
                font-size: 18px;
            }

            .board-score {
                font-size: 16px;
            }

            .btn-lg {
                padding: 12px 20px;
                font-size: 14px;
            }

            .stats-row {
                grid-template-columns: 1fr;
            }

            .news-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .pricing-card.featured::before {
                right: 10px;
                font-size: 11px;
                padding: 2px 8px;
            }
        }

/* roulang page: category1 */
:root {
            --bg-deep: #0E151C;
            --bg-deeper: #0A1015;
            --bg-card-dark: #141E27;
            --accent: #FF4D2E;
            --accent-hover: #E63E22;
            --accent-soft: rgba(255, 77, 46, 0.12);
            --complete: #9FE870;
            --complete-soft: rgba(159, 232, 112, 0.12);
            --amber: #FFC857;
            --amber-soft: rgba(255, 200, 87, 0.12);
            --bg-light: #F4F6F8;
            --text-dark: #17212B;
            --text-muted: #5C6B7A;
            --border-light: #E3E8EE;
            --border-dark: #26323D;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --font-mono: 'Roboto Mono', 'SFMono-Regular', 'Menlo', 'Consolas', monospace;
            --radius-card: 14px;
            --radius-btn: 999px;
            --radius-input: 10px;
            --shadow-light: 0 6px 16px rgba(14, 21, 28, 0.08);
            --shadow-dark: 0 10px 28px rgba(0, 0, 0, 0.35);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.65;
            color: var(--text-dark);
            background: var(--bg-light);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 15px;
            margin: 0;
            padding: 0;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--accent-hover);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-style: none;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            margin: 0;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

        h1, h2, h3, h4, h5, h6 {
            margin: 0 0 0.5em 0;
            font-weight: 700;
            line-height: 1.3;
            color: inherit;
        }

        p {
            margin: 0 0 1em 0;
        }

        ul, ol {
            padding-left: 1.25em;
            margin: 0 0 1em 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 64px 0;
        }
        .section-dark {
            background: var(--bg-deep);
            color: #E8EEF3;
            padding: 64px 0;
        }
        .section-muted {
            background: #EEF2F5;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-dark);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        .section-dark .section-title {
            color: #fff;
        }
        .section-sub {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 720px;
            margin-bottom: 32px;
            line-height: 1.75;
        }
        .section-dark .section-sub {
            color: #A8B6C2;
        }
        .section-head {
            margin-bottom: 32px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }
        .tag-accent {
            background: var(--accent-soft);
            color: var(--accent);
        }
        .tag-complete {
            background: var(--complete-soft);
            color: #5D9E3D;
        }
        .tag-amber {
            background: var(--amber-soft);
            color: #B8860B;
        }
        .tag-dark {
            background: rgba(255, 255, 255, 0.08);
            color: #B8C4CE;
        }

        /* Header */
        .site-header {
            background: var(--bg-deep);
            border-bottom: 1px solid var(--border-dark);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 12px 0;
            flex-wrap: wrap;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .logo:hover {
            color: #fff;
        }
        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }
        .nav-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
            padding: 4px 0;
            flex: 1;
            min-width: 0;
        }
        .nav-chips::-webkit-scrollbar {
            height: 3px;
        }
        .nav-chips::-webkit-scrollbar-thumb {
            background: var(--border-dark);
            border-radius: 999px;
        }
        .nav-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            padding: 7px 16px;
            border-radius: 999px;
            white-space: nowrap;
            color: #A8B6C2;
            transition: all var(--transition);
            border: 1px solid transparent;
            flex-shrink: 0;
            cursor: pointer;
        }
        .nav-chip:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }
        .nav-chip.active {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(255, 77, 46, 0.18);
        }
        .header-cta {
            flex-shrink: 0;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            line-height: 1.4;
            text-decoration: none;
        }
        .btn-primary {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            border-color: var(--accent-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 77, 46, 0.3);
        }
        .btn-outline {
            background: transparent;
            color: var(--text-dark);
            border-color: var(--border-light);
        }
        .btn-outline:hover {
            background: var(--accent-soft);
            border-color: var(--accent);
            color: var(--accent);
        }
        .btn-dark {
            background: var(--bg-deep);
            color: #fff;
            border-color: var(--bg-deep);
        }
        .btn-dark:hover {
            background: var(--bg-deeper);
            color: #fff;
        }
        .btn-light {
            background: #fff;
            color: var(--text-dark);
            border-color: var(--border-light);
        }
        .btn-light:hover {
            background: #f0f2f5;
            color: var(--text-dark);
            border-color: #cbd5dd;
        }

        /* Hero - 分类页Hero */
        .category-hero {
            background: var(--bg-deep);
            color: #E8EEF3;
            padding: 56px 0 48px;
            position: relative;
            overflow: hidden;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 480px;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 77, 46, 0.07), transparent 70%);
            pointer-events: none;
        }
        .category-hero .container {
            position: relative;
            z-index: 1;
        }
        .category-hero h1 {
            font-size: 34px;
            font-weight: 800;
            letter-spacing: -0.015em;
            color: #fff;
            margin-bottom: 14px;
            line-height: 1.25;
        }
        .category-hero .hero-desc {
            font-size: 16px;
            color: #B8C4CE;
            max-width: 760px;
            line-height: 1.75;
            margin-bottom: 20px;
        }
        .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 32px;
            margin-top: 12px;
        }
        .hero-stat-item {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }
        .hero-stat-num {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            font-variant-numeric: tabular-nums;
        }
        .hero-stat-label {
            font-size: 13px;
            color: #A8B6C2;
        }

        /* 卡片通用 */
        .card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            padding: 20px;
            border: 1px solid var(--border-light);
            transition: box-shadow var(--transition), transform var(--transition);
        }
        .card:hover {
            box-shadow: 0 12px 28px rgba(14, 21, 28, 0.12);
            transform: translateY(-2px);
        }
        .card-dark {
            background: var(--bg-card-dark);
            border-color: var(--border-dark);
            color: #E8EEF3;
            box-shadow: var(--shadow-dark);
        }
        .card-dark:hover {
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
        }

        /* 比分卡片 */
        .score-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 20px;
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-light);
            box-shadow: 0 2px 8px rgba(14, 21, 28, 0.05);
            margin-bottom: 12px;
            transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
            flex-wrap: wrap;
        }
        .score-card:hover {
            border-color: #cbd5dd;
            box-shadow: 0 6px 18px rgba(14, 21, 28, 0.1);
            transform: translateY(-1px);
        }
        .score-card.live {
            border-left: 4px solid var(--accent);
        }
        .score-card.finished {
            border-left: 4px solid #cbd5dd;
        }
        .score-card.upcoming {
            border-left: 4px solid var(--amber);
        }
        .score-league {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 120px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
        }
        .score-league i {
            color: var(--accent);
            font-size: 12px;
        }
        .score-main {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
            min-width: 240px;
            justify-content: center;
        }
        .score-team {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-dark);
            min-width: 90px;
        }
        .score-team.right {
            justify-content: flex-end;
            text-align: right;
        }
        .score-team-badge {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
        }
        .score-num {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            color: var(--text-dark);
            font-variant-numeric: tabular-nums;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .score-num .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            animation: pulse-dot 1.4s ease-in-out infinite;
        }
        .score-num .finished-mark {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }
        .score-num .upcoming-time {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.35; }
        }
        .score-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
            min-width: 100px;
            font-size: 12px;
            color: var(--text-muted);
        }
        .score-status {
            font-weight: 600;
            font-size: 13px;
            color: var(--accent);
        }
        .score-status.finished {
            color: var(--text-muted);
        }
        .score-status.upcoming {
            color: #B8860B;
        }
        .score-events {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Chips 筛选 */
        .filter-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            padding: 7px 16px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--border-light);
            color: var(--text-muted);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .filter-chip:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-soft);
        }
        .filter-chip.active {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        /* 完场比分表格区 */
        .finished-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .finished-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 16px;
            background: #fff;
            border-radius: 10px;
            border: 1px solid var(--border-light);
            font-size: 14px;
            flex-wrap: wrap;
        }
        .finished-row .fr-league {
            font-size: 12px;
            color: var(--text-muted);
            min-width: 90px;
            font-weight: 600;
        }
        .finished-row .fr-match {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 200px;
        }
        .finished-row .fr-score {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 16px;
            color: var(--text-dark);
            font-variant-numeric: tabular-nums;
        }
        .finished-row .fr-status {
            font-size: 12px;
            color: #6B7A88;
            background: #F0F2F5;
            padding: 3px 10px;
            border-radius: 999px;
            white-space: nowrap;
        }

        /* 积分榜和射手榜 */
        .table-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .table-card {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-light);
            padding: 20px;
        }
        .table-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .table-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .table-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #F0F2F5;
            font-size: 14px;
            gap: 10px;
        }
        .table-list li:last-child {
            border-bottom: none;
        }
        .table-rank {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .table-rank.top {
            background: var(--accent-soft);
            color: var(--accent);
        }
        .table-team {
            flex: 1;
            font-weight: 500;
            color: var(--text-dark);
            text-align: left;
        }
        .table-pts {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--text-dark);
            font-variant-numeric: tabular-nums;
            min-width: 30px;
            text-align: center;
        }
        .table-meta {
            font-size: 12px;
            color: var(--text-muted);
            min-width: 60px;
            text-align: right;
        }

        /* 赛程日历 */
        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 14px;
        }
        .schedule-date {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-light);
            padding: 16px;
            box-shadow: 0 2px 8px rgba(14, 21, 28, 0.05);
        }
        .schedule-date h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .schedule-match {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 8px 0;
            border-bottom: 1px solid #F0F2F5;
            font-size: 13px;
        }
        .schedule-match:last-child {
            border-bottom: none;
        }
        .schedule-match .sm-time {
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-muted);
            font-variant-numeric: tabular-nums;
            min-width: 42px;
        }
        .schedule-match .sm-teams {
            flex: 1;
            font-weight: 500;
            color: var(--text-dark);
        }

        /* 临场情报 */
        .intel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 14px;
        }
        .intel-card {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-light);
            padding: 18px;
            box-shadow: 0 2px 8px rgba(14, 21, 28, 0.05);
            transition: box-shadow var(--transition), transform var(--transition);
        }
        .intel-card:hover {
            box-shadow: 0 8px 20px rgba(14, 21, 28, 0.1);
            transform: translateY(-2px);
        }
        .intel-card .intel-tag {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 8px;
            display: block;
        }
        .intel-card h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .intel-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* 资讯列表 */
        .news-list-compact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .news-list-compact li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid #F0F2F5;
        }
        .news-list-compact li:last-child {
            border-bottom: none;
        }
        .news-thumb {
            width: 72px;
            height: 48px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
            background: #E8ECEF;
        }
        .news-list-compact .news-text {
            flex: 1;
        }
        .news-list-compact .news-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            display: block;
            margin-bottom: 4px;
        }
        .news-list-compact .news-summary {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-compact .news-date {
            font-size: 12px;
            color: #A8B6C2;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* CTA区域 */
        .cta-band {
            background: var(--bg-deep);
            border-radius: var(--radius-card);
            padding: 40px 32px;
            color: #E8EEF3;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-dark);
            position: relative;
            overflow: hidden;
        }
        .cta-band::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -30px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(255, 77, 46, 0.18), transparent 70%);
            pointer-events: none;
        }
        .cta-band h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }
        .cta-band p {
            font-size: 15px;
            color: #A8B6C2;
            margin-bottom: 0;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }
        .cta-band .cta-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-deeper);
            color: #A8B6C2;
            padding: 48px 0 24px;
            border-top: 1px solid var(--border-dark);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand h4 {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: #A8B6C2;
            margin-bottom: 0;
        }
        .footer-col h5 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: #A8B6C2;
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 20px;
            font-size: 13px;
            color: #6B7A88;
            text-align: center;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .table-grid {
                grid-template-columns: 1fr;
            }
            .score-card {
                padding: 14px 16px;
            }
            .score-main {
                gap: 12px;
            }
            .score-num {
                font-size: 22px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 48px 0;
            }
            .section-dark {
                padding: 48px 0;
            }
            .container {
                padding: 0 20px;
            }
            .header-inner {
                gap: 12px;
                padding: 10px 0;
            }
            .logo {
                font-size: 17px;
            }
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
            .nav-chip {
                font-size: 13px;
                padding: 6px 12px;
            }
            .header-cta .btn {
                padding: 8px 14px;
                font-size: 13px;
            }
            .category-hero {
                padding: 40px 0 36px;
            }
            .category-hero h1 {
                font-size: 28px;
            }
            .hero-stats-row {
                gap: 16px 24px;
            }
            .hero-stat-num {
                font-size: 19px;
            }
            .filter-chips {
                gap: 6px;
            }
            .filter-chip {
                font-size: 12px;
                padding: 6px 13px;
            }
            .score-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 14px;
            }
            .score-main {
                min-width: 100%;
                justify-content: space-between;
                gap: 8px;
            }
            .score-team {
                font-size: 14px;
                min-width: 70px;
            }
            .score-num {
                font-size: 22px;
            }
            .score-meta {
                flex-direction: row;
                align-items: center;
                gap: 8px;
                min-width: 100%;
                justify-content: flex-start;
                flex-wrap: wrap;
            }
            .finished-row {
                padding: 10px 12px;
                font-size: 13px;
            }
            .finished-row .fr-match {
                min-width: 100%;
                gap: 8px;
            }
            .schedule-grid {
                grid-template-columns: 1fr;
            }
            .intel-grid {
                grid-template-columns: 1fr;
            }
            .cta-band {
                padding: 28px 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-actions {
                flex-wrap: wrap;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .section {
                padding: 36px 0;
            }
            .section-dark {
                padding: 36px 0;
            }
            .category-hero h1 {
                font-size: 24px;
            }
            .category-hero .hero-desc {
                font-size: 14px;
            }
            .hero-stats-row {
                gap: 10px 16px;
            }
            .hero-stat-num {
                font-size: 17px;
            }
            .hero-stat-label {
                font-size: 12px;
            }
            .nav-chip {
                font-size: 12px;
                padding: 5px 10px;
            }
            .header-cta .btn {
                font-size: 12px;
                padding: 7px 12px;
            }
            .score-team {
                font-size: 13px;
                min-width: 60px;
                gap: 4px;
            }
            .score-num {
                font-size: 19px;
            }
            .score-league {
                font-size: 12px;
                min-width: 90px;
            }
            .filter-chip {
                font-size: 12px;
                padding: 5px 11px;
            }
            .section-title {
                font-size: 22px;
            }
            .btn {
                font-size: 13px;
                padding: 8px 16px;
            }
        }

/* roulang page: category2 */
:root {
            --bg-deep: #0E151C;
            --bg-deeper: #0A1015;
            --bg-card-dark: #141E27;
            --accent: #FF4D2E;
            --accent-hover: #E63E22;
            --accent-soft: rgba(255, 77, 46, 0.12);
            --complete: #9FE870;
            --complete-soft: rgba(159, 232, 112, 0.12);
            --amber: #FFC857;
            --amber-soft: rgba(255, 200, 87, 0.12);
            --bg-light: #F4F6F8;
            --text-dark: #17212B;
            --text-muted: #5C6B7A;
            --border-light: #E3E8EE;
            --border-dark: #26323D;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --font-mono: 'Roboto Mono', 'SFMono-Regular', 'Menlo', 'Consolas', monospace;
            --radius-card: 14px;
            --radius-btn: 999px;
            --radius-input: 10px;
            --shadow-light: 0 6px 16px rgba(14, 21, 28, 0.08);
            --shadow-dark: 0 10px 28px rgba(0, 0, 0, 0.35);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.65;
            color: var(--text-dark);
            background: var(--bg-light);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 15px;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--accent-hover);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 64px 0;
        }

        .section-dark {
            background: var(--bg-deep);
            color: #E8EEF3;
            padding: 64px 0;
        }

        .section-muted {
            background: #EEF2F5;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-dark);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .section-dark .section-title {
            color: #fff;
        }

        .section-sub {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 720px;
            margin-bottom: 32px;
            line-height: 1.75;
        }

        .section-dark .section-sub {
            color: #A8B6C2;
        }

        .section-head {
            margin-bottom: 32px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            letter-spacing: 0.01em;
        }

        .tag-accent {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .tag-complete {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .tag-amber {
            background: var(--amber-soft);
            color: #B8860B;
        }

        .tag-dark {
            background: rgba(255, 255, 255, 0.08);
            color: #B8C4CE;
        }

        /* Header */
        .site-header {
            background: var(--bg-deep);
            border-bottom: 1px solid var(--border-dark);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 12px 0;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .logo:hover {
            color: #fff;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }

        .nav-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
            padding: 4px 0;
            flex: 1;
            min-width: 0;
        }

        .nav-chips::-webkit-scrollbar {
            height: 3px;
        }

        .nav-chips::-webkit-scrollbar-thumb {
            background: var(--border-dark);
            border-radius: 999px;
        }

        .nav-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            padding: 7px 16px;
            border-radius: 999px;
            white-space: nowrap;
            color: #A8B6C2;
            transition: all var(--transition);
            border: 1px solid transparent;
            flex-shrink: 0;
        }

        .nav-chip:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .nav-chip.active {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            font-weight: 600;
        }

        .header-cta {
            flex-shrink: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            line-height: 1.4;
            white-space: nowrap;
            text-align: center;
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            color: #fff;
            box-shadow: 0 4px 12px rgba(255, 77, 46, 0.35);
            transform: translateY(-1px);
        }

        .btn-outline {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
        }

        .btn-outline:hover {
            background: var(--accent-soft);
            color: var(--accent-hover);
        }

        .btn-outline-light {
            background: transparent;
            color: #E8EEF3;
            border: 1px solid rgba(255, 255, 255, 0.35);
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }

        .btn-sm {
            padding: 7px 14px;
            font-size: 13px;
        }

        .btn-lg {
            padding: 14px 32px;
            font-size: 16px;
        }

        .btn-block {
            display: flex;
            width: 100%;
        }

        /* Category Hero */
        .category-hero {
            background: var(--bg-deep);
            padding: 56px 0 40px;
            border-bottom: 1px solid var(--border-dark);
            position: relative;
            overflow: hidden;
        }

        .category-hero::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(255, 77, 46, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .category-hero .container {
            position: relative;
            z-index: 1;
        }

        .category-hero h1 {
            font-size: 34px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 12px 0;
            letter-spacing: -0.01em;
            line-height: 1.25;
        }

        .category-hero .hero-sub {
            font-size: 16px;
            color: #A8B6C2;
            max-width: 720px;
            margin: 0 0 20px 0;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 20px;
        }

        .hero-stat {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .hero-stat-value {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -0.02em;
        }

        .hero-stat-label {
            font-size: 13px;
            color: #7A8B98;
        }

        /* Filter Chips */
        .filter-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid var(--border-light);
            background: #fff;
            color: var(--text-muted);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .filter-chip:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .filter-chip.active {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            font-weight: 600;
        }

        /* Basketball Score Cards */
        .score-card-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .bb-score-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            padding: 18px 22px;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .bb-score-card:hover {
            box-shadow: 0 10px 24px rgba(14, 21, 28, 0.12);
            border-color: #D1D9E0;
            transform: translateY(-1px);
        }

        .bb-match-info {
            flex: 1;
            min-width: 160px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .bb-match-league {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .bb-match-time {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--text-muted);
            font-variant-numeric: tabular-nums;
        }

        .bb-match-status {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 999px;
            white-space: nowrap;
        }

        .bb-status-live {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .bb-status-live::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse-dot 1.4s ease-in-out infinite;
        }

        .bb-status-finished {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .bb-status-scheduled {
            background: #EFF2F5;
            color: var(--text-muted);
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.35; }
        }

        .bb-teams {
            flex: 2;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .bb-team-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .bb-team-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .bb-team-score {
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.01em;
        }

        .bb-team-score.winner {
            color: #5D9E3D;
        }

        .bb-team-score.live-score {
            color: var(--accent);
        }

        .bb-quarter-row {
            flex: 1;
            min-width: 140px;
            display: flex;
            gap: 6px;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .bb-quarter-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            padding: 4px 8px;
            border-radius: 8px;
            background: #F7F9FA;
            border: 1px solid var(--border-light);
            min-width: 34px;
        }

        .bb-quarter-label {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.02em;
        }

        .bb-quarter-value {
            font-family: var(--font-mono);
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            font-variant-numeric: tabular-nums;
        }

        .bb-quarter-value.ot {
            color: var(--amber);
        }

        .bb-card-link {
            font-size: 13px;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color var(--transition);
            white-space: nowrap;
        }

        .bb-card-link:hover {
            color: var(--accent);
        }

        /* Player Stats */
        .player-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .player-stat-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            padding: 20px 22px;
        }

        .player-stat-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 14px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .player-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .player-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #F0F3F5;
        }

        .player-item:last-child {
            border-bottom: none;
        }

        .player-rank {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            width: 24px;
            flex-shrink: 0;
        }

        .player-rank.top {
            color: var(--accent);
        }

        .player-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            flex: 1;
            margin: 0 8px;
        }

        .player-value {
            font-family: var(--font-mono);
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            font-variant-numeric: tabular-nums;
        }

        /* Focus Schedule */
        .focus-schedule-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .focus-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .focus-card-body {
            padding: 20px 22px;
            flex: 1;
        }

        .focus-card-body h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 8px 0;
        }

        .focus-card-body p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0 0 14px 0;
            line-height: 1.7;
        }

        .focus-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--text-muted);
        }

        .focus-card-img {
            height: 160px;
            background-size: cover;
            background-position: center;
            border-bottom: 1px solid var(--border-light);
        }

        /* Intel Brief */
        .intel-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .intel-item {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            padding: 18px 22px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            transition: all var(--transition);
        }

        .intel-item:hover {
            border-color: #D1D9E0;
            box-shadow: 0 8px 20px rgba(14, 21, 28, 0.1);
        }

        .intel-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .intel-icon.injury {
            background: var(--amber-soft);
            color: #B8860B;
        }

        .intel-icon.rotation {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .intel-icon.tactics {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .intel-content h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 4px 0;
        }

        .intel-content p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* Subscribe CTA */
        .cta-panel {
            background: var(--bg-deep);
            border-radius: var(--radius-card);
            padding: 40px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-dark);
        }

        .cta-panel h2 {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 8px 0;
            letter-spacing: -0.01em;
        }

        .cta-panel p {
            font-size: 15px;
            color: #A8B6C2;
            margin: 0;
            max-width: 500px;
            line-height: 1.7;
        }

        .cta-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 18px 22px;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            text-align: left;
            transition: background var(--transition);
        }

        .faq-question:hover {
            background: #F7F9FA;
        }

        .faq-question .faq-toggle-icon {
            font-size: 14px;
            color: var(--text-muted);
            transition: transform var(--transition);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question .faq-toggle-icon {
            transform: rotate(180deg);
            color: var(--accent);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 220px;
            padding: 0 22px 18px 22px;
        }

        .faq-answer p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 14px 0 0;
            line-height: 1.75;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-deeper);
            color: #A8B6C2;
            padding: 48px 0 24px;
            border-top: 1px solid var(--border-dark);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand h4 {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 12px 0;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
            max-width: 300px;
        }

        .footer-col h5 {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            margin: 0 0 12px 0;
            letter-spacing: 0.02em;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: #A8B6C2;
            font-size: 14px;
            text-decoration: none;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #6B7A88;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .container {
                padding: 0 20px;
            }

            .section,
            .section-dark {
                padding: 48px 0;
            }

            .category-hero {
                padding: 44px 0 32px;
            }

            .category-hero h1 {
                font-size: 28px;
            }

            .player-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .focus-schedule-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: nowrap;
                gap: 12px;
            }

            .nav-chips {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 2px;
            }

            .header-cta .btn {
                padding: 8px 14px;
                font-size: 13px;
            }

            .logo {
                font-size: 18px;
            }

            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .container {
                padding: 0 18px;
            }

            .section,
            .section-dark {
                padding: 40px 0;
            }

            .section-title {
                font-size: 24px;
            }

            .category-hero {
                padding: 36px 0 28px;
            }

            .category-hero h1 {
                font-size: 26px;
            }

            .category-hero .hero-sub {
                font-size: 15px;
            }

            .hero-stats {
                gap: 20px;
            }

            .hero-stat-value {
                font-size: 20px;
            }

            .bb-score-card {
                padding: 14px 16px;
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .bb-match-info {
                width: 100%;
                flex-wrap: wrap;
            }

            .bb-teams {
                width: 100%;
                min-width: auto;
            }

            .bb-quarter-row {
                justify-content: flex-start;
                min-width: auto;
            }

            .bb-quarter-item {
                min-width: 30px;
                padding: 3px 6px;
            }

            .player-stats-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .cta-panel {
                padding: 28px 24px;
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-actions {
                width: 100%;
            }

            .cta-actions .btn {
                flex: 1;
                justify-content: center;
            }

            .faq-question {
                padding: 15px 18px;
                font-size: 14px;
            }

            .faq-answer {
                padding: 0 18px;
            }

            .faq-item.open .faq-answer {
                padding: 0 18px 15px 18px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }

            .section,
            .section-dark {
                padding: 32px 0;
            }

            .section-title {
                font-size: 21px;
            }

            .section-sub {
                font-size: 14px;
            }

            .category-hero {
                padding: 28px 0 22px;
            }

            .category-hero h1 {
                font-size: 22px;
            }

            .category-hero .hero-sub {
                font-size: 14px;
            }

            .hero-stats {
                gap: 14px;
                flex-direction: column;
            }

            .hero-stat-value {
                font-size: 18px;
            }

            .filter-bar {
                gap: 6px;
            }

            .filter-chip {
                font-size: 12px;
                padding: 5px 11px;
            }

            .bb-score-card {
                padding: 12px 14px;
                gap: 10px;
            }

            .bb-team-score {
                font-size: 18px;
            }

            .bb-quarter-value {
                font-size: 13px;
            }

            .bb-quarter-item {
                min-width: 27px;
                padding: 2px 5px;
            }

            .player-stat-card {
                padding: 16px 18px;
            }

            .intel-item {
                padding: 14px 16px;
                flex-direction: column;
                gap: 10px;
            }

            .intel-icon {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .faq-question {
                padding: 13px 16px;
                font-size: 13px;
            }

            .faq-answer p {
                font-size: 13px;
            }

            .btn-lg {
                padding: 12px 22px;
                font-size: 15px;
            }
        }

        /* Foundation overrides */
        .foundation-grid-override {
            margin: 0;
        }

        button.faq-question {
            font-family: var(--font-sans);
        }

        .site-header .container {
            max-width: 1200px;
        }

        .site-footer .container {
            max-width: 1200px;
        }

/* roulang page: category3 */
:root {
            --bg-deep: #0E151C;
            --bg-deeper: #0A1015;
            --bg-card-dark: #141E27;
            --accent: #FF4D2E;
            --accent-hover: #E63E22;
            --accent-soft: rgba(255, 77, 46, 0.12);
            --complete: #9FE870;
            --complete-soft: rgba(159, 232, 112, 0.12);
            --amber: #FFC857;
            --amber-soft: rgba(255, 200, 87, 0.12);
            --bg-light: #F4F6F8;
            --text-dark: #17212B;
            --text-muted: #5C6B7A;
            --border-light: #E3E8EE;
            --border-dark: #26323D;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --font-mono: 'Roboto Mono', 'SFMono-Regular', 'Menlo', 'Consolas', monospace;
            --radius-card: 14px;
            --radius-btn: 999px;
            --radius-input: 10px;
            --shadow-light: 0 6px 16px rgba(14, 21, 28, 0.08);
            --shadow-dark: 0 10px 28px rgba(0, 0, 0, 0.35);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.65;
            color: var(--text-dark);
            background: var(--bg-light);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 15px;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--accent-hover);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 56px 0;
        }

        .section-dark {
            background: var(--bg-deep);
            color: #E8EEF3;
            padding: 56px 0;
        }

        .section-muted {
            background: #EEF2F5;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-dark);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .section-dark .section-title {
            color: #fff;
        }

        .section-sub {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 720px;
            margin-bottom: 32px;
            line-height: 1.75;
        }

        .section-dark .section-sub {
            color: #A8B6C2;
        }

        .section-head {
            margin-bottom: 32px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            letter-spacing: 0.01em;
        }

        .tag-accent {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .tag-complete {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .tag-amber {
            background: var(--amber-soft);
            color: #B8860B;
        }

        .tag-dark {
            background: rgba(255, 255, 255, 0.08);
            color: #B8C4CE;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            letter-spacing: 0.01em;
            white-space: nowrap;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 8px 18px rgba(255, 77, 46, 0.28);
        }

        .btn-outline {
            background: transparent;
            color: var(--accent);
            border: 1.5px solid var(--accent);
        }

        .btn-outline:hover {
            background: var(--accent-soft);
            color: var(--accent-hover);
        }

        .btn-dark {
            background: var(--bg-card-dark);
            color: #fff;
        }

        .btn-dark:hover {
            background: #1E2B37;
            color: #fff;
        }

        .btn-light {
            background: #fff;
            color: var(--text-dark);
        }

        .btn-light:hover {
            background: #E8EEF3;
            color: var(--text-dark);
        }

        .btn-sm {
            padding: 7px 16px;
            font-size: 13px;
        }

        .btn-lg {
            padding: 13px 30px;
            font-size: 16px;
        }

        .btn-block {
            width: 100%;
        }

        /* Header */
        .site-header {
            background: var(--bg-deep);
            border-bottom: 1px solid var(--border-dark);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 12px 0;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .logo:hover {
            color: #fff;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }

        .nav-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
            padding: 4px 0;
            flex: 1;
            min-width: 0;
        }

        .nav-chips::-webkit-scrollbar {
            height: 3px;
        }

        .nav-chips::-webkit-scrollbar-thumb {
            background: var(--border-dark);
            border-radius: 999px;
        }

        .nav-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            padding: 7px 16px;
            border-radius: 999px;
            white-space: nowrap;
            color: #A8B6C2;
            transition: all var(--transition);
            border: 1px solid transparent;
            flex-shrink: 0;
            text-decoration: none;
        }

        .nav-chip:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .nav-chip.active {
            background: var(--accent);
            color: #fff;
        }

        .header-cta {
            flex-shrink: 0;
        }

        .header-cta .btn {
            font-size: 13px;
            padding: 8px 18px;
        }

        /* Card Base */
        .card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
        }

        .card:hover {
            box-shadow: 0 14px 30px rgba(14, 21, 28, 0.12);
            transform: translateY(-2px);
        }

        .card-dark {
            background: var(--bg-card-dark);
            border-color: var(--border-dark);
            box-shadow: var(--shadow-dark);
        }

        .card-dark:hover {
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
            transform: translateY(-2px);
            border-color: #374654;
        }

        .card-body {
            padding: 20px 22px;
        }

        .card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .card-dark .card-title {
            color: #fff;
        }

        .card-text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .card-dark .card-text {
            color: #A8B6C2;
        }

        /* Hero Section (分类页) */
        .category-hero {
            background: var(--bg-deep);
            position: relative;
            overflow: hidden;
            padding: 48px 0 40px;
            border-bottom: 1px solid var(--border-dark);
        }

        .category-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 80% 30%, rgba(255, 77, 46, 0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 20% 70%, rgba(159, 232, 112, 0.06) 0%, transparent 45%);
            pointer-events: none;
        }

        .category-hero .container {
            position: relative;
            z-index: 2;
        }

        .category-hero h1 {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.25;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .category-hero .hero-sub {
            font-size: 16px;
            color: #A8B6C2;
            max-width: 680px;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .hero-meta-row {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .hero-stat {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 13px;
            color: #B8C4CE;
        }

        .hero-stat i {
            color: var(--accent);
            font-size: 12px;
        }

        /* Filter Chips */
        .filter-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            padding: 7px 18px;
            border-radius: 999px;
            white-space: nowrap;
            color: var(--text-muted);
            background: #fff;
            border: 1px solid var(--border-light);
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
        }

        .filter-chip:hover {
            background: var(--accent-soft);
            color: var(--accent);
            border-color: var(--accent);
        }

        .filter-chip.active {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        /* Score Card */
        .score-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            transition: all var(--transition);
        }

        .score-card:hover {
            box-shadow: 0 12px 26px rgba(14, 21, 28, 0.12);
            border-color: #D0D9E0;
        }

        .score-card.live {
            border-left: 3px solid var(--accent);
        }

        .score-card.finished {
            border-left: 3px solid var(--complete);
        }

        .score-card.upcoming {
            border-left: 3px solid var(--amber);
        }

        .score-info {
            min-width: 140px;
        }

        .score-league {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .score-teams {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .score-teams .vs-label {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .score-center {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .score-value {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.02em;
            tabular-nums: numeric;
        }

        .score-value.live-now {
            color: var(--accent);
        }

        .score-value.finished-score {
            color: #5D9E3D;
        }

        .score-status {
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 999px;
            display: inline-block;
        }

        .status-live {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .status-finished {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .status-upcoming {
            background: var(--amber-soft);
            color: #B8860B;
        }

        .score-time {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        /* Team Section */
        .team-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
            gap: 14px;
            flex-wrap: wrap;
        }

        .team-row:last-child {
            border-bottom: none;
        }

        .team-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            min-width: 110px;
        }

        .team-form {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            flex: 1;
        }

        .form-dot {
            width: 22px;
            height: 22px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            font-family: var(--font-mono);
        }

        .form-win {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .form-loss {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .team-next {
            font-size: 13px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        /* Player Table */
        .player-table-wrapper {
            overflow-x: auto;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            background: #fff;
        }

        .player-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 620px;
        }

        .player-table thead th {
            background: var(--bg-deep);
            color: #B8C4CE;
            font-size: 12px;
            font-weight: 600;
            text-align: left;
            padding: 12px 16px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            border-bottom: 1px solid var(--border-dark);
            white-space: nowrap;
        }

        .player-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-dark);
            font-weight: 500;
            vertical-align: middle;
        }

        .player-table tbody tr:last-child td {
            border-bottom: none;
        }

        .player-table tbody tr:hover td {
            background: #F8FAFB;
        }

        .player-rank {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            min-width: 36px;
        }

        .player-name {
            font-weight: 600;
            color: var(--text-dark);
        }

        .player-team {
            font-size: 13px;
            color: var(--text-muted);
        }

        .player-stat {
            font-family: var(--font-mono);
            font-weight: 600;
            color: var(--text-dark);
            tabular-nums: numeric;
        }

        /* News List */
        .news-card {
            display: flex;
            gap: 16px;
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            border: 1px solid var(--border-light);
            padding: 14px;
            transition: all var(--transition);
        }

        .news-card:hover {
            box-shadow: 0 12px 26px rgba(14, 21, 28, 0.12);
            transform: translateY(-2px);
        }

        .news-thumb {
            width: 110px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.45;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-summary {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 4px;
        }

        .news-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .news-meta i {
            color: #B8C4CE;
            font-size: 11px;
        }

        /* CTA Section */
        .cta-section {
            background: var(--bg-deep);
            position: relative;
            overflow: hidden;
            padding: 64px 0;
            border-top: 1px solid var(--border-dark);
            border-bottom: 1px solid var(--border-dark);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 60% 40%, rgba(255, 77, 46, 0.18) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-card {
            background: var(--bg-card-dark);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-card);
            padding: 32px 36px;
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
            box-shadow: var(--shadow-dark);
        }

        .cta-title {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .cta-text {
            font-size: 15px;
            color: #A8B6C2;
            line-height: 1.7;
            margin-bottom: 22px;
        }

        .cta-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* FAQ */
        .faq-item {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-light);
            margin-bottom: 14px;
            overflow: hidden;
        }

        .faq-question {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all var(--transition);
            margin: 0;
            line-height: 1.5;
        }

        .faq-question:hover {
            background: #F8FAFB;
        }

        .faq-question .faq-icon {
            font-size: 14px;
            color: var(--accent);
            transition: transform var(--transition);
            flex-shrink: 0;
            margin-left: 12px;
        }

        .faq-answer {
            padding: 0 22px 18px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.75;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-deeper);
            color: #A8B6C2;
            padding: 48px 0 24px;
            border-top: 1px solid var(--border-dark);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand h4 {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.7;
            color: #A8B6C2;
            max-width: 280px;
            margin-bottom: 0;
        }

        .footer-col h5 {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: 0.01em;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: #A8B6C2;
            text-decoration: none;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 18px;
            text-align: center;
            font-size: 12px;
            color: #5C6B7A;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .section {
                padding: 48px 0;
            }
            .section-dark {
                padding: 48px 0;
            }
            .category-hero h1 {
                font-size: 28px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 10px 0;
            }
            .logo {
                font-size: 18px;
            }
            .nav-chips {
                width: 100%;
                gap: 6px;
            }
            .nav-chip {
                font-size: 13px;
                padding: 6px 14px;
            }
            .header-cta {
                display: none;
            }
            .category-hero {
                padding: 36px 0 32px;
            }
            .category-hero h1 {
                font-size: 26px;
            }
            .score-card {
                padding: 14px 16px;
                gap: 12px;
            }
            .score-teams {
                font-size: 14px;
            }
            .score-value {
                font-size: 20px;
            }
            .section-title {
                font-size: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .cta-card {
                padding: 24px 20px;
            }
            .cta-title {
                font-size: 20px;
            }
            .news-thumb {
                width: 80px;
                height: 60px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .section {
                padding: 36px 0;
            }
            .section-dark {
                padding: 36px 0;
            }
            .category-hero h1 {
                font-size: 24px;
            }
            .score-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .score-center {
                justify-content: space-between;
                width: 100%;
            }
            .section-title {
                font-size: 22px;
            }
            .section-sub {
                font-size: 14px;
            }
            .filter-chip {
                font-size: 12px;
                padding: 6px 14px;
            }
            .player-table thead th,
            .player-table tbody td {
                padding: 10px 12px;
                font-size: 13px;
            }
            .news-card {
                flex-direction: column;
            }
            .news-thumb {
                width: 100%;
                height: 140px;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .cta-buttons .btn {
                width: 100%;
            }
        }

/* roulang page: category4 */
:root {
            --bg-deep: #0E151C;
            --bg-deeper: #0A1015;
            --bg-card-dark: #141E27;
            --accent: #FF4D2E;
            --accent-hover: #E63E22;
            --accent-soft: rgba(255, 77, 46, 0.12);
            --complete: #9FE870;
            --complete-soft: rgba(159, 232, 112, 0.12);
            --amber: #FFC857;
            --amber-soft: rgba(255, 200, 87, 0.12);
            --bg-light: #F4F6F8;
            --text-dark: #17212B;
            --text-muted: #5C6B7A;
            --border-light: #E3E8EE;
            --border-dark: #26323D;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --font-mono: 'Roboto Mono', 'SFMono-Regular', 'Menlo', 'Consolas', monospace;
            --radius-card: 14px;
            --radius-btn: 999px;
            --radius-input: 10px;
            --shadow-light: 0 6px 16px rgba(14, 21, 28, 0.08);
            --shadow-dark: 0 10px 28px rgba(0, 0, 0, 0.35);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.65;
            color: var(--text-dark);
            background: var(--bg-light);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 15px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--accent-hover);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .section {
            padding: 64px 0;
        }

        .section-dark {
            background: var(--bg-deep);
            color: #E8EEF3;
            padding: 64px 0;
        }

        .section-muted {
            background: #EEF2F5;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-dark);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .section-dark .section-title {
            color: #fff;
        }

        .section-sub {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 720px;
            margin-bottom: 32px;
            line-height: 1.75;
        }

        .section-dark .section-sub {
            color: #A8B6C2;
        }

        .section-head {
            margin-bottom: 32px;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .tag-accent {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .tag-complete {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .tag-amber {
            background: var(--amber-soft);
            color: #B8860B;
        }

        .tag-dark {
            background: rgba(255, 255, 255, 0.08);
            color: #B8C4CE;
        }

        .mono {
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
            font-weight: 500;
        }

        /* Header */
        .site-header {
            background: var(--bg-deep);
            border-bottom: 1px solid var(--border-dark);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 12px 0;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .logo:hover {
            color: #fff;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }

        .nav-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
            padding: 4px 0;
            flex: 1;
            min-width: 0;
        }

        .nav-chips::-webkit-scrollbar {
            height: 3px;
        }

        .nav-chips::-webkit-scrollbar-thumb {
            background: var(--border-dark);
            border-radius: 999px;
        }

        .nav-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            padding: 7px 16px;
            border-radius: 999px;
            white-space: nowrap;
            color: #A8B6C2;
            transition: all var(--transition);
            border: 1px solid transparent;
            flex-shrink: 0;
            cursor: pointer;
        }

        .nav-chip:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .nav-chip.active {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        .header-cta {
            flex-shrink: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            white-space: nowrap;
            line-height: 1.4;
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 12px rgba(255, 77, 46, 0.35);
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            color: #fff;
            box-shadow: 0 6px 18px rgba(255, 77, 46, 0.45);
            transform: translateY(-1px);
        }

        .btn-dark-outline {
            background: transparent;
            color: #fff;
            border: 1px solid var(--border-dark);
            box-shadow: none;
        }

        .btn-dark-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #A8B6C2;
            color: #fff;
        }

        .btn-light {
            background: #fff;
            color: var(--accent);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        }

        .btn-light:hover {
            background: #F0F3F5;
            color: var(--accent-hover);
            transform: translateY(-1px);
        }

        .btn-block {
            width: 100%;
        }

        .btn-lg {
            font-size: 15px;
            padding: 13px 28px;
        }

        .btn-sm {
            font-size: 12px;
            padding: 6px 14px;
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 18px 0 0;
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb .sep {
            color: #B0BEC5;
        }

        .breadcrumb .current {
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Hero - Stats Page */
        .stats-hero {
            background: var(--bg-deep);
            padding: 48px 0 56px;
            position: relative;
            overflow: hidden;
            color: #E8EEF3;
        }

        .stats-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(255, 77, 46, 0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 80%, rgba(159, 232, 112, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .stats-hero .container {
            position: relative;
            z-index: 1;
        }

        .stats-hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .stats-hero-content h1 {
            font-size: 38px;
            font-weight: 700;
            line-height: 1.25;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.015em;
        }

        .stats-hero-content .lead {
            font-size: 17px;
            color: #B8C4CE;
            line-height: 1.75;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .stats-hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .hero-stat-strip {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            border-top: 1px solid var(--border-dark);
            padding-top: 24px;
        }

        .hero-stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .hero-stat-value {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
        }

        .hero-stat-value .unit {
            font-size: 13px;
            font-weight: 400;
            color: #A8B6C2;
            margin-left: 2px;
        }

        .hero-stat-label {
            font-size: 13px;
            color: #A8B6C2;
        }

        .stats-hero-visual {
            background: var(--bg-card-dark);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-dark);
        }

        .hero-visual-title {
            font-size: 13px;
            color: #A8B6C2;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-visual-title .pulse {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--complete);
            animation: pulse 1.8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.7);
            }
        }

        .hero-index-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-dark);
        }

        .hero-index-row:last-child {
            border-bottom: none;
        }

        .hero-index-name {
            font-size: 14px;
            color: #E8EEF3;
            font-weight: 500;
        }

        .hero-index-change {
            font-size: 13px;
            font-weight: 600;
            font-family: var(--font-mono);
            padding: 4px 10px;
            border-radius: 6px;
        }

        .hero-index-change.up {
            background: var(--complete-soft);
            color: var(--complete);
        }

        .hero-index-change.down {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .hero-index-change.flat {
            background: rgba(255, 255, 255, 0.06);
            color: #A8B6C2;
        }

        /* Filter Toolbar */
        .filter-toolbar {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-card);
            padding: 18px 22px;
            box-shadow: var(--shadow-light);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            margin-bottom: 32px;
        }

        .filter-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            margin-right: 4px;
            white-space: nowrap;
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid var(--border-light);
            background: #fff;
            color: var(--text-muted);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            user-select: none;
        }

        .filter-chip:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .filter-chip.active {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }

        .filter-select {
            font-size: 13px;
            padding: 7px 14px;
            border-radius: var(--radius-input);
            border: 1px solid var(--border-light);
            background: #fff;
            color: var(--text-dark);
            cursor: pointer;
            min-width: 120px;
        }

        /* Index Cards List */
        .index-cards-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .index-card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-card);
            padding: 22px 24px;
            box-shadow: var(--shadow-light);
            transition: all var(--transition);
            display: grid;
            grid-template-columns: 1.1fr 2fr 1fr;
            gap: 20px;
            align-items: center;
        }

        .index-card:hover {
            box-shadow: 0 8px 22px rgba(14, 21, 28, 0.12);
            transform: translateY(-2px);
            border-color: #D0D9E0;
        }

        .index-card-match {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .index-card-league {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .index-card-teams {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.35;
        }

        .index-card-time {
            font-size: 13px;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

        .index-data-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .index-data-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
            background: #F8FAFB;
            border-radius: 10px;
            padding: 10px 14px;
            border: 1px solid #EEF2F5;
        }

        .index-data-label {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .index-data-value {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
        }

        .index-data-value.accent {
            color: var(--accent);
        }

        .index-data-value.complete {
            color: #5D9E3D;
        }

        .index-card-action {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-end;
        }

        /* Deep Analysis Section */
        .analysis-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 36px;
            align-items: center;
        }

        .analysis-visual {
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border-dark);
            box-shadow: var(--shadow-dark);
            background: var(--bg-card-dark);
            position: relative;
        }

        .analysis-visual img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: var(--radius-card);
            opacity: 0.85;
        }

        .analysis-visual-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(14, 21, 28, 0.25) 0%, rgba(14, 21, 28, 0.65) 100%);
            border-radius: var(--radius-card);
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .analysis-visual-tag {
            font-size: 12px;
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
            padding: 4px 12px;
            border-radius: 999px;
            font-weight: 500;
            backdrop-filter: blur(4px);
        }

        .analysis-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }

        .analysis-content p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .analysis-content .analysis-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

        .analysis-content .analysis-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .analysis-content .analysis-list li i {
            color: var(--complete);
            margin-top: 3px;
            flex-shrink: 0;
            font-size: 14px;
        }

        /* Tools Grid */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .tool-card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-card);
            padding: 26px 22px;
            box-shadow: var(--shadow-light);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 12px;
            height: 100%;
        }

        .tool-card:hover {
            box-shadow: 0 10px 26px rgba(14, 21, 28, 0.12);
            transform: translateY(-3px);
            border-color: #D0D9E0;
        }

        .tool-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--accent-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--accent);
            margin-bottom: 4px;
            flex-shrink: 0;
        }

        .tool-icon.green {
            background: var(--complete-soft);
            color: #5D9E3D;
        }

        .tool-icon.amber {
            background: var(--amber-soft);
            color: #B8860B;
        }

        .tool-card h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
        }

        .tool-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
            flex: 1;
        }

        .tool-card .tool-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* Reports List */
        .reports-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .report-item {
            display: grid;
            grid-template-columns: 120px 1fr auto;
            gap: 18px;
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            box-shadow: var(--shadow-light);
            transition: all var(--transition);
            align-items: center;
        }

        .report-item:hover {
            box-shadow: 0 8px 22px rgba(14, 21, 28, 0.1);
            border-color: #D0D9E0;
            transform: translateY(-2px);
        }

        .report-thumb {
            width: 100%;
            height: 76px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .report-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .report-info h5 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .report-info p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        .report-date {
            font-size: 12px;
            color: var(--text-muted);
            font-family: var(--font-mono);
            white-space: nowrap;
            padding: 6px 12px;
            border-radius: 6px;
            background: #F0F4F7;
        }

        /* CTA Section */
        .cta-section {
            background: var(--bg-deep);
            padding: 72px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 30%, rgba(255, 77, 46, 0.15) 0%, transparent 55%);
            pointer-events: none;
        }

        .cta-inner {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 680px;
            margin: 0 auto;
        }

        .cta-inner h2 {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }

        .cta-inner p {
            font-size: 16px;
            color: #B8C4CE;
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .cta-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 820px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-light);
        }

        .faq-item:hover {
            border-color: #D0D9E0;
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 18px 22px;
            cursor: pointer;
            user-select: none;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-dark);
            transition: color var(--transition);
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-question .faq-toggle-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #F0F4F7;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--text-muted);
            transition: all var(--transition);
            flex-shrink: 0;
        }

        .faq-item.open .faq-toggle-icon {
            background: var(--accent-soft);
            color: var(--accent);
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 22px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.75;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-bottom: 20px;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-deeper);
            color: #A8B6C2;
            padding: 48px 0 24px;
            margin-top: auto;
            border-top: 1px solid var(--border-dark);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-brand h4 {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
            color: #A8B6C2;
            max-width: 300px;
        }

        .footer-col h5 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul a {
            font-size: 13px;
            color: #A8B6C2;
            transition: color var(--transition);
        }

        .footer-col ul a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding-top: 20px;
            font-size: 13px;
            color: #6A7A89;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .stats-hero-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .stats-hero-content h1 {
                font-size: 32px;
            }
            .analysis-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .tools-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .index-card {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .index-card-action {
                align-items: flex-start;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 44px 0;
            }
            .section-dark {
                padding: 44px 0;
            }
            .stats-hero {
                padding: 36px 0 44px;
            }
            .stats-hero-content h1 {
                font-size: 28px;
            }
            .stats-hero-content .lead {
                font-size: 15px;
                margin-bottom: 20px;
            }
            .hero-stat-strip {
                gap: 18px;
            }
            .hero-stat-value {
                font-size: 20px;
            }
            .stats-hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .stats-hero-buttons .btn {
                width: 100%;
            }
            .filter-toolbar {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px;
            }
            .filter-group {
                width: 100%;
            }
            .index-data-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            .index-data-item {
                padding: 8px 10px;
            }
            .index-data-value {
                font-size: 13px;
            }
            .tools-grid {
                grid-template-columns: 1fr;
            }
            .report-item {
                grid-template-columns: 80px 1fr;
                gap: 12px;
                padding: 14px 16px;
            }
            .report-date {
                grid-column: 3;
            }
            .report-thumb {
                height: 56px;
            }
            .cta-inner h2 {
                font-size: 24px;
            }
            .cta-inner p {
                font-size: 14px;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .cta-buttons .btn {
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .header-inner {
                gap: 12px;
                padding: 10px 0;
            }
            .logo {
                font-size: 17px;
            }
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 12px;
                border-radius: 7px;
            }
            .nav-chip {
                font-size: 13px;
                padding: 6px 13px;
            }
            .header-cta .btn {
                padding: 8px 14px;
                font-size: 12px;
            }
            .brightness-container {
                display: none;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 18px;
            }
            .stats-hero-content h1 {
                font-size: 24px;
            }
            .section-title {
                font-size: 22px;
            }
            .index-card {
                padding: 16px;
            }
            .index-data-grid {
                grid-template-columns: 1fr 1fr;
            }
            .index-card-teams {
                font-size: 14px;
            }
            .filter-chip {
                font-size: 12px;
                padding: 5px 11px;
            }
            .report-item {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .report-thumb {
                height: 100px;
                width: 100%;
            }
            .report-date {
                grid-column: auto;
            }
            .faq-question {
                font-size: 14px;
                padding: 14px 16px;
            }
            .faq-answer {
                padding: 0 16px;
            }
            .faq-item.open .faq-answer {
                padding-bottom: 16px;
            }
            .hero-index-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
