/* roulang page: index */
:root {
            --color-bg: #0D1117;
            --color-panel: #161D27;
            --color-panel-light: #1B2430;
            --color-orange: #FF6B35;
            --color-orange-dark: #E55A2B;
            --color-cyan: #00C9A7;
            --color-cyan-dim: #0D8C76;
            --color-gold: #FFC857;
            --color-text: #D1D5DB;
            --color-text-white: #F5F7FA;
            --color-text-muted: #8B95A5;
            --color-border: #2A3038;
            --color-border-cyan: #1F6A5E;
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-pill: 999px;
            --shadow-card: 0 12px 32px rgba(0,0,0,.45);
            --shadow-hover: 0 20px 48px rgba(255,107,53,.18);
            --shadow-cyan: 0 8px 20px rgba(0,201,167,.12);
            --font-sans: 'Noto Sans SC','Source Han Sans','PingFang SC','Microsoft YaHei',sans-serif;
            --font-mono: 'JetBrains Mono','SFMono-Regular','Courier New',monospace;
            --transition: .25s cubic-bezier(.4,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);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--color-cyan);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--color-orange);
            outline: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--color-orange);
            outline-offset: 2px;
        }
        button,
        input,
        select,
        textarea {
            font-family: var(--font-sans);
            font-size: 1rem;
        }
        .cf-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .cf-container--wide {
            max-width: 1320px;
        }
        .section {
            padding: 72px 0;
            position: relative;
        }
        .section--alt {
            background-color: #11161E;
        }
        .section--panel {
            background-color: #121820;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }
        .section__header {
            margin-bottom: 44px;
        }
        .section__header--center {
            text-align: center;
        }
        .section__eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--color-cyan);
            background: rgba(0,201,167,.08);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(0,201,167,.22);
            margin-bottom: 14px;
        }
        .section__title {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.25;
            color: var(--color-text-white);
            margin-bottom: 14px;
        }
        .section__title--gradient {
            background: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section__desc {
            font-size: 1.02rem;
            color: var(--color-text-muted);
            max-width: 860px;
            line-height: 1.85;
        }
        .section__header--center .section__desc {
            margin-left: auto;
            margin-right: auto;
        }
        .mono {
            font-family: var(--font-mono);
        }
        .text-cyan {
            color: var(--color-cyan);
        }
        .text-orange {
            color: var(--color-orange);
        }
        .text-gold {
            color: var(--color-gold);
        }
        .text-white {
            color: var(--color-text-white);
        }
        .text-muted {
            color: var(--color-text-muted);
        }

        /* ========== HEADER / NAVIGATION ========== */
        .cf-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(13,17,23,.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
            padding: 0;
            height: 72px;
            display: flex;
            align-items: center;
        }
        .cf-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
        }
        .cf-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.32rem;
            font-weight: 700;
            color: var(--color-text-white);
            text-decoration: none;
            white-space: nowrap;
            letter-spacing: 0.02em;
            transition: color var(--transition);
        }
        .cf-logo:hover {
            color: var(--color-orange);
        }
        .cf-logo__icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0D1117;
            font-weight: 800;
            font-size: 1.05rem;
            flex-shrink: 0;
        }
        .cf-nav-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .cf-nav-desktop a {
            display: inline-block;
            padding: 8px 14px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--color-text-muted);
            text-decoration: none;
            border-radius: var(--radius-md);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .cf-nav-desktop a:hover {
            color: var(--color-text-white);
            background: rgba(255,255,255,.05);
        }
        .cf-nav-desktop a.cf-nav-active {
            color: var(--color-orange);
            background: rgba(255,107,53,.10);
            font-weight: 600;
        }
        .cf-header__cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .cf-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            font-size: 0.92rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all var(--transition);
            position: relative;
            white-space: nowrap;
        }
        .cf-btn--primary {
            background: var(--color-orange);
            color: #fff;
            box-shadow: 0 4px 16px rgba(255,107,53,.25);
        }
        .cf-btn--primary:hover {
            background: var(--color-orange-dark);
            color: #fff;
            box-shadow: 0 8px 24px rgba(255,107,53,.35);
            transform: translateY(-1px);
        }
        .cf-btn--primary:hover::after {
            content: '→';
            position: absolute;
            right: 12px;
            bottom: 6px;
            font-size: 0.85rem;
            opacity: 0;
            animation: arrowIn .3s forwards;
        }
        @keyframes arrowIn {
            from { opacity: 0; transform: translateX(-6px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .cf-btn--secondary {
            background: transparent;
            color: var(--color-cyan);
            border: 1px solid var(--color-border-cyan);
            padding: 9px 19px;
        }
        .cf-btn--secondary:hover {
            background: var(--color-cyan);
            color: #0D1117;
            border-color: var(--color-cyan);
        }
        .cf-btn--lg {
            padding: 14px 28px;
            font-size: 1rem;
            border-radius: var(--radius-md);
        }
        .cf-nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            color: var(--color-text-white);
            font-size: 1.3rem;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .cf-off-canvas {
            background: #131920;
            padding: 24px 20px;
            height: 100%;
        }
        .cf-off-canvas__logo {
            font-size: 1.35rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 24px;
            display: block;
        }
        .cf-off-canvas__nav {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .cf-off-canvas__nav a {
            display: block;
            padding: 12px 16px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text);
            text-decoration: none;
            border-radius: var(--radius-md);
            transition: all var(--transition);
        }
        .cf-off-canvas__nav a:hover {
            background: rgba(255,255,255,.06);
            color: #fff;
        }
        .cf-off-canvas__nav a.cf-nav-active {
            background: rgba(255,107,53,.12);
            color: var(--color-orange);
        }
        .cf-off-canvas__cta {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* ========== HERO ========== */
        .cf-hero {
            position: relative;
            background: var(--color-bg);
            min-height: calc(100vh - 72px);
            display: flex;
            align-items: center;
            overflow: hidden;
            background-image: url('/assets/images/06d2f741d0177bec.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }
        .cf-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 40%, rgba(255,107,53,.08) 0%, transparent 60%),
                        radial-gradient(ellipse at 20% 70%, rgba(0,201,167,.06) 0%, transparent 55%),
                        linear-gradient(to bottom, rgba(13,17,23,.55) 0%, rgba(13,17,23,.88) 100%);
            z-index: 1;
            pointer-events: none;
        }
        .cf-hero__grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 56px;
            align-items: center;
            padding: 60px 0;
        }
        .cf-hero__content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 10px;
        }
        .cf-hero__content h1 .gradient-text {
            background: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .cf-hero__subtitle {
            font-size: 1.06rem;
            color: var(--color-text-muted);
            margin: 18px 0 28px;
            line-height: 1.85;
            max-width: 560px;
        }
        .cf-hero__cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 24px;
        }
        .cf-hero__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }
        .cf-hero__meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .cf-hero__meta i {
            color: var(--color-cyan);
            font-size: 0.8rem;
        }
        .cf-score-stack {
            display: flex;
            flex-direction: column;
            gap: 14px;
            position: relative;
        }
        .cf-score-card {
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            box-shadow: var(--shadow-card);
        }
        .cf-score-card--main {
            background: linear-gradient(135deg, #1A222D 0%, #121820 100%);
            border: 1px solid rgba(255,107,53,.3);
            box-shadow: var(--shadow-hover);
        }
        .cf-score-card__meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: var(--color-text-muted);
            margin-bottom: 14px;
        }
        .cf-live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,107,53,.15);
            color: var(--color-orange);
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            font-size: 0.72rem;
            font-weight: 600;
        }
        .cf-live-badge i {
            font-size: 0.6rem;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0%,100% { opacity:1; }
            50% { opacity:.4; }
        }
        .cf-score-card__teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin: 10px 0 14px;
        }
        .cf-team-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 1;
        }
        .cf-team-logo {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #232B38;
            border: 2px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-text-white);
            letter-spacing: .05em;
        }
        .cf-team-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
        }
        .cf-score-center {
            text-align: center;
            flex-shrink: 0;
        }
        .cf-score-big {
            font-family: var(--font-mono);
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--color-gold);
            line-height: 1;
        }
        .cf-score-format {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            margin-top: 4px;
        }
        .cf-score-card__map-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.82rem;
            color: var(--color-text-muted);
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--color-border);
        }
        .cf-econ-bar {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 6px;
            height: 10px;
        }
        .cf-econ-bar__fill {
            height: 8px;
            border-radius: 4px;
            background: var(--color-cyan);
        }
        .cf-econ-bar__fill--gold {
            background: var(--color-gold);
        }
        .cf-econ-label {
            font-family: var(--font-mono);
            font-size: 0.72rem;
            min-width: 48px;
            text-align: right;
        }

        /* ========== STATS / DATA BADGES ========== */
        .cf-stat-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .cf-stat-badge {
            background: var(--color-panel);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            box-shadow: var(--shadow-cyan);
            transition: all var(--transition);
        }
        .cf-stat-badge:hover {
            border-color: var(--color-cyan);
            transform: translateY(-4px);
            box-shadow: 0 16px 36px rgba(0,201,167,.15);
        }
        .cf-stat-badge__num {
            font-family: var(--font-mono);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--color-cyan);
            line-height: 1.2;
            margin-bottom: 4px;
        }
        .cf-stat-badge__label {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            line-height: 1.4;
        }

        /* ========== SERVICE CARDS ========== */
        .cf-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .cf-service-card {
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
            transition: all var(--transition);
        }
        .cf-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--color-orange);
        }
        .cf-service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255,107,53,.25);
        }
        .cf-service-card__icon {
            width: 48px;
            height: 48px;
            background: rgba(255,107,53,.10);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-orange);
            font-size: 1.3rem;
            margin-bottom: 14px;
        }
        .cf-service-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        .cf-service-card p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.75;
            margin-bottom: 14px;
        }
        .cf-service-link {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--color-cyan);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all var(--transition);
        }
        .cf-service-link:hover {
            color: var(--color-orange);
            gap: 12px;
        }

        /* ========== VS COMPARISON ========== */
        .cf-vs-wrap {
            display: grid;
            grid-template-columns: 1fr 80px 1fr;
            gap: 24px;
            align-items: center;
        }
        .cf-team-card {
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border);
            padding: 24px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }
        .cf-team-card:hover {
            border-color: rgba(255,107,53,.25);
            transform: translateY(-4px);
        }
        .cf-team-card__logo {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #232B38;
            border: 2px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.1rem;
            color: #fff;
            margin: 0 auto 12px;
        }
        .cf-team-card__name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
        }
        .cf-team-card__record {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            margin: 6px 0 16px;
        }
        .cf-team-mini-stats {
            display: flex;
            flex-direction: column;
            gap: 8px;
            text-align: left;
        }
        .cf-team-mini-stats .mini-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.82rem;
            color: var(--color-text-muted);
            border-bottom: 1px dashed var(--color-border);
            padding-bottom: 4px;
        }
        .cf-team-mini-stats .mini-row .val {
            font-family: var(--font-mono);
            color: var(--color-cyan);
            font-weight: 600;
        }
        .cf-vs-divider {
            text-align: center;
            font-family: var(--font-mono);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-orange);
            letter-spacing: .05em;
        }

        /* ========== TIMELINE ========== */
        .cf-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
        }
        .cf-timeline::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, var(--color-cyan), var(--color-orange), var(--color-gold));
            opacity: .3;
            z-index: 0;
        }
        .cf-timeline-item {
            text-align: center;
            position: relative;
            z-index: 1;
            background: var(--color-panel);
            border-radius: var(--radius-md);
            padding: 22px 16px;
            border: 1px solid var(--color-border);
            transition: all var(--transition);
        }
        .cf-timeline-item:hover {
            border-color: var(--color-cyan);
            transform: translateY(-4px);
        }
        .cf-timeline-dot {
            width: 16px;
            height: 16px;
            background: var(--color-cyan);
            border-radius: 50%;
            margin: 0 auto 12px;
            box-shadow: 0 0 20px rgba(0,201,167,.4);
        }
        .cf-timeline-item h3 {
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 6px;
        }
        .cf-timeline-num {
            font-family: var(--font-mono);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-gold);
            display: block;
            margin-bottom: 4px;
        }
        .cf-timeline-item p {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        /* ========== BRAND INTRO ========== */
        .cf-brand-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .cf-brand-intro__text h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 16px;
        }
        .cf-brand-intro__text p {
            font-size: 0.98rem;
            color: var(--color-text-muted);
            line-height: 1.9;
            margin-bottom: 12px;
        }
        .cf-brand-intro__img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-card);
        }
        .cf-brand-intro__img img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        /* ========== NEWS LIST ========== */
        .cf-news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .cf-news-card {
            display: grid;
            grid-template-columns: 90px 1fr 120px;
            gap: 20px;
            align-items: center;
            background: var(--color-panel);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            padding: 18px 22px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }
        .cf-news-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255,107,53,.3);
        }
        .cf-news-card__date {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--color-text-muted);
            text-align: center;
            background: rgba(255,255,255,.04);
            padding: 8px 4px;
            border-radius: 8px;
        }
        .cf-news-card__date .day {
            display: block;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--color-gold);
            line-height: 1.2;
        }
        .cf-news-card__content h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 6px;
        }
        .cf-news-card__content p {
            font-size: 0.86rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            margin: 0;
        }
        .cf-news-card__btn {
            text-align: right;
        }
        .cf-btn--small {
            padding: 8px 16px;
            font-size: 0.82rem;
            border-radius: var(--radius-md);
        }

        /* ========== PLATFORM GUARANTEE ========== */
        .cf-guarantee-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .cf-guarantee-item {
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            padding: 26px;
            border: 1px solid var(--color-border);
            text-align: center;
            transition: all var(--transition);
        }
        .cf-guarantee-item:hover {
            border-color: var(--color-cyan);
            box-shadow: var(--shadow-cyan);
        }
        .cf-guarantee-item__icon {
            width: 52px;
            height: 52px;
            background: rgba(0,201,167,.10);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-cyan);
            font-size: 1.4rem;
            margin: 0 auto 14px;
        }
        .cf-guarantee-item h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        .cf-guarantee-item p {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.75;
            margin: 0;
        }

        /* ========== QUICK ANSWERS ========== */
        .cf-qa-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .cf-qa-item {
            background: var(--color-panel);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            border-left: 3px solid var(--color-orange);
            border-top: 1px solid var(--color-border);
            border-right: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            transition: all var(--transition);
        }
        .cf-qa-item:hover {
            border-left-color: var(--color-gold);
            background: #1A222E;
        }
        .cf-qa-item h3 {
            font-size: 0.98rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 6px;
        }
        .cf-qa-item p {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            margin: 0;
        }

        /* ========== FAQ ACCORDION ========== */
        .cf-faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .cf-faq-item {
            background: var(--color-panel);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            margin-bottom: 14px;
            overflow: hidden;
            transition: all var(--transition);
        }
        .cf-faq-item:hover {
            border-color: rgba(255,107,53,.25);
        }
        .cf-faq-item summary {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 22px;
            cursor: pointer;
            font-weight: 600;
            color: #fff;
            list-style: none;
            user-select: none;
            transition: all var(--transition);
            position: relative;
        }
        .cf-faq-item summary::-webkit-details-marker {
            display: none;
        }
        .cf-faq-item summary::before {
            content: '';
            width: 3px;
            height: 20px;
            background: var(--color-orange);
            border-radius: 2px;
            flex-shrink: 0;
        }
        .cf-faq-item summary:hover {
            background: rgba(255,255,255,.03);
        }
        .cf-faq-item[open] {
            border-color: rgba(0,201,167,.3);
            box-shadow: var(--shadow-cyan);
        }
        .cf-faq-item[open] summary {
            border-bottom: 1px solid var(--color-border);
        }
        .cf-faq-answer {
            padding: 16px 22px 20px;
            font-size: 0.92rem;
            color: var(--color-text-muted);
            line-height: 1.85;
        }

        /* ========== FORM / SUBSCRIBE ========== */
        .cf-subscribe-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-card);
        }
        .cf-subscribe-form h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .cf-subscribe-form p {
            font-size: 0.92rem;
            color: var(--color-text-muted);
            margin-bottom: 20px;
        }
        .cf-form-group {
            margin-bottom: 16px;
        }
        .cf-form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-text-muted);
            margin-bottom: 6px;
        }
        .cf-form-input,
        .cf-form-select {
            width: 100%;
            background: #0E141C;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 12px 16px;
            color: var(--color-text-white);
            font-size: 0.95rem;
            transition: all var(--transition);
        }
        .cf-form-input:focus,
        .cf-form-select:focus {
            border-color: var(--color-orange);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255,107,53,.15);
        }
        .cf-form-input::placeholder {
            color: #4A5560;
        }
        .cf-form-select option {
            background: #0E141C;
            color: #fff;
        }
        .cf-subscribe-img {
            background: var(--color-panel-light);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cf-subscribe-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 260px;
        }

        /* ========== SCENE ENTRY ========== */
        .cf-scene-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .cf-scene-card {
            background: var(--color-panel);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            padding: 22px 18px;
            text-align: center;
            transition: all var(--transition);
            text-decoration: none;
        }
        .cf-scene-card:hover {
            border-color: var(--color-orange);
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }
        .cf-scene-card__icon {
            font-size: 1.6rem;
            color: var(--color-orange);
            margin-bottom: 10px;
        }
        .cf-scene-card h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
        }
        .cf-scene-card p {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        /* ========== DEEP DATA TOPICS ========== */
        .cf-topic-mixed {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .cf-topic-card {
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }
        .cf-topic-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255,107,53,.25);
        }
        .cf-topic-card__img {
            height: 200px;
            overflow: hidden;
        }
        .cf-topic-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .cf-topic-card__body {
            padding: 22px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .cf-topic-card__body h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        .cf-topic-card__body p {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.75;
            flex: 1;
            margin-bottom: 16px;
        }
        .cf-topic-card--small .cf-topic-card__img {
            height: 140px;
        }
        .cf-topic-subgrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        /* ========== FOOTER ========== */
        .cf-footer {
            background: #0A0F14;
            border-top: 1px solid var(--color-border);
            padding: 56px 0 0;
        }
        .cf-footer__grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 36px;
            margin-bottom: 36px;
        }
        .cf-footer__brand .cf-logo {
            margin-bottom: 12px;
        }
        .cf-footer__brand p {
            font-size: 0.86rem;
            color: var(--color-text-muted);
            line-height: 1.8;
            margin: 0;
        }
        .cf-footer h4 {
            font-size: 0.92rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
        }
        .cf-footer__links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .cf-footer__links a {
            font-size: 0.86rem;
            color: var(--color-text-muted);
            text-decoration: none;
            transition: all var(--transition);
        }
        .cf-footer__links a:hover {
            color: var(--color-orange);
            padding-left: 4px;
        }
        .cf-footer__subscribe p {
            font-size: 0.86rem;
            color: var(--color-text-muted);
            margin-bottom: 12px;
        }
        .cf-footer__copyright {
            border-top: 1px solid var(--color-border);
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.82rem;
            color: var(--color-text-muted);
        }
        .cf-footer__copyright a {
            color: var(--color-text-muted);
            text-decoration: none;
            transition: color var(--transition);
        }
        .cf-footer__copyright a:hover {
            color: var(--color-orange);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1180px) {
            .cf-stat-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .cf-hero__grid {
                gap: 36px;
            }
            .cf-hero__content h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 1024px) {
            .cf-nav-desktop {
                display: none;
            }
            .cf-nav-toggle {
                display: flex;
            }
            .cf-header__cta .cf-btn--secondary {
                display: none;
            }
            .cf-hero__grid {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 48px 0;
            }
            .cf-service-grid,
            .cf-card-grid,
            .cf-guarantee-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cf-vs-wrap {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .cf-vs-divider {
                font-size: 1.2rem;
            }
            .cf-timeline {
                grid-template-columns: repeat(2, 1fr);
            }
            .cf-brand-intro {
                grid-template-columns: 1fr;
            }
            .cf-news-card {
                grid-template-columns: 70px 1fr 100px;
                gap: 14px;
            }
            .cf-qa-grid {
                grid-template-columns: 1fr;
            }
            .cf-subscribe-wrap {
                grid-template-columns: 1fr;
                padding: 28px;
            }
            .cf-scene-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cf-footer__grid {
                grid-template-columns: 1fr 1fr;
            }
            .section {
                padding: 56px 0;
            }
        }
        @media (max-width: 768px) {
            .cf-header {
                height: 60px;
            }
            .cf-hero {
                min-height: auto;
            }
            .cf-hero__content h1 {
                font-size: 1.8rem;
            }
            .cf-hero__subtitle {
                font-size: 0.95rem;
            }
            .cf-card-grid,
            .cf-service-grid,
            .cf-guarantee-grid,
            .cf-stat-grid {
                grid-template-columns: 1fr;
            }
            .cf-news-card {
                grid-template-columns: 1fr;
                text-align: left;
                padding: 16px;
            }
            .cf-news-card__date {
                text-align: left;
                background: none;
                padding: 0;
            }
            .cf-news-card__date .day {
                display: inline;
                font-size: 1rem;
                color: var(--color-gold);
            }
            .cf-news-card__btn {
                text-align: left;
            }
            .cf-scene-grid {
                grid-template-columns: 1fr;
            }
            .cf-topic-mixed {
                grid-template-columns: 1fr;
            }
            .cf-topic-subgrid {
                grid-template-columns: 1fr;
            }
            .cf-timeline {
                grid-template-columns: 1fr;
            }
            .cf-timeline::before {
                display: none;
            }
            .cf-footer__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .cf-footer__copyright {
                flex-direction: column;
                text-align: center;
            }
            .section__title {
                font-size: 1.55rem;
            }
            .cf-score-stack {
                gap: 10px;
            }
            .cf-score-big {
                font-size: 1.8rem;
            }
            .cf-btn--lg {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 520px) {
            .cf-container {
                padding: 0 16px;
            }
            .cf-hero__cta-group {
                flex-direction: column;
                width: 100%;
            }
            .cf-hero__cta-group .cf-btn {
                width: 100%;
                justify-content: center;
            }
            .cf-nav-toggle {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            .cf-logo {
                font-size: 1.1rem;
            }
            .cf-logo__icon {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
            .cf-score-card {
                padding: 14px;
            }
        }

/* roulang page: category2 */
:root {
 --color-bg: #0D1117;
 --color-panel: #161D27;
 --color-panel-light: #1B2430;
 --color-orange: #FF6B35;
 --color-orange-dark: #E55A2B;
 --color-cyan: #00C9A7;
 --color-cyan-dim: #0D8C76;
 --color-gold: #FFC857;
 --color-text: #D1D5DB;
 --color-text-white: #F5F7FA;
 --color-text-muted: #8B95A5;
 --color-border: #2A3038;
 --color-border-cyan: #1F6A5E;
 --radius-lg: 16px;
 --radius-md: 10px;
 --radius-pill: 999px;
 --shadow-card: 0 12px 32px rgba(0,0,0,.45);
 --shadow-hover: 0 20px 48px rgba(255,107,53,.18);
 --shadow-cyan: 0 8px 20px rgba(0,201,167,.12);
 --font-sans: 'Noto Sans SC','Source Han Sans','PingFang SC','Microsoft YaHei',sans-serif;
 --font-mono: 'JetBrains Mono','SFMono-Regular','Courier New',monospace;
 --transition: .25s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
 font-family: var(--font-sans);
 background-color: var(--color-bg);
 color: var(--color-text);
 line-height: 1.7;
 font-size: 16px;
 min-height: 100vh;
 overflow-x: hidden;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-cyan); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--color-orange); outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 2px; }
button, input, select, textarea { font-family: var(--font-sans); font-size: 1rem; }
.cf-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.cf-container--wide { max-width: 1320px; }
.section { padding: 72px 0; position: relative; }
.section--alt { background-color: #11161E; }
.section--panel { background-color: #121820; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.section__header { margin-bottom: 44px; }
.section__header--center { text-align: center; }
.section__eyebrow {
 display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
 color: var(--color-cyan); background: rgba(0,201,167,.08); padding: 6px 14px; border-radius: var(--radius-pill);
 border: 1px solid rgba(0,201,167,.22); margin-bottom: 14px;
}
.section__title { font-size: 2rem; font-weight: 700; line-height: 1.25; color: var(--color-text-white); margin-bottom: 14px; }
.section__title--gradient { background: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section__desc { font-size: 1.02rem; color: var(--color-text-muted); max-width: 860px; line-height: 1.85; }
.section__header--center .section__desc { margin-left: auto; margin-right: auto; }
.text-cyan { color: var(--color-cyan); }
.text-orange { color: var(--color-orange); }
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-text-white); }
.text-muted { color: var(--color-text-muted); }

/* ========== HEADER / NAVIGATION ========== */
.cf-header {
 position: sticky; top: 0; z-index: 100; background: rgba(13,17,23,.92);
 backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--color-border);
 padding: 0; height: 72px; display: flex; align-items: center;
}
.cf-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.cf-logo { display: flex; align-items: center; gap: 8px; font-size: 1.32rem; font-weight: 700; color: var(--color-text-white); text-decoration: none; white-space: nowrap; letter-spacing: 0.02em; transition: color var(--transition); }
.cf-logo:hover { color: var(--color-orange); }
.cf-logo__icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--color-orange), var(--color-gold)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #0D1117; font-weight: 800; font-size: 1.05rem; flex-shrink: 0; }
.cf-nav-desktop { display: flex; align-items: center; gap: 6px; }
.cf-nav-desktop a {
 display: inline-block; padding: 8px 14px; font-size: 0.92rem; font-weight: 500; color: var(--color-text-muted);
 border-radius: var(--radius-md); transition: all var(--transition); white-space: nowrap;
}
.cf-nav-desktop a:hover { color: var(--color-text-white); background: rgba(255,255,255,.04); }
.cf-nav-desktop a.cf-nav-active { color: var(--color-orange); background: rgba(255,107,53,.12); font-weight: 600; }
.cf-header__cta { display: flex; align-items: center; gap: 10px; }
.cf-btn {
 display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; font-size: 0.88rem; font-weight: 600;
 border-radius: var(--radius-md); transition: all var(--transition); cursor: pointer; border: 1px solid transparent; white-space: nowrap;
}
.cf-btn--primary { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }
.cf-btn--primary:hover { background: var(--color-orange-dark); border-color: var(--color-orange-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.cf-btn--primary:hover::after { content: "→"; margin-left: 2px; }
.cf-btn--secondary { background: transparent; color: var(--color-cyan); border-color: rgba(0,201,167,.4); }
.cf-btn--secondary:hover { background: rgba(0,201,167,.1); color: var(--color-cyan); border-color: var(--color-cyan); transform: translateY(-1px); }
.cf-nav-toggle { display: none; background: transparent; border: 1px solid var(--color-border); border-radius: var(--radius-md); width: 40px; height: 40px; color: var(--color-text-white); font-size: 1.1rem; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); }
.cf-nav-toggle:hover { border-color: var(--color-orange); color: var(--color-orange); }
.cf-offcanvas {
 position: fixed; top: 0; right: -320px; width: 300px; max-width: 85vw; height: 100vh; z-index: 200;
 background: #121820; border-left: 1px solid var(--color-border); transition: right .3s ease; padding: 24px 0; overflow-y: auto;
}
.cf-offcanvas.is-open { right: 0; }
.cf-offcanvas__head { display: flex; align-items: center; justify-content: space-between; padding: 0 24px 20px; border-bottom: 1px solid var(--color-border); }
.cf-offcanvas__close { background: transparent; border: 1px solid var(--color-border); border-radius: var(--radius-md); width: 36px; height: 36px; color: var(--color-text); cursor: pointer; font-size: 1rem; }
.cf-offcanvas__close:hover { border-color: var(--color-orange); color: var(--color-orange); }
.cf-offcanvas__nav { display: flex; flex-direction: column; padding: 20px 0; }
.cf-offcanvas__nav a { padding: 12px 24px; color: var(--color-text); font-size: 0.95rem; border-left: 3px solid transparent; transition: all var(--transition); }
.cf-offcanvas__nav a:hover, .cf-offcanvas__nav a.cf-nav-active { color: var(--color-orange); background: rgba(255,107,53,.08); border-left-color: var(--color-orange); }
.cf-offcanvas__cta { padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--color-border); }
.cf-offcanvas-overlay { position: fixed; inset: 0; z-index: 190; background: rgba(0,0,0,.6); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.cf-offcanvas-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* ========== 分类页横幅 ========== */
.cf-cat-hero {
 background: linear-gradient(135deg, rgba(255,107,53,.08) 0%, rgba(0,201,167,.05) 100%), #11161E;
 border-bottom: 1px solid var(--color-border); padding: 40px 0 28px; position: relative; overflow: hidden;
}
.cf-cat-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(255,107,53,.08), transparent 45%), radial-gradient(circle at 80% 70%, rgba(0,201,167,.06), transparent 40%); pointer-events: none; }
.cf-cat-hero__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.cf-cat-hero__title { font-size: 2.1rem; font-weight: 700; color: var(--color-text-white); margin-bottom: 8px; }
.cf-cat-hero__desc { font-size: 1rem; color: var(--color-text-muted); max-width: 640px; line-height: 1.7; }
.cf-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--color-text-muted); }
.cf-breadcrumb a { color: var(--color-text-muted); transition: color var(--transition); }
.cf-breadcrumb a:hover { color: var(--color-orange); }
.cf-breadcrumb i { font-size: 0.6rem; color: var(--color-border); }

/* ========== 筛选工具条 ========== */
.cf-filter-bar {
 background: var(--color-panel); border: 1px solid var(--color-border-cyan); border-radius: var(--radius-lg);
 padding: 20px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 36px;
 box-shadow: var(--shadow-cyan);
}
.cf-filter-bar__label { font-size: 0.8rem; font-weight: 600; color: var(--color-cyan); letter-spacing: 0.08em; white-space: nowrap; }
.cf-filter-bar select, .cf-filter-bar input {
 background: var(--color-panel-light); border: 1px solid var(--color-border); border-radius: var(--radius-md);
 color: var(--color-text); padding: 10px 14px; font-size: 0.88rem; min-width: 180px; transition: border-color var(--transition);
}
.cf-filter-bar select:focus, .cf-filter-bar input:focus { border-color: var(--color-orange); outline: none; }
.cf-filter-bar__group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ========== 赛程列表主体 ========== */
.cf-schedule-day { margin-bottom: 36px; }
.cf-schedule-day__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.cf-schedule-day__date {
 font-family: var(--font-mono); font-size: 1.05rem; font-weight: 600; color: var(--color-text-white);
 background: var(--color-panel); border: 1px solid var(--color-border); padding: 8px 18px; border-radius: var(--radius-pill);
}
.cf-schedule-day__tag { font-size: 0.78rem; font-weight: 600; color: var(--color-orange); background: rgba(255,107,53,.1); padding: 4px 12px; border-radius: var(--radius-pill); border: 1px solid rgba(255,107,53,.25); }
.cf-match-list { display: flex; flex-direction: column; gap: 14px; }
.cf-match-card {
 display: grid; grid-template-columns: 180px 1fr 200px; gap: 20px; align-items: center;
 background: var(--color-panel); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
 padding: 18px 22px; transition: all var(--transition); box-shadow: var(--shadow-card);
}
.cf-match-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(255,107,53,.3); }
.cf-match-card__meta { display: flex; flex-direction: column; gap: 4px; }
.cf-match-card__series { font-size: 0.75rem; font-weight: 600; color: var(--color-cyan); letter-spacing: 0.05em; text-transform: uppercase; }
.cf-match-card__stage { font-size: 0.82rem; color: var(--color-text-muted); }
.cf-match-card__matchup { display: flex; align-items: center; justify-content: center; gap: 16px; }
.cf-match-card__team { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 100px; }
.cf-team-badge { width: 46px; height: 46px; border-radius: 50%; background: var(--color-panel-light); border: 2px solid var(--color-border); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; color: var(--color-text-white); font-size: 0.9rem; }
.cf-team-badge--orange { border-color: var(--color-orange); }
.cf-team-badge--cyan { border-color: var(--color-cyan); }
.cf-match-card__team-name { font-size: 0.85rem; font-weight: 600; color: var(--color-text-white); text-align: center; }
.cf-match-card__vs { font-family: var(--font-mono); font-weight: 700; color: var(--color-gold); font-size: 1rem; white-space: nowrap; }
.cf-match-card__info { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.cf-match-card__time { font-family: var(--font-mono); font-size: 0.95rem; font-weight: 600; color: var(--color-text-white); }
.cf-status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: var(--radius-pill); }
.cf-status-pill--upcoming { color: var(--color-cyan); background: rgba(0,201,167,.1); border: 1px solid rgba(0,201,167,.3); }
.cf-status-pill--live { color: #fff; background: rgba(255,107,53,.2); border: 1px solid var(--color-orange); animation: cf-pulse 1.6s infinite; }
.cf-status-pill--done { color: var(--color-text-muted); background: rgba(139,149,165,.1); border: 1px solid var(--color-border); }
@keyframes cf-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,107,53,.4); } 50% { box-shadow: 0 0 0 6px rgba(255,107,53,0); } }
.cf-match-card__format { font-size: 0.75rem; color: var(--color-text-muted); }

/* ========== 数据概览 ========== */
.cf-mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.cf-mini-stat { background: var(--color-panel); border: 1px solid var(--color-border-cyan); border-radius: var(--radius-lg); padding: 20px; text-align: center; transition: all var(--transition); }
.cf-mini-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-cyan); }
.cf-mini-stat__num { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; color: var(--color-cyan); }
.cf-mini-stat__label { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 4px; }

/* ========== 相关专题卡片 ========== */
.cf-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cf-topic-card { background: var(--color-panel); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow-card); }
.cf-topic-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.cf-topic-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--color-panel-light); }
.cf-topic-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cf-topic-card:hover .cf-topic-card__img img { transform: scale(1.05); }
.cf-topic-card__body { padding: 18px 20px 20px; }
.cf-topic-card__title { font-size: 1rem; font-weight: 700; color: var(--color-text-white); margin-bottom: 8px; line-height: 1.45; }
.cf-topic-card__desc { font-size: 0.84rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 14px; }
.cf-topic-card__read { font-size: 0.82rem; font-weight: 600; color: var(--color-orange); transition: all var(--transition); }
.cf-topic-card__read:hover { color: var(--color-gold); }
.cf-topic-card__read i { font-size: 0.7rem; margin-left: 4px; transition: transform var(--transition); }
.cf-topic-card__read:hover i { transform: translateX(3px); }

/* ========== 订阅CTA ========== */
.cf-subscribe-bar {
 background: linear-gradient(135deg, rgba(255,107,53,.12) 0%, rgba(0,201,167,.08) 100%), var(--color-panel);
 border: 1px solid var(--color-border-cyan); border-radius: var(--radius-lg); padding: 32px 36px;
 display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow-cyan);
}
.cf-subscribe-bar__text { flex: 1; min-width: 260px; }
.cf-subscribe-bar__title { font-size: 1.2rem; font-weight: 700; color: var(--color-text-white); margin-bottom: 6px; }
.cf-subscribe-bar__desc { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }

/* ========== FAQ ========== */
.cf-faq-item { background: var(--color-panel); border: 1px solid var(--color-border); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; transition: all var(--transition); }
.cf-faq-item.is-active { border-color: var(--color-border-cyan); }
.cf-faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; background: transparent; border: none; color: var(--color-text-white); font-size: 0.98rem; font-weight: 600; cursor: pointer; text-align: left; transition: all var(--transition); }
.cf-faq-item__q:hover { color: var(--color-orange); }
.cf-faq-item__q i { font-size: 0.85rem; color: var(--color-orange); transition: transform var(--transition); flex-shrink: 0; }
.cf-faq-item.is-active .cf-faq-item__q i { transform: rotate(180deg); }
.cf-faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.cf-faq-item__a-inner { padding: 0 22px 20px; font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.85; border-left: 3px solid var(--color-orange); margin-left: 22px; }

/* ========== 栏目说明 ========== */
.cf-column-note { background: var(--color-panel-light); border: 1px dashed var(--color-border); border-radius: var(--radius-lg); padding: 24px 28px; }
.cf-column-note__title { font-size: 1rem; font-weight: 700; color: var(--color-text-white); margin-bottom: 10px; }
.cf-column-note p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.85; margin: 0; }

/* ========== FOOTER ========== */
.cf-footer { background: #0A0E14; border-top: 1px solid var(--color-border); padding: 56px 0 24px; }
.cf-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 40px; }
.cf-footer__brand .cf-logo { margin-bottom: 14px; display: inline-flex; }
.cf-footer__brand p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.8; max-width: 300px; }
.cf-footer h4 { font-size: 0.9rem; font-weight: 700; color: var(--color-text-white); margin-bottom: 14px; letter-spacing: 0.04em; }
.cf-footer__links { list-style: none; margin: 0; padding: 0; }
.cf-footer__links li { margin-bottom: 8px; }
.cf-footer__links a { font-size: 0.85rem; color: var(--color-text-muted); transition: color var(--transition); }
.cf-footer__links a:hover { color: var(--color-orange); }
.cf-footer__subscribe p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 14px; }
.cf-footer__copyright { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--color-border); font-size: 0.8rem; color: var(--color-text-muted); }
.cf-footer__copyright a { color: var(--color-text-muted); }
.cf-footer__copyright a:hover { color: var(--color-orange); }

/* ========== 查看更多 ========== */
.cf-more-wrap { display: flex; justify-content: center; margin-top: 12px; }
.cf-more-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; font-size: 0.88rem; font-weight: 600; color: var(--color-cyan); background: transparent; border: 1px solid rgba(0,201,167,.4); border-radius: var(--radius-md); transition: all var(--transition); cursor: pointer; }
.cf-more-btn:hover { background: rgba(0,201,167,.1); color: var(--color-cyan); transform: translateY(-2px); box-shadow: var(--shadow-cyan); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
 .cf-footer__grid { grid-template-columns: repeat(2, 1fr); }
 .cf-topic-grid { grid-template-columns: 1fr 1fr; }
 .cf-match-card { grid-template-columns: 140px 1fr 160px; gap: 12px; padding: 14px 16px; }
}
@media (max-width: 768px) {
 .cf-nav-desktop { display: none; }
 .cf-nav-toggle { display: flex; }
 .cf-header__cta .cf-btn { display: none; }
 .cf-cat-hero__title { font-size: 1.7rem; }
 .section { padding: 48px 0; }
 .cf-topic-grid { grid-template-columns: 1fr; }
 .cf-mini-stats { grid-template-columns: 1fr 1fr; }
 .cf-match-card { grid-template-columns: 1fr; gap: 10px; text-align: center; }
 .cf-match-card__info { align-items: center; }
 .cf-match-card__matchup { flex-wrap: wrap; }
 .cf-filter-bar { flex-direction: column; align-items: stretch; }
 .cf-filter-bar__group { flex-wrap: wrap; }
 .cf-filter-bar select, .cf-filter-bar input { min-width: auto; flex: 1; }
 .cf-subscribe-bar { flex-direction: column; text-align: center; padding: 24px 20px; }
 .cf-footer__grid { grid-template-columns: 1fr; gap: 24px; }
 .cf-footer__copyright { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
 .cf-container { padding: 0 16px; }
 .cf-cat-hero { padding: 28px 0 20px; }
 .cf-cat-hero__title { font-size: 1.5rem; }
 .cf-mini-stats { grid-template-columns: 1fr; }
 .section__title { font-size: 1.5rem; }
 .cf-btn { padding: 8px 16px; font-size: 0.8rem; }
}

/* roulang page: category3 */
:root {
            --color-bg: #0D1117;
            --color-panel: #161D27;
            --color-panel-light: #1B2430;
            --color-orange: #FF6B35;
            --color-orange-dark: #E55A2B;
            --color-cyan: #00C9A7;
            --color-cyan-dim: #0D8C76;
            --color-gold: #FFC857;
            --color-text: #D1D5DB;
            --color-text-white: #F5F7FA;
            --color-text-muted: #8B95A5;
            --color-border: #2A3038;
            --color-border-cyan: #1F6A5E;
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-pill: 999px;
            --shadow-card: 0 12px 32px rgba(0,0,0,.45);
            --shadow-hover: 0 20px 48px rgba(255,107,53,.18);
            --shadow-cyan: 0 8px 20px rgba(0,201,167,.12);
            --font-sans: 'Noto Sans SC','Source Han Sans','PingFang SC','Microsoft YaHei',sans-serif;
            --font-mono: 'JetBrains Mono','SFMono-Regular','Courier New',monospace;
            --transition: .25s cubic-bezier(.4,0,.2,1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--color-cyan);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover,
        a:focus {
            color: var(--color-orange);
            outline: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--color-orange);
            outline-offset: 2px;
        }

        button,
        input,
        select,
        textarea {
            font-family: var(--font-sans);
            font-size: 1rem;
        }

        .cf-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .cf-container--wide {
            max-width: 1320px;
        }

        .section {
            padding: 56px 0;
            position: relative;
        }

        .section--alt {
            background-color: #11161E;
        }

        .section--panel {
            background-color: #121820;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .section__header {
            margin-bottom: 36px;
        }

        .section__header--center {
            text-align: center;
        }

        .section__eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--color-cyan);
            background: rgba(0,201,167,.08);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(0,201,167,.22);
            margin-bottom: 14px;
        }

        .section__title {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.25;
            color: var(--color-text-white);
            margin-bottom: 14px;
        }

        .section__title--gradient {
            background: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section__desc {
            font-size: 1.02rem;
            color: var(--color-text-muted);
            max-width: 860px;
            line-height: 1.85;
        }

        .text-cyan { color: var(--color-cyan); }
        .text-orange { color: var(--color-orange); }
        .text-gold { color: var(--color-gold); }
        .text-white { color: var(--color-text-white); }
        .text-muted { color: var(--color-text-muted); }

        /* HEADER */
        .cf-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(13,17,23,.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
            padding: 0;
            height: 72px;
            display: flex;
            align-items: center;
        }

        .cf-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
        }

        .cf-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.32rem;
            font-weight: 700;
            color: var(--color-text-white);
            text-decoration: none;
            white-space: nowrap;
            letter-spacing: 0.02em;
            transition: color var(--transition);
        }

        .cf-logo:hover {
            color: var(--color-orange);
        }

        .cf-logo__icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0D1117;
            font-weight: 800;
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .cf-nav-desktop {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .cf-nav-desktop a {
            display: inline-block;
            padding: 8px 14px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--color-text-muted);
            border-radius: 8px;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .cf-nav-desktop a:hover {
            color: var(--color-text-white);
            background: rgba(255,255,255,.05);
        }

        .cf-nav-desktop a.cf-nav-active {
            color: var(--color-orange);
            background: rgba(255,107,53,.1);
            font-weight: 600;
        }

        .cf-header__cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cf-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            line-height: 1.2;
        }

        .cf-btn--primary {
            background: var(--color-orange);
            color: #fff;
            box-shadow: 0 6px 18px rgba(255,107,53,.25);
        }

        .cf-btn--primary:hover {
            background: var(--color-orange-dark);
            color: #fff;
            box-shadow: 0 10px 28px rgba(255,107,53,.35);
            transform: translateY(-2px);
        }

        .cf-btn--primary:hover::after {
            content: ' →';
            font-weight: 700;
            transition: transform var(--transition);
        }

        .cf-btn--secondary {
            background: transparent;
            color: var(--color-text-white);
            border: 1px solid rgba(0,201,167,.5);
        }

        .cf-btn--secondary:hover {
            background: rgba(0,201,167,.15);
            color: var(--color-text-white);
            border-color: var(--color-cyan);
        }

        .cf-nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 8px 12px;
            color: var(--color-text-white);
            font-size: 1.1rem;
            cursor: pointer;
        }

        /* BREADCRUMB */
        .cf-breadcrumb {
            padding: 20px 0 0;
            font-size: 0.88rem;
            color: var(--color-text-muted);
        }

        .cf-breadcrumb a {
            color: var(--color-text-muted);
            transition: color var(--transition);
        }

        .cf-breadcrumb a:hover {
            color: var(--color-orange);
        }

        .cf-breadcrumb__sep {
            margin: 0 8px;
            color: var(--color-border);
        }

        .cf-breadcrumb__current {
            color: var(--color-cyan);
            font-weight: 500;
        }

        /* CATEGORY HERO */
        .cf-cat-hero {
            padding: 32px 0 36px;
            border-bottom: 1px solid var(--color-border);
            background:
                radial-gradient(ellipse at 20% 40%, rgba(255,107,53,.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 30%, rgba(0,201,167,.05) 0%, transparent 55%),
                var(--color-bg);
        }

        .cf-cat-hero__inner {
            max-width: 900px;
        }

        .cf-cat-hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 10px;
            background: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cf-cat-hero__desc {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            max-width: 620px;
            line-height: 1.75;
        }

        /* FILTER BAR */
        .cf-filter-bar {
            background: var(--color-panel);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }

        .cf-filter-bar__label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-cyan);
            letter-spacing: 0.06em;
        }

        .cf-filter-bar select,
        .cf-filter-bar input[type="text"] {
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 9px 14px;
            color: var(--color-text);
            font-size: 0.9rem;
            min-width: 140px;
            appearance: none;
            -webkit-appearance: none;
            transition: border-color var(--transition);
        }

        .cf-filter-bar select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238B95A5' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 32px;
        }

        .cf-filter-bar select:focus,
        .cf-filter-bar input[type="text"]:focus {
            border-color: var(--color-orange);
            outline: none;
        }

        .cf-filter-bar__search {
            flex: 1;
            min-width: 200px;
            position: relative;
        }

        .cf-filter-bar__search input {
            width: 100%;
            padding-left: 38px;
        }

        .cf-filter-bar__search i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }

        /* INSIGHT ARTICLE CARDS */
        .cf-insight-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cf-insight-card {
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 24px 26px;
            display: flex;
            gap: 22px;
            align-items: flex-start;
            transition: all var(--transition);
            box-shadow: var(--shadow-card);
        }

        .cf-insight-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255,107,53,.35);
        }

        .cf-insight-card__img {
            flex-shrink: 0;
            width: 200px;
            height: 132px;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--color-panel-light);
            border: 1px solid var(--color-border);
        }

        .cf-insight-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .cf-insight-card:hover .cf-insight-card__img img {
            transform: scale(1.04);
        }

        .cf-insight-card__body {
            flex: 1;
            min-width: 0;
        }

        .cf-insight-card__date {
            font-family: var(--font-mono);
            font-size: 0.78rem;
            color: var(--color-text-muted);
            letter-spacing: 0.04em;
            display: block;
            margin-bottom: 8px;
        }

        .cf-insight-card__title {
            font-size: 1.18rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 8px;
            line-height: 1.35;
        }

        .cf-insight-card__title a {
            color: var(--color-text-white);
            transition: color var(--transition);
        }

        .cf-insight-card__title a:hover {
            color: var(--color-orange);
        }

        .cf-insight-card__summary {
            font-size: 0.92rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            margin-bottom: 12px;
            max-width: 680px;
        }

        .cf-insight-card__readmore {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--color-cyan);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all var(--transition);
        }

        .cf-insight-card__readmore:hover {
            color: var(--color-orange);
            gap: 10px;
        }

        .cf-insight-list__more {
            text-align: center;
            padding-top: 12px;
        }

        .cf-insight-list__more .cf-btn {
            min-width: 180px;
        }

        /* MINI STATS */
        .cf-stats-mini {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 28px;
        }

        .cf-stat-mini {
            background: var(--color-panel);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            text-align: center;
            transition: all var(--transition);
        }

        .cf-stat-mini:hover {
            border-color: var(--color-cyan);
            box-shadow: var(--shadow-cyan);
        }

        .cf-stat-mini__number {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-cyan);
            line-height: 1.2;
        }

        .cf-stat-mini__label {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-top: 4px;
        }

        /* RELATED CARDS */
        .cf-related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .cf-related-card {
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-card);
        }

        .cf-related-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255,107,53,.3);
        }

        .cf-related-card__img {
            height: 150px;
            overflow: hidden;
            background: var(--color-panel-light);
        }

        .cf-related-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .cf-related-card:hover .cf-related-card__img img {
            transform: scale(1.05);
        }

        .cf-related-card__body {
            padding: 18px 20px 20px;
        }

        .cf-related-card__title {
            font-size: 1.02rem;
            font-weight: 600;
            color: var(--color-text-white);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .cf-related-card__title a {
            color: var(--color-text-white);
        }

        .cf-related-card__title a:hover {
            color: var(--color-orange);
        }

        .cf-related-card__summary {
            font-size: 0.86rem;
            color: var(--color-text-muted);
            line-height: 1.65;
            margin-bottom: 10px;
        }

        .cf-related-card__link {
            font-size: 0.84rem;
            font-weight: 600;
            color: var(--color-cyan);
        }

        .cf-related-card__link:hover {
            color: var(--color-orange);
        }

        /* SUBSCRIBE CTA */
        .cf-subscribe-cta {
            background: linear-gradient(135deg, rgba(255,107,53,.1) 0%, rgba(0,201,167,.08) 100%);
            border: 1px solid rgba(255,107,53,.3);
            border-radius: var(--radius-lg);
            padding: 28px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cf-subscribe-cta__text h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 6px;
        }

        .cf-subscribe-cta__text p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        /* FAQ MINI */
        .cf-faq-mini {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 24px;
        }

        .cf-faq-item {
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: border-color var(--transition);
        }

        .cf-faq-item:hover {
            border-color: rgba(255,107,53,.4);
        }

        .cf-faq-item__q {
            padding: 16px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-weight: 600;
            color: var(--color-text-white);
            font-size: 0.98rem;
            user-select: none;
            position: relative;
        }

        .cf-faq-item__q::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            bottom: 12px;
            width: 3px;
            background: var(--color-orange);
            border-radius: 0 3px 3px 0;
        }

        .cf-faq-item__q i {
            color: var(--color-cyan);
            font-size: 0.85rem;
            transition: transform var(--transition);
            flex-shrink: 0;
        }

        .cf-faq-item.open .cf-faq-item__q i {
            transform: rotate(180deg);
        }

        .cf-faq-item__a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, padding .35s ease;
            padding: 0 20px;
            color: var(--color-text-muted);
            font-size: 0.92rem;
            line-height: 1.8;
            border-top: 0 solid var(--color-border);
        }

        .cf-faq-item.open .cf-faq-item__a {
            max-height: 280px;
            padding: 14px 20px 18px;
            border-top-width: 1px;
        }

        /* FOOTER */
        .cf-footer {
            background: #0A0E14;
            border-top: 1px solid var(--color-border);
            padding: 50px 0 0;
            margin-top: 60px;
        }

        .cf-footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.4fr;
            gap: 36px;
            padding-bottom: 36px;
        }

        .cf-footer__brand p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.75;
            margin-top: 12px;
            max-width: 340px;
        }

        .cf-footer h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-text-white);
            margin-bottom: 14px;
        }

        .cf-footer__links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .cf-footer__links li {
            margin-bottom: 8px;
        }

        .cf-footer__links a {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            transition: color var(--transition);
        }

        .cf-footer__links a:hover {
            color: var(--color-orange);
        }

        .cf-footer__subscribe p {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.65;
            margin-bottom: 12px;
        }

        .cf-footer__copyright {
            border-top: 1px solid var(--color-border);
            padding: 16px 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        .cf-footer__copyright a {
            color: var(--color-text-muted);
            transition: color var(--transition);
        }

        .cf-footer__copyright a:hover {
            color: var(--color-orange);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .cf-nav-desktop {
                gap: 0;
            }
            .cf-nav-desktop a {
                padding: 8px 10px;
                font-size: 0.85rem;
            }
            .cf-insight-card__img {
                width: 160px;
                height: 110px;
            }
            .cf-related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cf-footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            .cf-header {
                height: 64px;
            }
            .cf-nav-desktop {
                display: none;
            }
            .cf-nav-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .cf-header__cta {
                gap: 6px;
            }
            .cf-header__cta .cf-btn--secondary {
                display: none;
            }
            .cf-cat-hero h1 {
                font-size: 1.9rem;
            }
            .section {
                padding: 40px 0;
            }
            .section__title {
                font-size: 1.55rem;
            }
            .cf-insight-card {
                flex-direction: column;
                padding: 18px;
                gap: 14px;
            }
            .cf-insight-card__img {
                width: 100%;
                height: 160px;
            }
            .cf-stats-mini {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            .cf-stat-mini__number {
                font-size: 1.4rem;
            }
            .cf-related-grid {
                grid-template-columns: 1fr;
            }
            .cf-subscribe-cta {
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
            }
            .cf-footer__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .cf-filter-bar {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            .cf-filter-bar select {
                width: 100%;
            }
        }

        @media (max-width: 520px) {
            .cf-container {
                padding: 0 16px;
            }
            .cf-header__cta .cf-btn--primary {
                padding: 8px 14px;
                font-size: 0.82rem;
            }
            .cf-logo {
                font-size: 1.1rem;
            }
            .cf-logo__icon {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
            .cf-cat-hero h1 {
                font-size: 1.6rem;
            }
            .cf-cat-hero__desc {
                font-size: 0.92rem;
            }
            .cf-insight-card__title {
                font-size: 1.02rem;
            }
            .cf-stats-mini {
                grid-template-columns: 1fr 1fr;
            }
            .cf-stat-mini__number {
                font-size: 1.3rem;
            }
            .cf-footer__copyright {
                flex-direction: column;
                align-items: flex-start;
            }
            .section__header {
                margin-bottom: 24px;
            }
        }

        /* Mobile nav off-canvas */
        .cf-offcanvas {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--color-panel);
            z-index: 200;
            padding: 24px 20px;
            transition: right .35s cubic-bezier(.4,0,.2,1);
            overflow-y: auto;
            border-left: 1px solid var(--color-border);
            box-shadow: -12px 0 32px rgba(0,0,0,.5);
        }

        .cf-offcanvas.open {
            right: 0;
        }

        .cf-offcanvas__close {
            background: transparent;
            border: none;
            color: var(--color-text-muted);
            font-size: 1.2rem;
            cursor: pointer;
            display: block;
            margin-left: auto;
            margin-bottom: 20px;
            padding: 6px 10px;
        }

        .cf-offcanvas__nav {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
        }

        .cf-offcanvas__nav li {
            margin-bottom: 4px;
        }

        .cf-offcanvas__nav a {
            display: block;
            padding: 10px 14px;
            font-size: 0.95rem;
            color: var(--color-text);
            border-radius: 8px;
            transition: all var(--transition);
        }

        .cf-offcanvas__nav a:hover,
        .cf-offcanvas__nav a.cf-nav-active {
            color: var(--color-orange);
            background: rgba(255,107,53,.08);
        }

        .cf-offcanvas__cta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-top: 1px solid var(--color-border);
            padding-top: 18px;
        }

        .cf-offcanvas__cta .cf-btn {
            width: 100%;
        }

        .cf-offcanvas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,.6);
            z-index: 190;
            opacity: 0;
            pointer-events: none;
            transition: opacity .35s ease;
        }

        .cf-offcanvas-overlay.show {
            opacity: 1;
            pointer-events: auto;
        }

        @media (min-width: 769px) {
            .cf-offcanvas,
            .cf-offcanvas-overlay {
                display: none;
            }
        }

/* roulang page: category1 */
:root {
            --color-bg: #0D1117;
            --color-panel: #161D27;
            --color-panel-light: #1B2430;
            --color-orange: #FF6B35;
            --color-orange-dark: #E55A2B;
            --color-cyan: #00C9A7;
            --color-cyan-dim: #0D8C76;
            --color-gold: #FFC857;
            --color-text: #D1D5DB;
            --color-text-white: #F5F7FA;
            --color-text-muted: #8B95A5;
            --color-border: #2A3038;
            --color-border-cyan: #1F6A5E;
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-pill: 999px;
            --shadow-card: 0 12px 32px rgba(0,0,0,.45);
            --shadow-hover: 0 20px 48px rgba(255,107,53,.18);
            --shadow-cyan: 0 8px 20px rgba(0,201,167,.12);
            --font-sans: 'Noto Sans SC','Source Han Sans','PingFang SC','Microsoft YaHei',sans-serif;
            --font-mono: 'JetBrains Mono','SFMono-Regular','Courier New',monospace;
            --transition: .25s cubic-bezier(.4,0,.2,1);
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--color-cyan);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--color-orange);
            outline: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--color-orange);
            outline-offset: 2px;
        }
        button,
        input,
        select,
        textarea {
            font-family: var(--font-sans);
            font-size: 1rem;
        }
        .cf-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .cf-container--wide {
            max-width: 1320px;
        }
        .section {
            padding: 64px 0;
            position: relative;
        }
        .section--alt {
            background-color: #11161E;
        }
        .section--panel {
            background-color: #121820;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }
        .section__header {
            margin-bottom: 36px;
        }
        .section__header--center {
            text-align: center;
        }
        .section__eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--color-cyan);
            background: rgba(0,201,167,.08);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(0,201,167,.22);
            margin-bottom: 14px;
        }
        .section__title {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.25;
            color: var(--color-text-white);
            margin-bottom: 12px;
        }
        .section__title--gradient {
            background: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section__desc {
            font-size: 1.02rem;
            color: var(--color-text-muted);
            max-width: 860px;
            line-height: 1.85;
        }
        .section__header--center .section__desc {
            margin-left: auto;
            margin-right: auto;
        }
        .text-cyan { color: var(--color-cyan); }
        .text-orange { color: var(--color-orange); }
        .text-gold { color: var(--color-gold); }
        .text-white { color: var(--color-text-white); }
        .text-muted { color: var(--color-text-muted); }

        /* ========== HEADER / NAVIGATION ========== */
        .cf-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(13,17,23,.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
            padding: 0;
            height: 72px;
            display: flex;
            align-items: center;
        }
        .cf-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
        }
        .cf-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.32rem;
            font-weight: 700;
            color: var(--color-text-white);
            text-decoration: none;
            white-space: nowrap;
            letter-spacing: 0.02em;
            transition: color var(--transition);
        }
        .cf-logo:hover {
            color: var(--color-orange);
        }
        .cf-logo__icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0D1117;
            font-weight: 800;
            font-size: 1.05rem;
            flex-shrink: 0;
        }
        .cf-nav-desktop {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .cf-nav-desktop a {
            display: inline-block;
            padding: 10px 14px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-muted);
            border-radius: var(--radius-md);
            transition: color var(--transition), background-color var(--transition);
            white-space: nowrap;
        }
        .cf-nav-desktop a:hover,
        .cf-nav-desktop a:focus {
            color: var(--color-orange);
            background: rgba(255,107,53,.08);
        }
        .cf-nav-desktop a.cf-nav-active {
            color: var(--color-orange);
            background: rgba(255,107,53,.12);
            font-weight: 600;
        }
        .cf-header__cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .cf-nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--color-border);
            color: var(--color-text-white);
            width: 42px;
            height: 42px;
            border-radius: var(--radius-md);
            cursor: pointer;
            font-size: 1.1rem;
            transition: border-color var(--transition), color var(--transition);
        }
        .cf-nav-toggle:hover {
            border-color: var(--color-orange);
            color: var(--color-orange);
        }

        /* ========== BUTTONS ========== */
        .cf-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 22px;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            transition: background-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
            text-decoration: none;
            white-space: nowrap;
        }
        .cf-btn--primary {
            background-color: var(--color-orange);
            color: #fff;
            box-shadow: 0 8px 20px rgba(255,107,53,.25);
        }
        .cf-btn--primary:hover,
        .cf-btn--primary:focus {
            background-color: var(--color-orange-dark);
            color: #fff;
            box-shadow: 0 12px 28px rgba(255,107,53,.35);
            transform: translateY(-2px);
        }
        .cf-btn--primary::after {
            content: "\f061";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.8rem;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity var(--transition), transform var(--transition);
        }
        .cf-btn--primary:hover::after,
        .cf-btn--primary:focus::after {
            opacity: 1;
            transform: translateX(0);
        }
        .cf-btn--secondary {
            background-color: transparent;
            color: var(--color-text-white);
            border: 1px solid #4B5563;
        }
        .cf-btn--secondary:hover,
        .cf-btn--secondary:focus {
            background-color: #4B5563;
            color: #0D1117;
            border-color: #4B5563;
        }
        .cf-btn--sm {
            padding: 8px 16px;
            font-size: 0.85rem;
        }

        /* ========== BREADCRUMB ========== */
        .cf-breadcrumb {
            padding: 20px 0 0;
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }
        .cf-breadcrumb ol {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .cf-breadcrumb li {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .cf-breadcrumb li + li::before {
            content: "/";
            color: var(--color-border);
        }
        .cf-breadcrumb a {
            color: var(--color-text-muted);
            text-decoration: none;
        }
        .cf-breadcrumb a:hover {
            color: var(--color-orange);
        }
        .cf-breadcrumb .current {
            color: var(--color-text-white);
        }

        /* ========== CATEGORY BANNER ========== */
        .cf-cat-banner {
            padding: 48px 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            min-height: 220px;
            display: flex;
            align-items: center;
        }
        .cf-cat-banner::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(13,17,23,.95) 0%, rgba(13,17,23,.78) 55%, rgba(13,17,23,.35) 100%);
        }
        .cf-cat-banner__content {
            position: relative;
            z-index: 1;
            max-width: 720px;
        }
        .cf-cat-banner__content h1 {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .cf-cat-banner__content p {
            font-size: 1.05rem;
            color: var(--color-text);
            margin: 0;
            line-height: 1.8;
        }

        /* ========== FILTER TOOLBAR ========== */
        .cf-filter-bar {
            background: var(--color-panel);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
            box-shadow: var(--shadow-cyan);
        }
        .cf-filter-bar label {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-bottom: 4px;
            display: block;
        }
        .cf-filter-bar select,
        .cf-filter-bar input {
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            color: var(--color-text-white);
            border-radius: var(--radius-md);
            padding: 9px 14px;
            font-size: 0.9rem;
            min-width: 150px;
            transition: border-color var(--transition);
        }
        .cf-filter-bar select:focus,
        .cf-filter-bar input:focus {
            border-color: var(--color-orange);
            outline: none;
        }
        .cf-filter-bar__group {
            flex: 1 1 160px;
        }
        .cf-filter-bar__search {
            flex: 1 1 220px;
        }
        .cf-filter-bar__search input {
            width: 100%;
        }

        /* ========== LIVE SCORE LIST ========== */
        .cf-live-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .cf-live-row {
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-card);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .cf-live-row:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255,107,53,.3);
        }
        .cf-live-row__teams {
            display: flex;
            align-items: center;
            gap: 18px;
            flex: 2 1 340px;
        }
        .cf-live-team {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }
        .cf-live-team__logo {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            border: 2px solid var(--color-border);
            flex-shrink: 0;
        }
        .cf-live-team__name {
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--color-text-white);
            white-space: nowrap;
        }
        .cf-live-team--right {
            justify-content: flex-end;
            text-align: right;
        }
        .cf-live-score {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-gold);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .cf-live-score__divider {
            color: var(--color-text-muted);
            font-weight: 400;
            font-size: 1.4rem;
        }
        .cf-live-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 1 1 240px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .cf-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .cf-badge--live {
            background: rgba(255,107,53,.12);
            color: var(--color-orange);
            border: 1px solid rgba(255,107,53,.35);
        }
        .cf-badge--done {
            background: rgba(139,149,165,.12);
            color: var(--color-text-muted);
            border: 1px solid var(--color-border);
        }
        .cf-badge--upcoming {
            background: rgba(0,201,167,.1);
            color: var(--color-cyan);
            border: 1px solid rgba(0,201,167,.3);
        }
        .cf-live-meta__map,
        .cf-live-meta__bo {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            font-weight: 500;
            white-space: nowrap;
        }
        .cf-live-meta__bo {
            font-family: var(--font-mono);
            color: var(--color-text-white);
            background: rgba(255,255,255,.06);
            padding: 4px 10px;
            border-radius: var(--radius-pill);
        }
        .cf-mini-bars {
            display: flex;
            gap: 6px;
            align-items: flex-end;
            height: 24px;
        }
        .cf-mini-bars span {
            width: 6px;
            background: var(--color-cyan);
            border-radius: 2px;
            opacity: .7;
        }
        .cf-mini-bars span:nth-child(1) { height: 40%; }
        .cf-mini-bars span:nth-child(2) { height: 65%; }
        .cf-mini-bars span:nth-child(3) { height: 50%; }
        .cf-mini-bars span:nth-child(4) { height: 85%; }
        .cf-mini-bars span:nth-child(5) { height: 70%; }
        .cf-mini-bars--orange span { background: var(--color-orange); }

        .cf-view-more {
            text-align: center;
            margin-top: 28px;
        }

        /* ========== DATA SUMMARY ========== */
        .cf-mini-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin-top: 8px;
        }
        .cf-mini-stat {
            background: var(--color-panel);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-lg);
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow-cyan);
        }
        .cf-mini-stat__num {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-cyan);
            line-height: 1.2;
        }
        .cf-mini-stat__label {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-top: 8px;
        }

        /* ========== RELATED ARTICLES ========== */
        .cf-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }
        .cf-article-card {
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-card);
            transition: transform var(--transition), box-shadow var(--transition);
            display: flex;
            flex-direction: column;
        }
        .cf-article-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .cf-article-card__img {
            height: 170px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .cf-article-card__body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .cf-article-card__title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .cf-article-card__desc {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 16px;
        }
        .cf-article-card__link {
            align-self: flex-start;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-cyan);
        }
        .cf-article-card__link:hover {
            color: var(--color-orange);
        }

        /* ========== CTA SECTION ========== */
        .cf-cta-card {
            background: var(--color-panel-light);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-card);
        }
        .cf-cta-card__text h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 10px;
        }
        .cf-cta-card__text p {
            color: var(--color-text-muted);
            margin: 0;
            line-height: 1.8;
            max-width: 560px;
        }

        /* ========== FAQ ========== */
        .cf-faq-item {
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
        }
        .cf-faq-question {
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 600;
            color: var(--color-text-white);
            gap: 16px;
            user-select: none;
            border-left: 4px solid var(--color-orange);
            transition: background-color var(--transition);
        }
        .cf-faq-question:hover {
            background: var(--color-panel-light);
        }
        .cf-faq-question i {
            color: var(--color-text-muted);
            transition: transform var(--transition);
            flex-shrink: 0;
        }
        .cf-faq-item.open .cf-faq-question i {
            transform: rotate(180deg);
            color: var(--color-orange);
        }
        .cf-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition), padding var(--transition);
            padding: 0 22px;
        }
        .cf-faq-item.open .cf-faq-answer {
            max-height: 400px;
            padding: 0 22px 18px;
        }
        .cf-faq-answer p {
            margin: 0;
            color: var(--color-text-muted);
            line-height: 1.85;
            font-size: 0.95rem;
        }

        /* ========== EDITOR NOTES ========== */
        .cf-note-block {
            background: var(--color-panel);
            border-left: 4px solid var(--color-cyan);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            color: var(--color-text-muted);
            line-height: 1.9;
            font-size: 0.95rem;
        }

        /* ========== FOOTER ========== */
        .cf-footer {
            background: #0A0E13;
            border-top: 1px solid var(--color-border);
            padding: 56px 0 24px;
            color: var(--color-text-muted);
        }
        .cf-footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.4fr;
            gap: 36px;
            margin-bottom: 36px;
        }
        .cf-footer__brand p {
            font-size: 0.9rem;
            line-height: 1.8;
            margin-top: 14px;
        }
        .cf-footer h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 14px;
        }
        .cf-footer__links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .cf-footer__links li {
            margin-bottom: 8px;
        }
        .cf-footer__links a {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            text-decoration: none;
            transition: color var(--transition);
        }
        .cf-footer__links a:hover {
            color: var(--color-orange);
        }
        .cf-footer__subscribe p {
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 12px;
        }
        .cf-footer__copyright {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.85rem;
            border-top: 1px solid var(--color-border);
            padding-top: 20px;
        }
        .cf-footer__copyright a {
            color: var(--color-text-muted);
        }
        .cf-footer__copyright a:hover {
            color: var(--color-orange);
        }

        /* ========== OFF-CANVAS ========== */
        .off-canvas {
            background: #0D1117;
            padding: 24px;
        }
        .off-canvas .close-button {
            color: var(--color-text-white);
            font-size: 1.6rem;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 4px 10px;
            margin-bottom: 20px;
        }
        .cf-mobile-nav {
            list-style: none;
            margin: 0 0 24px;
            padding: 0;
        }
        .cf-mobile-nav li {
            margin-bottom: 4px;
        }
        .cf-mobile-nav a {
            display: block;
            padding: 13px 16px;
            color: var(--color-text);
            font-size: 1.02rem;
            font-weight: 500;
            border-radius: var(--radius-md);
            transition: background-color var(--transition), color var(--transition);
        }
        .cf-mobile-nav a:hover,
        .cf-mobile-nav a:focus {
            background: rgba(255,107,53,.08);
            color: var(--color-orange);
        }
        .cf-mobile-nav .active a {
            background: rgba(255,107,53,.12);
            color: var(--color-orange);
            font-weight: 600;
        }
        .cf-mobile-cta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-top: 1px solid var(--color-border);
            padding-top: 20px;
        }
        .cf-mobile-cta .cf-btn {
            width: 100%;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .cf-nav-desktop {
                display: none;
            }
            .cf-nav-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .cf-footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .cf-live-row {
                flex-direction: column;
                align-items: flex-start;
            }
            .cf-live-row__teams {
                width: 100%;
            }
            .cf-live-meta {
                width: 100%;
                justify-content: flex-start;
            }
        }
        @media (max-width: 768px) {
            .section {
                padding: 48px 0;
            }
            .cf-cat-banner__content h1 {
                font-size: 2rem;
            }
            .cf-cat-banner {
                min-height: 180px;
                padding: 36px 0;
            }
            .cf-filter-bar {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                padding: 16px;
            }
            .cf-filter-bar select,
            .cf-filter-bar input {
                width: 100%;
                min-width: 0;
            }
            .cf-footer__grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .cf-cta-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 28px 20px;
            }
            .cf-live-team {
                flex-direction: column;
                gap: 6px;
                text-align: center;
            }
            .cf-live-team--right {
                align-items: center;
            }
            .cf-live-score {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 520px) {
            .cf-container {
                padding: 0 16px;
            }
            .cf-header {
                height: 64px;
            }
            .cf-logo {
                font-size: 1.15rem;
            }
            .cf-logo__icon {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
            .cf-header__cta .cf-btn {
                padding: 8px 12px;
                font-size: 0.8rem;
            }
            .cf-live-row {
                padding: 16px;
            }
            .cf-live-row__teams {
                flex-direction: column;
                gap: 12px;
                align-items: center;
            }
            .cf-live-team {
                flex-direction: row;
                justify-content: center;
            }
            .cf-live-team--right {
                flex-direction: row-reverse;
                justify-content: center;
            }
            .cf-live-score {
                font-size: 1.5rem;
            }
            .section__title {
                font-size: 1.6rem;
            }
        }

/* roulang page: category4 */
:root {
            --color-bg: #0D1117;
            --color-panel: #161D27;
            --color-panel-light: #1B2430;
            --color-orange: #FF6B35;
            --color-orange-dark: #E55A2B;
            --color-cyan: #00C9A7;
            --color-cyan-dim: #0D8C76;
            --color-gold: #FFC857;
            --color-text: #D1D5DB;
            --color-text-white: #F5F7FA;
            --color-text-muted: #8B95A5;
            --color-border: #2A3038;
            --color-border-cyan: #1F6A5E;
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-pill: 999px;
            --shadow-card: 0 12px 32px rgba(0,0,0,.45);
            --shadow-hover: 0 20px 48px rgba(255,107,53,.18);
            --shadow-cyan: 0 8px 20px rgba(0,201,167,.12);
            --font-sans: 'Noto Sans SC', 'Source Han Sans', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --font-mono: 'JetBrains Mono', 'SFMono-Regular', 'Courier New', monospace;
            --transition: .25s cubic-bezier(.4,0,.2,1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--color-cyan);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--color-orange);
            outline: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--color-orange);
            outline-offset: 2px;
        }

        button,
        input,
        select,
        textarea {
            font-family: var(--font-sans);
            font-size: 1rem;
        }

        .cf-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .cf-container--wide {
            max-width: 1320px;
        }

        .section {
            padding: 64px 0;
            position: relative;
        }
        .section--alt {
            background-color: #11161E;
        }
        .section--panel {
            background-color: #121820;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .section__header {
            margin-bottom: 40px;
        }
        .section__header--center {
            text-align: center;
        }
        .section__eyebrow {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--color-cyan);
            background: rgba(0,201,167,.08);
            padding: 5px 13px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(0,201,167,.22);
            margin-bottom: 12px;
        }
        .section__title {
            font-size: 1.85rem;
            font-weight: 700;
            line-height: 1.3;
            color: var(--color-text-white);
            margin-bottom: 12px;
        }
        .section__title--gradient {
            background: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section__desc {
            font-size: 1rem;
            color: var(--color-text-muted);
            max-width: 860px;
            line-height: 1.85;
        }
        .section__header--center .section__desc {
            margin-left: auto;
            margin-right: auto;
        }

        .text-cyan { color: var(--color-cyan); }
        .text-orange { color: var(--color-orange); }
        .text-gold { color: var(--color-gold); }
        .text-white { color: var(--color-text-white); }
        .text-muted { color: var(--color-text-muted); }

        /* ========== HEADER / NAVIGATION ========== */
        .cf-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(13,17,23,.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
            padding: 0;
            height: 72px;
            display: flex;
            align-items: center;
        }
        .cf-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            width: 100%;
        }
        .cf-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-text-white);
            text-decoration: none;
            white-space: nowrap;
            letter-spacing: 0.02em;
            transition: color var(--transition);
            flex-shrink: 0;
        }
        .cf-logo:hover { color: var(--color-orange); }
        .cf-logo__icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0D1117;
            font-weight: 800;
            font-size: 1.05rem;
            flex-shrink: 0;
        }
        .cf-nav-desktop {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
        }
        .cf-nav-desktop a {
            display: inline-block;
            padding: 8px 12px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-muted);
            border-radius: var(--radius-md);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .cf-nav-desktop a:hover {
            color: var(--color-orange);
            background: rgba(255,107,53,.08);
        }
        .cf-nav-desktop a.cf-nav-active {
            color: var(--color-orange);
            background: rgba(255,107,53,.12);
            font-weight: 600;
        }
        .cf-header__cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .cf-nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            color: var(--color-text-white);
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all var(--transition);
        }
        .cf-nav-toggle:hover {
            border-color: var(--color-orange);
            color: var(--color-orange);
        }

        /* ========== BUTTONS ========== */
        .cf-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 22px;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .cf-btn--primary {
            background: var(--color-orange);
            color: #fff;
            box-shadow: 0 4px 16px rgba(255,107,53,.25);
        }
        .cf-btn--primary:hover {
            background: var(--color-orange-dark);
            color: #fff;
            box-shadow: 0 8px 24px rgba(255,107,53,.35);
            transform: translateY(-2px);
        }
        .cf-btn--primary:hover::after {
            content: " \2192";
            font-weight: 700;
        }
        .cf-btn--secondary {
            background: transparent;
            color: var(--color-cyan);
            border: 1px solid var(--color-border-cyan);
        }
        .cf-btn--secondary:hover {
            background: var(--color-cyan);
            color: #0D1117;
            border-color: var(--color-cyan);
            transform: translateY(-2px);
        }
        .cf-btn--large {
            padding: 14px 30px;
            font-size: 1rem;
        }
        .cf-btn--small {
            padding: 7px 16px;
            font-size: 0.82rem;
        }

        /* ========== BREADCRUMB ========== */
        .cf-breadcrumb {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: var(--color-text-muted);
            flex-wrap: wrap;
            padding: 0;
        }
        .cf-breadcrumb a {
            color: var(--color-cyan);
        }
        .cf-breadcrumb a:hover { color: var(--color-orange); }
        .cf-breadcrumb span.sep { color: #444B55; }
        .cf-breadcrumb span.current {
            color: var(--color-text-white);
            font-weight: 500;
        }

        /* ========== CATEGORY HERO ========== */
        .cf-cat-hero {
            padding: 28px 0 20px;
            background: #0A0E13;
            border-bottom: 1px solid var(--color-border);
            position: relative;
            overflow: hidden;
        }
        .cf-cat-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 15% 50%, rgba(255,107,53,.07) 0%, transparent 60%),
                        radial-gradient(ellipse at 85% 50%, rgba(0,201,167,.06) 0%, transparent 55%);
            pointer-events: none;
        }
        .cf-cat-hero__content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            padding-top: 10px;
        }
        .cf-cat-hero h1 {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
            line-height: 1.2;
        }
        .cf-cat-hero__desc {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            max-width: 520px;
            line-height: 1.7;
        }

        /* ========== FILTER TOOLBAR ========== */
        .cf-filter-bar {
            background: var(--color-panel);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-cyan);
        }
        .cf-filter-bar label {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            font-weight: 500;
            white-space: nowrap;
        }
        .cf-filter-bar select {
            background-color: #0D1117;
            color: var(--color-text-white);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 8px 12px;
            font-size: 0.85rem;
            min-width: 120px;
            cursor: pointer;
            transition: border-color var(--transition);
        }
        .cf-filter-bar select:focus {
            border-color: var(--color-orange);
            outline: none;
        }
        .cf-filter-bar__divider {
            width: 1px;
            height: 28px;
            background: var(--color-border);
        }

        /* ========== ARTICLE CARDS ========== */
        .cf-article-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .cf-article-card {
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
        }
        .cf-article-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255,107,53,.25);
        }
        .cf-article-card__image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        .cf-article-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s cubic-bezier(.2,0,.2,1);
        }
        .cf-article-card:hover .cf-article-card__image img {
            transform: scale(1.05);
        }
        .cf-article-card__body {
            padding: 18px 20px 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .cf-article-card__date {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--color-cyan);
            margin-bottom: 8px;
            letter-spacing: 0.04em;
        }
        .cf-article-card__title {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--color-text-white);
            line-height: 1.4;
            margin-bottom: 8px;
        }
        .cf-article-card__summary {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.75;
            margin-bottom: 16px;
            flex: 1;
        }
        .cf-article-card__read {
            align-self: flex-start;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-orange);
            transition: color var(--transition);
        }
        .cf-article-card__read:hover {
            color: var(--color-gold);
        }

        /* ========== STAT OVERVIEW ========== */
        .cf-stat-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .cf-stat-mini {
            background: var(--color-panel);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: var(--shadow-cyan);
            transition: all var(--transition);
        }
        .cf-stat-mini:hover {
            border-color: rgba(0,201,167,.45);
            transform: translateY(-3px);
        }
        .cf-stat-mini__icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-md);
            background: rgba(0,201,167,.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-cyan);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .cf-stat-mini__value {
            font-family: var(--font-mono);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-gold);
            line-height: 1.1;
        }
        .cf-stat-mini__label {
            font-size: 0.82rem;
            color: var(--color-text-muted);
        }

        /* ========== RELATED CARD ========== */
        .cf-related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .cf-related-card {
            background: var(--color-panel-light);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            border: 1px solid var(--color-border);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .cf-related-card:hover {
            border-color: rgba(255,107,53,.3);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .cf-related-card__tag {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-cyan);
        }
        .cf-related-card__title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-text-white);
            line-height: 1.45;
        }
        .cf-related-card__summary {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            line-height: 1.7;
        }
        .cf-related-card__link {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-orange);
            align-self: flex-start;
            margin-top: 4px;
        }
        .cf-related-card__link:hover {
            color: var(--color-gold);
        }

        /* ========== COLUMN INTRO ========== */
        .cf-column-intro {
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            border-left: 4px solid var(--color-orange);
            box-shadow: var(--shadow-card);
        }
        .cf-column-intro p {
            font-size: 0.95rem;
            color: var(--color-text);
            line-height: 1.85;
            margin: 0;
        }

        /* ========== SUBSCRIBE CTA ========== */
        .cf-subscribe-bar {
            background: linear-gradient(135deg, #161D27 0%, #1B2430 100%);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            box-shadow: var(--shadow-cyan);
        }
        .cf-subscribe-bar__text h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin: 0 0 6px;
        }
        .cf-subscribe-bar__text p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        /* ========== FAQ ========== */
        .cf-faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .cf-faq-item {
            background: var(--color-panel);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            overflow: hidden;
            transition: border-color var(--transition);
        }
        .cf-faq-item:hover {
            border-color: rgba(255,107,53,.3);
        }
        .cf-faq-q {
            width: 100%;
            background: transparent;
            border: none;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            text-align: left;
            color: var(--color-text-white);
            font-size: 0.95rem;
            font-weight: 600;
            transition: all var(--transition);
            position: relative;
        }
        .cf-faq-q:hover {
            background: rgba(255,107,53,.04);
            color: var(--color-orange);
        }
        .cf-faq-q::before {
            content: "";
            width: 3px;
            height: 20px;
            background: var(--color-orange);
            border-radius: 2px;
            flex-shrink: 0;
        }
        .cf-faq-q .faq-icon {
            margin-left: auto;
            color: var(--color-text-muted);
            font-size: 0.85rem;
            transition: transform var(--transition);
        }
        .cf-faq-a {
            padding: 0 20px 18px 44px;
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.8;
            display: none;
        }
        .cf-faq-item.open .cf-faq-a {
            display: block;
        }
        .cf-faq-item.open .cf-faq-q .faq-icon {
            transform: rotate(180deg);
            color: var(--color-orange);
        }
        .cf-faq-item.open {
            border-color: rgba(0,201,167,.3);
        }

        /* ========== FOOTER ========== */
        .cf-footer {
            background: #0A0E13;
            border-top: 1px solid var(--color-border);
            padding: 52px 0 28px;
            margin-top: 0;
        }
        .cf-footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .cf-footer__brand p {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.8;
            margin-top: 10px;
            max-width: 300px;
        }
        .cf-footer h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }
        .cf-footer__links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .cf-footer__links a {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            transition: color var(--transition);
        }
        .cf-footer__links a:hover {
            color: var(--color-orange);
        }
        .cf-footer__subscribe p {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .cf-footer__copyright {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--color-border);
            font-size: 0.82rem;
            color: var(--color-text-muted);
        }
        .cf-footer__copyright a {
            color: var(--color-cyan);
        }
        .cf-footer__copyright a:hover {
            color: var(--color-orange);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .cf-nav-desktop {
                gap: 0;
            }
            .cf-nav-desktop a {
                padding: 8px 8px;
                font-size: 0.82rem;
            }
            .cf-article-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cf-related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cf-footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 768px) {
            .cf-nav-desktop {
                display: none;
            }
            .cf-nav-toggle {
                display: flex;
            }
            .cf-header__cta .cf-btn--secondary {
                display: none;
            }
            .cf-header__cta .cf-btn--primary {
                padding: 8px 16px;
                font-size: 0.82rem;
            }
            .cf-cat-hero h1 {
                font-size: 1.6rem;
            }
            .cf-cat-hero__desc {
                font-size: 0.88rem;
            }
            .cf-filter-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            .cf-filter-bar__divider {
                display: none;
            }
            .cf-article-grid {
                grid-template-columns: 1fr;
            }
            .cf-stat-row {
                grid-template-columns: 1fr;
            }
            .cf-related-grid {
                grid-template-columns: 1fr;
            }
            .cf-footer__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .cf-subscribe-bar {
                flex-direction: column;
                text-align: center;
            }
            .section {
                padding: 48px 0;
            }
        }
        @media (max-width: 520px) {
            .cf-container {
                padding: 0 16px;
            }
            .cf-header {
                height: 64px;
            }
            .cf-logo {
                font-size: 1.1rem;
            }
            .cf-logo__icon {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
                border-radius: 8px;
            }
            .cf-header__cta .cf-btn--primary {
                padding: 7px 12px;
                font-size: 0.78rem;
            }
            .cf-cat-hero h1 {
                font-size: 1.35rem;
            }
            .section {
                padding: 40px 0;
            }
            .section__title {
                font-size: 1.5rem;
            }
            .cf-article-card__image {
                height: 150px;
            }
            .cf-column-intro {
                padding: 20px 18px;
            }
            .cf-subscribe-bar {
                padding: 20px 18px;
            }
            .cf-footer__copyright {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Off-canvas mobile nav */
        .cf-offcanvas {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            max-width: 85vw;
            height: 100vh;
            background: #0D1117;
            border-left: 1px solid var(--color-border);
            z-index: 200;
            transition: right .3s cubic-bezier(.4,0,.2,1);
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            overflow-y: auto;
        }
        .cf-offcanvas.open {
            right: 0;
        }
        .cf-offcanvas a {
            display: block;
            padding: 12px 14px;
            font-size: 0.95rem;
            color: var(--color-text-white);
            border-radius: var(--radius-md);
            transition: all var(--transition);
        }
        .cf-offcanvas a:hover {
            background: rgba(255,107,53,.1);
            color: var(--color-orange);
        }
        .cf-offcanvas a.cf-nav-active {
            background: rgba(255,107,53,.15);
            color: var(--color-orange);
            font-weight: 600;
        }
        .cf-offcanvas__cta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: auto;
            padding-top: 16px;
            border-top: 1px solid var(--color-border);
        }
        .cf-offcanvas-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.55);
            z-index: 150;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s ease;
        }
        .cf-offcanvas-backdrop.show {
            opacity: 1;
            pointer-events: auto;
        }
        .cf-offcanvas__close {
            align-self: flex-end;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            color: var(--color-text-white);
            width: 36px;
            height: 36px;
            cursor: pointer;
            font-size: 1rem;
            transition: all var(--transition);
        }
        .cf-offcanvas__close:hover {
            border-color: var(--color-orange);
            color: var(--color-orange);
        }

/* roulang page: category5 */
:root {
            --color-bg: #0D1117;
            --color-panel: #161D27;
            --color-panel-light: #1B2430;
            --color-orange: #FF6B35;
            --color-orange-dark: #E55A2B;
            --color-cyan: #00C9A7;
            --color-cyan-dim: #0D8C76;
            --color-gold: #FFC857;
            --color-text: #D1D5DB;
            --color-text-white: #F5F7FA;
            --color-text-muted: #8B95A5;
            --color-border: #2A3038;
            --color-border-cyan: #1F6A5E;
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-pill: 999px;
            --shadow-card: 0 12px 32px rgba(0,0,0,.45);
            --shadow-hover: 0 20px 48px rgba(255,107,53,.18);
            --shadow-cyan: 0 8px 20px rgba(0,201,167,.12);
            --font-sans: 'Noto Sans SC','Source Han Sans','PingFang SC','Microsoft YaHei',sans-serif;
            --font-mono: 'JetBrains Mono','SFMono-Regular','Courier New',monospace;
            --transition: .25s cubic-bezier(.4,0,.2,1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--color-cyan);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover,
        a:focus {
            color: var(--color-orange);
            outline: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--color-orange);
            outline-offset: 2px;
        }

        button,
        input,
        select,
        textarea {
            font-family: var(--font-sans);
            font-size: 1rem;
        }

        .cf-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .cf-container--wide {
            max-width: 1320px;
        }

        .section {
            padding: 64px 0;
            position: relative;
        }

        .section--alt {
            background-color: #11161E;
        }

        .section--panel {
            background-color: #121820;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .section__header {
            margin-bottom: 40px;
        }

        .section__header--center {
            text-align: center;
        }

        .section__eyebrow {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--color-cyan);
            background: rgba(0,201,167,.08);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(0,201,167,.22);
            margin-bottom: 14px;
        }

        .section__title {
            font-size: 1.85rem;
            font-weight: 700;
            line-height: 1.3;
            color: var(--color-text-white);
            margin-bottom: 14px;
        }

        .section__title--gradient {
            background: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section__desc {
            font-size: 1.02rem;
            color: var(--color-text-muted);
            max-width: 860px;
            line-height: 1.85;
        }

        .section__header--center .section__desc {
            margin-left: auto;
            margin-right: auto;
        }

        .text-cyan {
            color: var(--color-cyan);
        }
        .text-orange {
            color: var(--color-orange);
        }
        .text-gold {
            color: var(--color-gold);
        }
        .text-white {
            color: var(--color-text-white);
        }
        .text-muted {
            color: var(--color-text-muted);
        }

        /* ========== HEADER / NAVIGATION ========== */
        .cf-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(13,17,23,.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
            padding: 0;
            height: 72px;
            display: flex;
            align-items: center;
        }

        .cf-header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
        }

        .cf-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.32rem;
            font-weight: 700;
            color: var(--color-text-white);
            text-decoration: none;
            white-space: nowrap;
            letter-spacing: 0.02em;
            transition: color var(--transition);
        }

        .cf-logo:hover {
            color: var(--color-orange);
        }

        .cf-logo__icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0D1117;
            font-weight: 800;
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .cf-nav-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cf-nav-desktop a {
            display: inline-block;
            padding: 8px 12px;
            font-size: 0.92rem;
            color: var(--color-text-muted);
            border-radius: var(--radius-md);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .cf-nav-desktop a:hover {
            color: var(--color-text-white);
            background: rgba(255,255,255,.04);
        }

        .cf-nav-desktop a.cf-nav-active {
            color: var(--color-orange);
            background: rgba(255,107,53,.08);
            font-weight: 600;
        }

        .cf-header__cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cf-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            line-height: 1.4;
            white-space: nowrap;
        }

        .cf-btn--primary {
            background: var(--color-orange);
            color: #fff;
            box-shadow: 0 4px 14px rgba(255,107,53,.22);
        }

        .cf-btn--primary:hover {
            background: var(--color-orange-dark);
            color: #fff;
            box-shadow: 0 6px 20px rgba(255,107,53,.32);
            transform: translateY(-1px);
        }

        .cf-btn--primary:hover::after {
            content: "\f061";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.75rem;
        }

        .cf-btn--secondary {
            background: transparent;
            color: var(--color-cyan);
            border: 1px solid var(--color-border-cyan);
        }

        .cf-btn--secondary:hover {
            background: var(--color-cyan);
            color: #0D1117;
            border-color: var(--color-cyan);
        }

        .cf-btn--large {
            padding: 12px 28px;
            font-size: 1rem;
        }

        .cf-btn--block {
            width: 100%;
            justify-content: center;
        }

        .cf-nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 8px 14px;
            color: var(--color-text-white);
            cursor: pointer;
            font-size: 1.1rem;
        }

        /* ========== BREADCRUMB ========== */
        .cf-breadcrumb {
            padding: 20px 0 0;
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        .cf-breadcrumb span {
            margin: 0 6px;
            color: var(--color-border);
        }

        .cf-breadcrumb a {
            color: var(--color-text-muted);
        }

        .cf-breadcrumb a:hover {
            color: var(--color-orange);
        }

        .cf-breadcrumb .current {
            color: var(--color-cyan);
        }

        /* ========== CATEGORY HERO BANNER ========== */
        .cf-cat-banner {
            padding: 28px 0 20px;
        }

        .cf-cat-banner__inner {
            background: linear-gradient(135deg, #161D27 0%, #1B2430 100%);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 32px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .cf-cat-banner__inner::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -40px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(255,107,53,.12) 0%, transparent 65%);
            pointer-events: none;
        }

        .cf-cat-banner__text {
            flex: 1;
            min-width: 0;
        }

        .cf-cat-banner__title {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 8px;
            line-height: 1.3;
            background: linear-gradient(135deg, #FF6B35 0%, #FFC857 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cf-cat-banner__desc {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            max-width: 600px;
            line-height: 1.7;
        }

        .cf-cat-banner__icon {
            font-size: 3rem;
            color: rgba(255,107,53,.4);
            flex-shrink: 0;
        }

        /* ========== FILTER TOOLBAR ========== */
        .cf-filter-bar {
            background: var(--color-panel);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            margin-bottom: 32px;
        }

        .cf-filter-bar label {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            margin-bottom: 4px;
            display: block;
            font-weight: 500;
        }

        .cf-filter-bar select,
        .cf-filter-bar input {
            background: #0D1117;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            color: var(--color-text);
            padding: 9px 14px;
            font-size: 0.9rem;
            min-width: 150px;
            transition: border-color var(--transition);
        }

        .cf-filter-bar select:focus,
        .cf-filter-bar input:focus {
            border-color: var(--color-orange);
            outline: none;
        }

        .cf-filter-bar__group {
            display: flex;
            flex-direction: column;
        }

        .cf-filter-bar__search {
            flex: 1;
            min-width: 180px;
            max-width: 320px;
        }

        /* ========== TOURNAMENT FEATURE CARDS ========== */
        .cf-tournament-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .cf-tournament-card {
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .cf-tournament-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255,107,53,.3);
        }

        .cf-tournament-card__image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .cf-tournament-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cf-tournament-card__tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--color-orange);
            color: #fff;
            padding: 5px 12px;
            font-size: 0.78rem;
            font-weight: 700;
            border-radius: var(--radius-pill);
            letter-spacing: 0.04em;
        }

        .cf-tournament-card__body {
            padding: 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .cf-tournament-card__title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .cf-tournament-card__desc {
            font-size: 0.92rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 14px;
        }

        .cf-tournament-card__meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            border-top: 1px solid var(--color-border);
            padding-top: 12px;
        }

        .cf-tournament-card__meta .date {
            font-family: var(--font-mono);
            color: var(--color-cyan);
        }

        .cf-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--color-orange);
            transition: all var(--transition);
        }

        .cf-link-btn:hover {
            color: var(--color-orange-dark);
            gap: 10px;
        }

        /* ========== TOURNAMENT LIST (article style) ========== */
        .cf-article-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .cf-article-item {
            display: flex;
            gap: 20px;
            background: var(--color-panel);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            transition: all var(--transition);
        }

        .cf-article-item:hover {
            border-color: rgba(255,107,53,.25);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .cf-article-item__image {
            width: 120px;
            height: 88px;
            flex-shrink: 0;
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .cf-article-item__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cf-article-item__content {
            flex: 1;
            min-width: 0;
        }

        .cf-article-item__title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .cf-article-item__desc {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.65;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cf-article-item__meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.78rem;
            color: var(--color-text-muted);
        }

        .cf-article-item__meta .date {
            font-family: var(--font-mono);
            color: var(--color-cyan);
        }

        .cf-article-item__meta .source {
            background: rgba(0,201,167,.06);
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(0,201,167,.18);
        }

        /* ========== DATA OVERVIEW BADGES ========== */
        .cf-badge-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 20px;
        }

        .cf-data-badge {
            background: var(--color-panel);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: var(--shadow-cyan);
        }

        .cf-data-badge__num {
            font-family: var(--font-mono);
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--color-cyan);
            letter-spacing: 0.04em;
            margin-bottom: 4px;
        }

        .cf-data-badge__label {
            font-size: 0.82rem;
            color: var(--color-text-muted);
        }

        /* ========== SIDEBAR / RELATED ========== */
        .cf-related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .cf-related-card {
            background: var(--color-panel);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--color-border);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .cf-related-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
            border-color: rgba(0,201,167,.3);
        }

        .cf-related-card__image {
            height: 150px;
            overflow: hidden;
        }

        .cf-related-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cf-related-card__body {
            padding: 16px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .cf-related-card__title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .cf-related-card__desc {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            flex: 1;
            margin-bottom: 10px;
        }

        /* ========== SUBSCRIBE CTA ========== */
        .cf-cta-bar {
            background: linear-gradient(135deg, #161D27 0%, #1B2430 100%);
            border: 1px solid var(--color-border-cyan);
            border-radius: var(--radius-lg);
            padding: 32px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-cyan);
        }

        .cf-cta-bar__text h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 6px;
        }

        .cf-cta-bar__text p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        /* ========== FAQ ACCORDION ========== */
        .cf-faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cf-faq-item {
            background: var(--color-panel);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--color-border);
            transition: all var(--transition);
        }

        .cf-faq-item:hover {
            border-color: rgba(255,107,53,.2);
        }

        .cf-faq-item.is-active {
            border-color: var(--color-border-cyan);
        }

        .cf-faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 20px;
            cursor: pointer;
            font-weight: 600;
            color: var(--color-text-white);
            font-size: 0.98rem;
            transition: all var(--transition);
            width: 100%;
            background: transparent;
            border: none;
            text-align: left;
        }

        .cf-faq-question:hover {
            color: var(--color-orange);
        }

        .cf-faq-question__bar {
            width: 4px;
            height: 28px;
            background: var(--color-orange);
            border-radius: var(--radius-pill);
            flex-shrink: 0;
        }

        .cf-faq-answer {
            padding: 0 20px 18px 36px;
            font-size: 0.92rem;
            color: var(--color-text-muted);
            line-height: 1.75;
            display: none;
        }

        .cf-faq-item.is-active .cf-faq-answer {
            display: block;
        }

        /* ========== COLUMN INTRO ========== */
        .cf-column-intro {
            background: var(--color-panel);
            border-left: 4px solid var(--color-orange);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            padding: 22px 26px;
            margin: 36px 0;
        }

        .cf-column-intro__title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 8px;
        }

        .cf-column-intro__text {
            font-size: 0.93rem;
            color: var(--color-text-muted);
            line-height: 1.8;
            margin: 0;
        }

        /* ========== MORE LINK ========== */
        .cf-more-link {
            text-align: center;
            margin-top: 28px;
        }

        /* ========== FOOTER ========== */
        .cf-footer {
            background: #0A0E14;
            border-top: 1px solid var(--color-border);
            padding: 56px 0 28px;
            margin-top: 48px;
        }

        .cf-footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .cf-footer__brand p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.75;
            margin-top: 12px;
            max-width: 320px;
        }

        .cf-footer h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--color-text-white);
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }

        .cf-footer__links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .cf-footer__links li {
            margin-bottom: 10px;
        }

        .cf-footer__links a {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            transition: color var(--transition);
        }

        .cf-footer__links a:hover {
            color: var(--color-orange);
        }

        .cf-footer__subscribe p {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.65;
            margin-bottom: 14px;
        }

        .cf-footer__copyright {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 22px;
            border-top: 1px solid var(--color-border);
            font-size: 0.82rem;
            color: var(--color-text-muted);
        }

        .cf-footer__copyright a {
            color: var(--color-text-muted);
            font-size: 0.82rem;
        }

        .cf-footer__copyright a:hover {
            color: var(--color-orange);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .cf-nav-desktop {
                display: none;
            }

            .cf-nav-toggle {
                display: block;
            }

            .cf-header__cta .cf-btn {
                display: none;
            }

            .cf-header__cta .cf-btn--primary {
                display: inline-flex;
            }

            .cf-tournament-grid {
                grid-template-columns: 1fr;
            }

            .cf-related-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cf-badge-row {
                grid-template-columns: repeat(3, 1fr);
            }

            .cf-footer__grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .cf-article-item__image {
                width: 100px;
                height: 78px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 48px 0;
            }

            .section__title {
                font-size: 1.5rem;
            }

            .cf-container {
                padding: 0 16px;
            }

            .cf-cat-banner__inner {
                flex-direction: column;
                text-align: left;
                padding: 24px 22px;
                align-items: flex-start;
            }

            .cf-cat-banner__title {
                font-size: 1.5rem;
            }

            .cf-cat-banner__icon {
                display: none;
            }

            .cf-filter-bar {
                flex-direction: column;
                align-items: stretch;
            }

            .cf-filter-bar__search {
                max-width: 100%;
            }

            .cf-filter-bar select,
            .cf-filter-bar input {
                width: 100%;
                min-width: auto;
            }

            .cf-article-item {
                flex-direction: column;
                gap: 12px;
            }

            .cf-article-item__image {
                width: 100%;
                height: 140px;
            }

            .cf-related-grid {
                grid-template-columns: 1fr;
            }

            .cf-badge-row {
                grid-template-columns: 1fr;
            }

            .cf-cta-bar {
                flex-direction: column;
                text-align: left;
                align-items: flex-start;
                padding: 24px 22px;
            }

            .cf-footer__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .cf-footer__copyright {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 520px) {
            .cf-header {
                height: 64px;
            }

            .cf-logo {
                font-size: 1.15rem;
            }

            .cf-logo__icon {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
                border-radius: 8px;
            }

            .cf-header__cta .cf-btn--primary {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .section__title {
                font-size: 1.3rem;
            }

            .cf-tournament-card__image {
                height: 160px;
            }

            .cf-tournament-card__body {
                padding: 16px 18px;
            }

            .cf-article-item {
                padding: 16px;
            }

            .cf-column-intro {
                padding: 18px 20px;
            }
        }

        /* Off-canvas mobile nav */
        .cf-mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 280px;
            height: 100vh;
            background: #0A0E14;
            border-right: 1px solid var(--color-border);
            z-index: 200;
            padding: 28px 20px;
            overflow-y: auto;
            transform: translateX(-100%);
            transition: transform .3s cubic-bezier(.4,0,.2,1);
        }

        .cf-mobile-nav.is-open {
            transform: translateX(0);
        }

        .cf-mobile-nav__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 22px;
        }

        .cf-mobile-nav__close {
            background: transparent;
            border: none;
            color: var(--color-text);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 6px;
        }

        .cf-mobile-nav a {
            display: block;
            padding: 12px 0;
            color: var(--color-text);
            font-size: 1rem;
            border-bottom: 1px solid var(--color-border);
            transition: color var(--transition);
        }

        .cf-mobile-nav a:hover {
            color: var(--color-orange);
        }

        .cf-mobile-nav .cf-btn {
            margin-top: 16px;
            width: 100%;
            justify-content: center;
        }

        @media (max-width: 1024px) {
            .cf-mobile-nav {
                display: block;
            }
        }
