/* roulang page: index */
:root {
            --bg-primary: #0C1210;
            --bg-secondary: #111B17;
            --bg-card: #16231E;
            --bg-elevated: #1B2C25;
            --border-subtle: #203A30;
            --border-glow: #2E5C47;
            --text-primary: #F2F5F0;
            --text-secondary: #9AA8A0;
            --text-muted: #66766D;
            --accent-lime: #C8E83C;
            --accent-orange: #E05A2A;
            --accent-teal: #2F9E7A;
            --on-accent: #0C1210;
            --radius-card: 10px;
            --radius-btn: 8px;
            --radius-badge: 999px;
            --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.45);
            --transition: 0.2s ease;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', ui-monospace, 'Consolas', monospace;
            --font-condensed: 'Oswald', 'Arial Narrow', 'Impact', 'PingFang SC', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.65;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--accent-lime);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--accent-teal);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--accent-teal);
            outline-offset: 2px;
        }

        button,
        input,
        select,
        textarea {
            font-family: var(--font-body);
            font-size: 15px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-fluid {
            max-width: 100%;
            padding: 0;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
        }

        .masthead {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0 10px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .masthead-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .masthead-brand .brand-icon {
            width: 38px;
            height: 38px;
            background: var(--accent-lime);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--on-accent);
            font-size: 18px;
            flex-shrink: 0;
        }

        .masthead-brand .brand-text {
            font-family: var(--font-condensed);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1.1;
        }

        .masthead-brand .brand-text .highlight {
            color: var(--accent-lime);
        }

        .masthead-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .masthead-meta .stat-badge {
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-badge);
            padding: 6px 14px;
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .masthead-meta .stat-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--accent-orange);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 1.8s infinite;
        }

        .masthead-date {
            font-size: 13px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.4);
            }
        }

        .nav-divider {
            border-top: 1px solid var(--border-subtle);
        }

        .site-nav {
            display: flex;
            align-items: center;
            gap: 28px;
            padding: 10px 0 12px;
            flex-wrap: wrap;
        }

        .site-nav a {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3px;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: color var(--transition), border-color var(--transition);
            white-space: nowrap;
        }

        .site-nav a:hover {
            color: var(--text-primary);
            border-bottom-color: var(--accent-lime);
        }

        .site-nav a.active {
            color: var(--accent-lime);
            border-bottom-color: var(--accent-lime);
            font-weight: 600;
        }

        .nav-toggle {
            display: none;
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            padding: 8px 14px;
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
            transition: background var(--transition);
        }

        .nav-toggle:hover {
            background: var(--bg-card);
        }

        /* ============ HERO ============ */
        .hero-section {
            position: relative;
            background: var(--bg-primary);
            overflow: hidden;
        }

        .hero-bg-wrap {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .hero-bg-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            filter: saturate(0.75) brightness(0.6);
        }

        .hero-bg-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(12, 18, 16, 0.55) 0%, rgba(12, 18, 16, 0.85) 55%, var(--bg-primary) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 70px 0 80px;
        }

        .hero-title {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-primary);
            letter-spacing: 1px;
            margin-bottom: 22px;
            font-family: var(--font-condensed);
        }

        .hero-title .accent {
            color: var(--accent-lime);
        }

        .hero-desc {
            font-size: 17px;
            line-height: 1.85;
            color: var(--text-secondary);
            max-width: 720px;
            margin-bottom: 28px;
        }

        .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 30px;
        }

        .hero-stat-chip {
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-btn);
            padding: 10px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .hero-stat-chip .val {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-lime);
            letter-spacing: -0.5px;
        }

        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-score-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 36px;
        }

        .score-mini-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 190px;
            box-shadow: var(--shadow-card);
            transition: border-color var(--transition), transform var(--transition);
        }

        .score-mini-card:hover {
            border-color: var(--border-glow);
            transform: translateY(-2px);
        }

        .score-mini-card .league-tag {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            min-width: 50px;
        }

        .score-mini-card .match-teams {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .score-mini-card .team {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
        }

        .score-mini-card .score {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-lime);
            letter-spacing: 0.5px;
        }

        .score-mini-card .live-badge {
            background: var(--accent-orange);
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: var(--radius-badge);
            letter-spacing: 0.5px;
            animation: pulse-badge 1.6s infinite;
        }

        @keyframes pulse-badge {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        /* ============ BUTTONS ============ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.3px;
            cursor: pointer;
            border: none;
            transition: all var(--transition);
            text-decoration: none;
            line-height: 1.4;
            min-height: 48px;
        }

        .btn-primary {
            background: var(--accent-lime);
            color: var(--on-accent);
        }

        .btn-primary:hover {
            background: #b8d935;
            color: var(--on-accent);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-glow);
        }

        .btn-secondary:hover {
            background: var(--bg-elevated);
            border-color: var(--accent-lime);
            color: var(--text-primary);
            transform: translateY(-1px);
        }

        .btn-accent {
            background: var(--accent-orange);
            color: #fff;
        }

        .btn-accent:hover {
            background: #c94f23;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(224, 90, 42, 0.3);
        }

        .btn-sm {
            padding: 8px 18px;
            font-size: 14px;
            min-height: 38px;
        }

        .btn-lg {
            padding: 16px 36px;
            font-size: 17px;
            min-height: 56px;
        }

        /* ============ SECTIONS ============ */
        .section {
            padding: 64px 0;
        }

        .section-alt {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-heading {
            margin-bottom: 36px;
        }

        .section-heading .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-lime);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }

        .section-heading h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            font-family: var(--font-condensed);
        }

        .section-heading .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.75;
            max-width: 650px;
        }

        .text-center {
            text-align: center;
        }
        .text-center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        /* ============ CARDS ============ */
        .card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            border-color: var(--border-glow);
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
        }

        .card .card-icon {
            width: 46px;
            height: 46px;
            background: var(--bg-elevated);
            border-radius: var(--radius-btn);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-lime);
            font-size: 20px;
            margin-bottom: 16px;
            flex-shrink: 0;
        }

        .card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }

        .card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 14px;
        }

        .card .card-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--accent-lime);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap var(--transition);
        }

        .card .card-link:hover {
            color: var(--accent-teal);
            gap: 10px;
        }

        /* ============ METRIC CARDS ============ */
        .metric-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-card);
            padding: 20px 18px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: transform var(--transition), border-color var(--transition);
            height: 100%;
        }

        .metric-card:hover {
            transform: translateY(-3px);
            border-color: var(--accent-lime);
        }

        .metric-num {
            font-family: var(--font-mono);
            font-size: 34px;
            font-weight: 700;
            color: var(--accent-lime);
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .metric-label {
            font-size: 13px;
            color: var(--text-secondary);
            letter-spacing: 0.3px;
        }

        /* ============ LEAGUE CARDS ============ */
        .league-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: border-color var(--transition), transform var(--transition);
            height: 100%;
        }

        .league-card:hover {
            border-color: var(--border-glow);
            transform: translateY(-4px);
        }

        .league-card .league-cover {
            height: 120px;
            background: var(--bg-elevated);
            overflow: hidden;
        }

        .league-card .league-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.75;
        }

        .league-card .league-body {
            padding: 16px 18px;
        }

        .league-card .league-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .league-card .league-hint {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .league-card .league-link {
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-lime);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* ============ COMPARISON ============ */
        .compare-wrap {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            align-items: stretch;
        }

        .compare-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 28px;
            box-shadow: var(--shadow-card);
        }

        .compare-card .team-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
            text-align: center;
        }

        .compare-center {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
            padding: 0 8px;
        }

        .compare-center .vs-text {
            font-family: var(--font-condensed);
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-orange);
            letter-spacing: 2px;
        }

        .compare-bar-row {
            margin-bottom: 14px;
        }

        .compare-bar-row .bar-label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between;
        }

        .compare-bar {
            height: 8px;
            background: var(--bg-elevated);
            border-radius: var(--radius-badge);
            overflow: hidden;
        }

        .compare-bar .bar-fill {
            height: 100%;
            background: var(--accent-lime);
            border-radius: var(--radius-badge);
            transition: width 0.6s ease;
        }

        .compare-bar .bar-fill.teal {
            background: var(--accent-teal);
        }

        .compare-bar .bar-fill.orange {
            background: var(--accent-orange);
        }

        /* ============ TIMELINE ============ */
        .timeline {
            position: relative;
            padding-left: 36px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border-glow);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 28px;
            padding-left: 12px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item .tl-dot {
            position: absolute;
            left: -30px;
            top: 4px;
            width: 14px;
            height: 14px;
            background: var(--accent-lime);
            border-radius: 50%;
            border: 3px solid var(--bg-primary);
            box-shadow: 0 0 0 2px var(--accent-lime);
        }

        .timeline-item .tl-date {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-orange);
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .timeline-item .tl-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .timeline-item .tl-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ============ BRAND INTRO ============ */
        .brand-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 40px;
            align-items: center;
        }

        .brand-intro-image {
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border-glow);
            box-shadow: var(--shadow-card);
        }

        .brand-intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        .brand-intro-text h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-condensed);
            margin-bottom: 16px;
        }

        .brand-intro-text p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 12px;
        }

        /* ============ NEWS LIST ============ */
        .news-card {
            display: flex;
            gap: 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 16px;
            box-shadow: var(--shadow-card);
            transition: border-color var(--transition), transform var(--transition);
            margin-bottom: 14px;
        }

        .news-card:hover {
            border-color: var(--border-glow);
            transform: translateX(4px);
        }

        .news-card .news-thumb {
            width: 120px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-elevated);
        }

        .news-card .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .news-card .news-body {
            flex: 1;
        }

        .news-card .news-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
            flex-wrap: wrap;
        }

        .news-card .news-time {
            font-size: 12px;
            color: var(--text-muted);
        }

        .news-card .news-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            line-height: 1.5;
        }

        .news-card .news-summary {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============ BADGES ============ */
        .badge {
            display: inline-block;
            padding: 3px 10px;
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-badge);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .badge-orange {
            background: rgba(224, 90, 42, 0.18);
            color: #f08a5d;
            border: 1px solid rgba(224, 90, 42, 0.4);
        }

        .badge-teal {
            background: rgba(47, 158, 122, 0.18);
            color: #5fc9a5;
            border: 1px solid rgba(47, 158, 122, 0.4);
        }

        .badge-lime {
            background: rgba(200, 232, 60, 0.15);
            color: var(--accent-lime);
            border: 1px solid rgba(200, 232, 60, 0.35);
        }

        .badge-muted {
            background: var(--bg-elevated);
            color: var(--text-muted);
            border: 1px solid var(--border-subtle);
        }

        /* ============ CALENDAR ============ */
        .calendar-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .calendar-item {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 14px 18px;
            transition: border-color var(--transition);
        }

        .calendar-item:hover {
            border-color: var(--border-glow);
        }

        .calendar-item .cal-date {
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            min-width: 56px;
            flex-shrink: 0;
        }

        .calendar-item .cal-date .day {
            display: block;
            font-size: 12px;
            font-weight: 400;
            color: var(--text-muted);
        }

        .calendar-item .cal-match {
            flex: 1;
            font-size: 15px;
            color: var(--text-primary);
            font-weight: 500;
            text-align: center;
        }

        .calendar-item .cal-tag {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .calendar-item.today {
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 1px rgba(224, 90, 42, 0.3);
        }

        /* ============ GUARANTEE ============ */
        .guarantee-item {
            text-align: center;
            padding: 28px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            height: 100%;
        }

        .guarantee-item .g-icon {
            width: 54px;
            height: 54px;
            margin: 0 auto 14px;
            background: var(--bg-elevated);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-teal);
            font-size: 22px;
        }

        .guarantee-item h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .guarantee-item p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        /* ============ COVERAGE ============ */
        .coverage-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            height: 100%;
        }

        .coverage-item .cov-region {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .coverage-item .cov-count {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .coverage-item .cov-count.europe {
            color: var(--accent-lime);
        }
        .coverage-item .cov-count.south-america {
            color: var(--accent-teal);
        }
        .coverage-item .cov-count.asia {
            color: var(--accent-orange);
        }
        .coverage-item .cov-count.north-america {
            color: var(--text-primary);
        }

        .coverage-item .cov-desc {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* ============ QUICK ANSWERS ============ */
        .qa-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            height: 100%;
            transition: border-color var(--transition);
        }

        .qa-card:hover {
            border-color: var(--border-glow);
        }

        .qa-card .qa-question {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .qa-card .qa-question .q-icon {
            color: var(--accent-lime);
            font-weight: 700;
            flex-shrink: 0;
        }

        .qa-card .qa-answer {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ============ FAQ ACCORDION ============ */
        .faq-accordion .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            margin-bottom: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: border-color var(--transition);
        }

        .faq-accordion .accordion-item:hover {
            border-color: var(--border-glow);
        }

        .faq-accordion .accordion-title {
            background: transparent;
            color: var(--text-primary);
            cursor: pointer;
            padding: 18px 22px;
            width: 100%;
            text-align: left;
            border: none;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: background var(--transition);
        }

        .faq-accordion .accordion-title:hover {
            background: var(--bg-elevated);
        }

        .faq-accordion .accordion-title .faq-icon {
            font-size: 14px;
            color: var(--accent-lime);
            transition: transform var(--transition);
            flex-shrink: 0;
        }

        .faq-accordion .accordion-title[aria-expanded="true"] .faq-icon {
            transform: rotate(45deg);
        }

        .faq-accordion .accordion-content {
            padding: 0 22px 18px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            display: none;
        }

        .faq-accordion .accordion-content.active {
            display: block;
        }

        /* ============ FORM ============ */
        .form-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-card);
            padding: 36px;
            box-shadow: var(--shadow-card);
            max-width: 720px;
            margin: 0 auto;
        }

        .form-card h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-condensed);
            margin-bottom: 10px;
        }

        .form-card .form-sub {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            font-size: 15px;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--accent-lime);
            box-shadow: 0 0 0 3px rgba(200, 232, 60, 0.15);
            outline: none;
        }

        .form-group input::placeholder {
            color: var(--text-muted);
        }

        .form-group .required-mark {
            color: var(--accent-orange);
            font-weight: 700;
        }

        .form-group .optional-mark {
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 400;
        }

        .form-hint {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: #080D0B;
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col .footer-brand {
            font-family: var(--font-condensed);
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .footer-col .footer-brand .highlight {
            color: var(--accent-lime);
        }

        .footer-col p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.75;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent-lime);
        }

        .footer-col .footer-email {
            font-size: 14px;
            color: var(--text-secondary);
            word-break: break-all;
        }

        .footer-subscribe {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }

        .footer-subscribe input {
            flex: 1;
            padding: 10px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            font-size: 14px;
        }

        .footer-subscribe button {
            padding: 10px 18px;
            background: var(--accent-lime);
            color: var(--on-accent);
            border: none;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: background var(--transition);
        }

        .footer-subscribe button:hover {
            background: #b8d935;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .footer-bottom .copyright {
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-bottom .disclaimer {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 36px;
            }
            .hero-desc {
                font-size: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .brand-intro-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .compare-wrap {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .compare-center {
                flex-direction: row;
                padding: 8px 0;
            }
            .compare-center .vs-text {
                font-size: 22px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 48px 0;
            }
            .hero-content {
                padding: 48px 0 56px;
            }
            .hero-title {
                font-size: 28px;
                letter-spacing: 0.3px;
            }
            .hero-desc {
                font-size: 15px;
            }
            .hero-stats-row {
                gap: 8px;
            }
            .hero-stat-chip {
                padding: 8px 12px;
                font-size: 12px;
            }
            .hero-stat-chip .val {
                font-size: 18px;
            }
            .hero-score-preview {
                gap: 8px;
            }
            .score-mini-card {
                min-width: 100%;
                padding: 10px 14px;
            }
            .section-heading h2 {
                font-size: 22px;
            }
            .metric-num {
                font-size: 26px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .news-card {
                flex-direction: column;
                gap: 10px;
            }
            .news-card .news-thumb {
                width: 100%;
                height: 140px;
            }
            .calendar-item {
                flex-wrap: wrap;
                gap: 10px;
            }
            .calendar-item .cal-match {
                flex-basis: 100%;
                order: 3;
            }
            .form-card {
                padding: 24px 20px;
            }
            .masthead {
                padding: 10px 0 8px;
            }
            .masthead-brand .brand-text {
                font-size: 24px;
            }
            .masthead-meta {
                gap: 8px;
            }
            .masthead-meta .stat-badge {
                padding: 4px 10px;
                font-size: 11px;
            }
            .masthead-date {
                font-size: 11px;
            }
            .nav-toggle {
                display: inline-block;
            }
            .site-nav {
                display: none;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 8px 0;
            }
            .site-nav.mobile-open {
                display: flex;
            }
            .site-nav a {
                padding: 12px 4px;
                border-bottom: 1px solid var(--border-subtle);
                font-size: 15px;
            }
            .site-nav a:last-child {
                border-bottom: none;
            }
            .site-nav a.active {
                border-bottom-color: var(--accent-lime);
            }
            .btn {
                padding: 10px 20px;
                font-size: 14px;
                min-height: 42px;
            }
            .btn-lg {
                padding: 14px 28px;
                font-size: 16px;
                min-height: 48px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }
            .hero-title {
                font-size: 24px;
            }
            .hero-desc {
                font-size: 14px;
                line-height: 1.7;
            }
            .section-heading h2 {
                font-size: 20px;
            }
            .metric-num {
                font-size: 22px;
            }
            .metric-label {
                font-size: 11px;
            }
            .compare-card {
                padding: 18px;
            }
            .compare-card .team-name {
                font-size: 16px;
            }
            .timeline {
                padding-left: 28px;
            }
            .timeline::before {
                left: 8px;
            }
            .timeline-item .tl-dot {
                left: -24px;
                width: 11px;
                height: 11px;
            }
            .form-card {
                padding: 18px 14px;
            }
            .form-card h2 {
                font-size: 20px;
            }
            .faq-accordion .accordion-title {
                padding: 14px 16px;
                font-size: 14px;
            }
            .faq-accordion .accordion-content {
                padding: 0 16px 14px;
                font-size: 13px;
            }
            .masthead-brand .brand-text {
                font-size: 20px;
            }
            .masthead-brand .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
            .masthead-meta .stat-badge {
                font-size: 10px;
                padding: 3px 8px;
            }
            .masthead-date {
                display: none;
            }
        }

/* roulang page: category1 */
:root {
        --bg-primary: #0C1210;
        --bg-secondary: #111B17;
        --bg-card: #16231E;
        --bg-elevated: #1B2C25;
        --border-subtle: #203A30;
        --border-glow: #2E5C47;
        --text-primary: #F2F5F0;
        --text-secondary: #9AA8A0;
        --text-muted: #66766D;
        --accent-lime: #C8E83C;
        --accent-orange: #E05A2A;
        --accent-teal: #2F9E7A;
        --on-accent: #0C1210;
        --radius-card: 10px;
        --radius-btn: 8px;
        --radius-badge: 999px;
        --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.45);
        --transition: 0.2s ease;
        --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', ui-monospace, 'Consolas', monospace;
        --font-condensed: 'Oswald', 'Arial Narrow', 'Impact', 'PingFang SC', sans-serif;
    }
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }
    body {
        font-family: var(--font-body);
        font-size: 15px;
        line-height: 1.65;
        color: var(--text-primary);
        background-color: var(--bg-primary);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    a {
        color: var(--accent-lime);
        text-decoration: none;
        transition: color var(--transition);
    }
    a:hover {
        color: var(--accent-teal);
        text-decoration: none;
    }
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
        outline: 2px solid var(--accent-teal);
        outline-offset: 2px;
    }
    button, input, select, textarea {
        font-family: var(--font-body);
        font-size: 15px;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .container-fluid {
        max-width: 100%;
        padding: 0;
    }

    /* ============ HEADER / NAV ============ */
    .site-header {
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-subtle);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    }
    .masthead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0 10px;
        gap: 16px;
    }
    .masthead-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }
    .masthead-brand .brand-icon {
        width: 38px;
        height: 38px;
        background: var(--accent-lime);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--on-accent);
        font-size: 18px;
        flex-shrink: 0;
    }
    .masthead-brand .brand-text {
        font-family: var(--font-condensed);
        font-size: 32px;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: 1px;
        line-height: 1.1;
    }
    .masthead-brand .brand-text .highlight {
        color: var(--accent-lime);
    }
    .masthead-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
    }
    .masthead-meta .stat-badge {
        background: var(--bg-elevated);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-badge);
        padding: 6px 14px;
        font-size: 13px;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }
    .masthead-meta .stat-badge .dot {
        width: 7px;
        height: 7px;
        background: var(--accent-orange);
        border-radius: 50%;
        display: inline-block;
        animation: pulse-dot 1.8s infinite;
    }
    .masthead-meta .masthead-date {
        font-size: 13px;
        color: var(--text-muted);
        white-space: nowrap;
    }
    @keyframes pulse-dot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.4); }
    }
    .nav-divider {
        border-top: 1px solid var(--border-subtle);
    }
    .site-nav {
        display: flex;
        align-items: center;
        gap: 28px;
        padding: 10px 0 12px;
        flex-wrap: wrap;
    }
    .site-nav a {
        color: var(--text-secondary);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.3px;
        padding: 4px 0;
        border-bottom: 2px solid transparent;
        transition: color var(--transition), border-color var(--transition);
        white-space: nowrap;
    }
    .site-nav a:hover {
        color: var(--text-primary);
        border-bottom-color: var(--accent-lime);
    }
    .site-nav a.active {
        color: var(--accent-lime);
        border-bottom-color: var(--accent-lime);
        font-weight: 600;
    }
    .nav-toggle {
        display: none;
        background: var(--bg-elevated);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-btn);
        color: var(--text-primary);
        padding: 8px 14px;
        cursor: pointer;
        font-size: 20px;
        line-height: 1;
        transition: background var(--transition);
    }
    .nav-toggle:hover {
        background: var(--bg-card);
    }

    /* ============ BREADCRUMB ============ */
    .breadcrumb-bar {
        padding: 18px 0 10px;
        font-size: 13px;
        color: var(--text-muted);
    }
    .breadcrumb-bar a {
        color: var(--text-muted);
        transition: color var(--transition);
    }
    .breadcrumb-bar a:hover {
        color: var(--accent-lime);
    }
    .breadcrumb-bar .separator {
        margin: 0 6px;
        color: var(--text-muted);
    }
    .breadcrumb-bar .current {
        color: var(--text-secondary);
    }

    /* ============ PAGE TITLE ============ */
    .page-title-section {
        padding: 16px 0 28px;
    }
    .page-title-section h1 {
        font-family: var(--font-condensed);
        font-size: 38px;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: 0.5px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    .page-title-section .subtitle {
        font-size: 16px;
        color: var(--text-secondary);
        max-width: 700px;
    }

    /* ============ FILTER PILLS ============ */
    .filter-section {
        padding: 18px 0 28px;
    }
    .pills-group {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    .pill-btn {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-badge);
        padding: 8px 18px;
        font-size: 14px;
        color: var(--text-secondary);
        cursor: pointer;
        transition: background var(--transition), color var(--transition), border-color var(--transition);
        white-space: nowrap;
    }
    .pill-btn:hover {
        background: var(--bg-elevated);
        color: var(--text-primary);
        border-color: var(--border-glow);
    }
    .pill-btn.active {
        background: var(--accent-lime);
        color: var(--on-accent);
        border-color: var(--accent-lime);
        font-weight: 600;
    }
    .pill-btn:focus-visible {
        outline: 2px solid var(--accent-teal);
        outline-offset: 2px;
    }

    /* ============ FEATURED MATCH ============ */
    .featured-section {
        padding: 12px 0 32px;
    }
    .featured-match-card {
        position: relative;
        border-radius: var(--radius-card);
        overflow: hidden;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        transition: border-color var(--transition), box-shadow var(--transition);
    }
    .featured-match-card:hover {
        border-color: var(--border-glow);
        box-shadow: var(--shadow-card);
    }
    .featured-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
    }
    .featured-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.35;
    }
    .featured-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(12,18,16,0.55) 0%, rgba(12,18,16,0.88) 100%);
        z-index: 1;
    }
    .featured-content {
        position: relative;
        z-index: 2;
        padding: 28px 30px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-height: 260px;
    }
    .featured-top {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    .live-badge {
        background: var(--accent-orange);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: var(--radius-badge);
        display: inline-flex;
        align-items: center;
        gap: 5px;
        letter-spacing: 0.5px;
        animation: live-pulse 1.6s infinite;
    }
    .live-badge::before {
        content: '';
        width: 7px;
        height: 7px;
        background: #fff;
        border-radius: 50%;
        display: inline-block;
    }
    @keyframes live-pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }
    .featured-league {
        background: var(--bg-elevated);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-badge);
        padding: 4px 14px;
        font-size: 13px;
        color: var(--text-secondary);
    }
    .featured-matchup {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }
    .featured-team {
        font-size: 24px;
        font-weight: 600;
        color: var(--text-primary);
        text-align: center;
        min-width: 120px;
    }
    .featured-score {
        font-family: var(--font-mono);
        font-size: 44px;
        font-weight: 700;
        color: var(--accent-lime);
        letter-spacing: 2px;
        line-height: 1;
    }
    .featured-meta {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        color: var(--text-secondary);
        font-size: 14px;
    }
    .featured-meta .meta-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .featured-meta .meta-item i {
        color: var(--accent-teal);
        font-size: 13px;
    }

    /* ============ MATCH LIST ============ */
    .match-list-section {
        padding: 12px 0 36px;
    }
    .section-heading {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    .section-heading .heading-line {
        width: 4px;
        height: 24px;
        background: var(--accent-lime);
        border-radius: 2px;
        flex-shrink: 0;
    }
    .section-heading h2 {
        font-family: var(--font-condensed);
        font-size: 26px;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0;
        letter-spacing: 0.3px;
    }
    .match-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .match-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 14px 20px;
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }
    .match-card:hover {
        border-color: var(--border-glow);
        box-shadow: var(--shadow-card);
        background: var(--bg-elevated);
    }
    .match-league-tag {
        background: var(--bg-elevated);
        border: 1px solid var(--border-subtle);
        border-radius: 6px;
        padding: 4px 12px;
        font-size: 13px;
        color: var(--text-secondary);
        white-space: nowrap;
        min-width: 70px;
        text-align: center;
        flex-shrink: 0;
    }
    .match-info {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        min-width: 200px;
        flex-wrap: wrap;
    }
    .match-team {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-primary);
    }
    .match-score {
        font-family: var(--font-mono);
        font-size: 20px;
        font-weight: 700;
        color: var(--accent-lime);
        letter-spacing: 1px;
        min-width: 50px;
        text-align: center;
    }
    .match-status {
        font-size: 13px;
        color: var(--text-muted);
        white-space: nowrap;
        flex-shrink: 0;
        min-width: 70px;
        text-align: right;
    }
    .match-status.live {
        color: var(--accent-orange);
        font-weight: 600;
    }
    .match-status.finished {
        color: var(--text-muted);
    }
    .match-status.upcoming {
        color: var(--accent-teal);
    }

    /* ============ DATA OVERVIEW ============ */
    .overview-section {
        padding: 24px 0 36px;
        background: var(--bg-secondary);
        border-top: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
    }
    .overview-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }
    .overview-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 20px 18px;
        text-align: center;
        transition: border-color var(--transition), box-shadow var(--transition);
    }
    .overview-card:hover {
        border-color: var(--border-glow);
        box-shadow: var(--shadow-card);
    }
    .overview-number {
        font-family: var(--font-mono);
        font-size: 36px;
        font-weight: 700;
        color: var(--accent-lime);
        line-height: 1.1;
        margin-bottom: 6px;
    }
    .overview-label {
        font-size: 14px;
        color: var(--text-secondary);
    }

    /* ============ INTEL BRIEF ============ */
    .intel-section {
        padding: 28px 0 36px;
    }
    .intel-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .intel-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 16px 20px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        transition: border-color var(--transition), box-shadow var(--transition);
    }
    .intel-card:hover {
        border-color: var(--border-glow);
        box-shadow: var(--shadow-card);
    }
    .intel-icon {
        width: 36px;
        height: 36px;
        background: var(--bg-elevated);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-teal);
        font-size: 16px;
        flex-shrink: 0;
    }
    .intel-content {
        flex: 1;
    }
    .intel-content h3 {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0 0 4px;
    }
    .intel-content p {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0;
    }
    .intel-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: var(--accent-lime);
        margin-top: 8px;
        transition: color var(--transition);
    }
    .intel-link:hover {
        color: var(--accent-teal);
    }

    /* ============ SUBSCRIBE CTA ============ */
    .cta-section {
        padding: 28px 0 48px;
    }
    .cta-card {
        background: var(--bg-elevated);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-card);
        padding: 28px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }
    .cta-card .cta-text h2 {
        font-size: 22px;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0 0 6px;
        letter-spacing: 0.3px;
    }
    .cta-card .cta-text p {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0;
    }
    .cta-form {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        min-width: 260px;
        flex: 1;
        max-width: 420px;
    }
    .cta-form input[type="email"],
    .cta-form input[type="text"] {
        flex: 1;
        min-width: 180px;
        background: var(--bg-primary);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-btn);
        padding: 10px 14px;
        color: var(--text-primary);
        font-size: 14px;
        transition: border-color var(--transition);
    }
    .cta-form input::placeholder {
        color: var(--text-muted);
    }
    .cta-form input:focus {
        border-color: var(--accent-teal);
        outline: none;
    }
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 22px;
        font-size: 14px;
        font-weight: 600;
        border-radius: var(--radius-btn);
        border: none;
        cursor: pointer;
        transition: all var(--transition);
        white-space: nowrap;
        letter-spacing: 0.3px;
    }
    .btn-accent {
        background: var(--accent-orange);
        color: #fff;
    }
    .btn-accent:hover {
        filter: brightness(1.1);
        box-shadow: 0 4px 14px rgba(224, 90, 42, 0.35);
    }
    .btn-accent:focus-visible {
        outline: 2px solid var(--accent-teal);
        outline-offset: 2px;
    }
    .btn-primary {
        background: var(--accent-lime);
        color: var(--on-accent);
    }
    .btn-primary:hover {
        filter: brightness(0.92);
        box-shadow: 0 4px 14px rgba(200, 232, 60, 0.3);
    }
    .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        border: 1px solid var(--border-glow);
    }
    .btn-secondary:hover {
        background: var(--bg-elevated);
        border-color: var(--accent-lime);
    }

    /* ============ FOOTER ============ */
    .site-footer {
        background: #080D0B;
        border-top: 1px solid var(--border-subtle);
        padding: 36px 0 18px;
        color: var(--text-secondary);
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 28px;
        margin-bottom: 28px;
    }
    .footer-brand {
        font-family: var(--font-condensed);
        font-size: 22px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }
    .footer-brand .highlight {
        color: var(--accent-lime);
    }
    .footer-col h4 {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 12px;
        letter-spacing: 0.3px;
    }
    .footer-col p {
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-secondary);
        margin-bottom: 8px;
    }
    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-col ul li {
        margin-bottom: 8px;
    }
    .footer-col ul li a {
        color: var(--text-secondary);
        font-size: 13px;
        transition: color var(--transition);
    }
    .footer-col ul li a:hover {
        color: var(--accent-lime);
    }
    .footer-email {
        color: var(--text-muted);
    }
    .footer-subscribe {
        display: flex;
        gap: 8px;
    }
    .footer-subscribe input {
        flex: 1;
        background: var(--bg-primary);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-btn);
        padding: 8px 12px;
        color: var(--text-primary);
        font-size: 13px;
        min-width: 0;
    }
    .footer-subscribe input::placeholder {
        color: var(--text-muted);
    }
    .footer-subscribe button {
        background: var(--accent-lime);
        color: var(--on-accent);
        border: none;
        border-radius: var(--radius-btn);
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: filter var(--transition);
        white-space: nowrap;
    }
    .footer-subscribe button:hover {
        filter: brightness(0.92);
    }
    .footer-bottom {
        border-top: 1px solid var(--border-subtle);
        padding-top: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
        color: var(--text-muted);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1024px) {
        .site-nav {
            gap: 18px;
        }
        .masthead-brand .brand-text {
            font-size: 28px;
        }
        .page-title-section h1 {
            font-size: 32px;
        }
        .featured-score {
            font-size: 36px;
        }
        .featured-team {
            font-size: 20px;
        }
    }
    @media (max-width: 640px) {
        .masthead {
            flex-wrap: wrap;
        }
        .masthead-meta {
            order: 3;
            width: 100%;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .nav-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .site-nav {
            display: none;
            flex-direction: column;
            gap: 0;
            padding: 8px 0 12px;
        }
        .site-nav.open {
            display: flex;
        }
        .site-nav a {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            width: 100%;
            font-size: 15px;
        }
        .site-nav a.active {
            border-bottom-color: var(--accent-lime);
        }
        .page-title-section h1 {
            font-size: 28px;
        }
        .featured-content {
            padding: 20px;
            min-height: 220px;
        }
        .featured-score {
            font-size: 30px;
        }
        .featured-team {
            font-size: 17px;
            min-width: 80px;
        }
        .match-card {
            padding: 12px 14px;
            gap: 10px;
        }
        .match-team {
            font-size: 14px;
        }
        .match-score {
            font-size: 17px;
            min-width: 40px;
        }
        .match-league-tag {
            font-size: 11px;
            padding: 3px 8px;
            min-width: 55px;
        }
        .match-status {
            font-size: 11px;
            min-width: 55px;
        }
        .cta-card {
            padding: 20px;
            flex-direction: column;
            text-align: center;
        }
        .cta-form {
            width: 100%;
            max-width: 100%;
            justify-content: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }
    @media (max-width: 480px) {
        .masthead-brand .brand-text {
            font-size: 24px;
        }
        .masthead-brand .brand-icon {
            width: 32px;
            height: 32px;
            font-size: 15px;
        }
        .featured-score {
            font-size: 26px;
        }
        .featured-team {
            font-size: 15px;
            min-width: 60px;
        }
        .featured-matchup {
            gap: 12px;
        }
        .overview-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .overview-number {
            font-size: 28px;
        }
        .pills-group {
            gap: 6px;
        }
        .pill-btn {
            padding: 6px 12px;
            font-size: 12px;
        }
    }

/* roulang page: category2 */
/* ============================================================
       全站设计系统 — 球探比分
       深色体育数据终端风格
       ============================================================ */
    :root {
        --bg-primary: #0C1210;
        --bg-secondary: #111B17;
        --bg-card: #16231E;
        --bg-elevated: #1B2C25;
        --border-subtle: #203A30;
        --border-glow: #2E5C47;
        --text-primary: #F2F5F0;
        --text-secondary: #9AA8A0;
        --text-muted: #66766D;
        --accent-lime: #C8E83C;
        --accent-orange: #E05A2A;
        --accent-teal: #2F9E7A;
        --on-accent: #0C1210;
        --radius-card: 10px;
        --radius-btn: 8px;
        --radius-badge: 999px;
        --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.45);
        --transition: 0.2s ease;
        --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', ui-monospace, 'Consolas', monospace;
        --font-condensed: 'Oswald', 'Arial Narrow', 'Impact', 'PingFang SC', sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-family: var(--font-body);
        font-size: 15px;
        line-height: 1.65;
        color: var(--text-primary);
        background-color: var(--bg-primary);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    a {
        color: var(--accent-lime);
        text-decoration: none;
        transition: color var(--transition);
    }

    a:hover {
        color: var(--accent-teal);
        text-decoration: none;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
        outline: 2px solid var(--accent-teal);
        outline-offset: 2px;
    }

    button,
    input,
    select,
    textarea {
        font-family: var(--font-body);
        font-size: 15px;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section {
        padding: 56px 0;
    }

    .section-alt {
        background-color: var(--bg-secondary);
    }

    /* ============ HEADER / NAV ============ */
    .site-header {
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-subtle);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    }

    .masthead-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .masthead-brand .brand-icon {
        width: 38px;
        height: 38px;
        background: var(--accent-lime);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--on-accent);
        font-size: 18px;
        flex-shrink: 0;
    }

    .masthead-brand .brand-text {
        font-family: var(--font-condensed);
        font-size: 32px;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: 1px;
        line-height: 1.1;
    }

    .masthead-brand .brand-text .highlight {
        color: var(--accent-lime);
    }

    .masthead-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
    }

    .masthead-meta .stat-badge {
        background: var(--bg-elevated);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-badge);
        padding: 6px 14px;
        font-size: 13px;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .masthead-meta .stat-badge .dot {
        width: 7px;
        height: 7px;
        background: var(--accent-orange);
        border-radius: 50%;
        display: inline-block;
        animation: pulse-dot 1.8s infinite;
    }

    @keyframes pulse-dot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.4; transform: scale(0.75); }
    }

    .masthead-date {
        font-family: var(--font-mono);
        font-size: 13px;
        color: var(--text-muted);
        white-space: nowrap;
    }

    .masthead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0;
        gap: 16px;
    }

    .nav-divider {
        border-top: 1px solid var(--border-subtle);
    }

    .site-nav {
        display: flex;
        align-items: center;
        gap: 28px;
        padding: 10px 0 12px;
        flex-wrap: wrap;
    }

    .site-nav a {
        color: var(--text-secondary);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.3px;
        padding: 4px 0;
        border-bottom: 2px solid transparent;
        transition: color var(--transition), border-color var(--transition);
        white-space: nowrap;
    }

    .site-nav a:hover {
        color: var(--text-primary);
        border-bottom-color: var(--accent-lime);
    }

    .site-nav a.active {
        color: var(--accent-lime);
        border-bottom-color: var(--accent-lime);
        font-weight: 600;
    }

    .nav-toggle {
        display: none;
        background: var(--bg-elevated);
        border: 1px solid var(--border-glow);
        border-radius: var(--radius-btn);
        color: var(--text-primary);
        padding: 8px 14px;
        cursor: pointer;
        font-size: 20px;
        line-height: 1;
        transition: background var(--transition);
    }

    .nav-toggle:hover {
        background: var(--bg-card);
    }

    /* ============ BREADCRUMB ============ */
    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 18px 0 0;
        font-size: 13px;
        color: var(--text-muted);
        flex-wrap: wrap;
    }

    .breadcrumb a {
        color: var(--text-secondary);
    }

    .breadcrumb a:hover {
        color: var(--accent-lime);
    }

    .breadcrumb .separator {
        color: var(--text-muted);
        font-size: 11px;
    }

    .breadcrumb .current {
        color: var(--accent-lime);
        font-weight: 500;
    }

    /* ============ PAGE HEADER ============ */
    .page-header {
        position: relative;
        padding: 48px 0 40px;
        background-color: var(--bg-secondary);
        background-image: linear-gradient(rgba(12, 18, 16, 0.88), rgba(12, 18, 16, 0.92)), url('/assets/images/6241cdd1a091e038.webp');
        background-size: cover;
        background-position: center;
        border-bottom: 1px solid var(--border-subtle);
    }

    .page-header-inner {
        position: relative;
        z-index: 1;
    }

    .page-header h1 {
        font-family: var(--font-condensed);
        font-size: 36px;
        font-weight: 700;
        color: var(--text-primary);
        line-height: 1.25;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
    }

    .page-header .subtitle {
        font-size: 16px;
        color: var(--text-secondary);
        line-height: 1.7;
        max-width: 720px;
    }

    /* ============ BUTTONS & BADGES ============ */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 22px;
        border-radius: var(--radius-btn);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: all var(--transition);
        text-decoration: none;
        letter-spacing: 0.4px;
        justify-content: center;
    }

    .btn-primary {
        background: var(--accent-lime);
        color: var(--on-accent);
    }

    .btn-primary:hover {
        background: #b8d634;
        color: var(--on-accent);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset, 0 4px 16px rgba(200, 232, 60, 0.25);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        border: 1px solid var(--border-glow);
    }

    .btn-secondary:hover {
        background: var(--bg-elevated);
        border-color: var(--accent-lime);
        color: var(--accent-lime);
    }

    .btn-accent {
        background: var(--accent-orange);
        color: #ffffff;
    }

    .btn-accent:hover {
        background: #f06a42;
        color: #ffffff;
        box-shadow: 0 4px 16px rgba(224, 90, 42, 0.35);
    }

    .btn-sm {
        padding: 7px 14px;
        font-size: 13px;
        border-radius: 6px;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 4px 12px;
        border-radius: var(--radius-badge);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.3px;
        line-height: 1.4;
        white-space: nowrap;
    }

    .badge-lime {
        background: rgba(200, 232, 60, 0.12);
        color: var(--accent-lime);
        border: 1px solid rgba(200, 232, 60, 0.3);
    }

    .badge-orange {
        background: rgba(224, 90, 42, 0.12);
        color: var(--accent-orange);
        border: 1px solid rgba(224, 90, 42, 0.3);
    }

    .badge-teal {
        background: rgba(47, 158, 122, 0.12);
        color: var(--accent-teal);
        border: 1px solid rgba(47, 158, 122, 0.3);
    }

    .badge-muted {
        background: rgba(102, 118, 109, 0.15);
        color: var(--text-muted);
        border: 1px solid var(--border-subtle);
    }

    /* ============ CARDS ============ */
    .card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-card);
        transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
        overflow: hidden;
    }

    .card:hover {
        border-color: var(--border-glow);
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
    }

    .card-body {
        padding: 20px;
    }

    .card-title {
        font-size: 17px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .card-text {
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.65;
    }

    /* ============ PAGE SPECIFIC: TOOLBAR ============ */
    .date-toolbar {
        display: flex;
        align-items: center;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--border-glow) transparent;
    }

    .date-toolbar::-webkit-scrollbar {
        height: 4px;
    }

    .date-toolbar::-webkit-scrollbar-thumb {
        background: var(--border-glow);
        border-radius: 4px;
    }

    .date-chip {
        flex-shrink: 0;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-btn);
        padding: 10px 16px;
        text-align: center;
        cursor: pointer;
        transition: all var(--transition);
        min-width: 72px;
        user-select: none;
    }

    .date-chip:hover {
        border-color: var(--border-glow);
        background: var(--bg-elevated);
    }

    .date-chip.active {
        border-color: var(--accent-lime);
        background: rgba(200, 232, 60, 0.08);
    }

    .date-chip .day-name {
        font-size: 12px;
        color: var(--text-muted);
        display: block;
        margin-bottom: 2px;
    }

    .date-chip .day-num {
        font-family: var(--font-mono);
        font-size: 20px;
        font-weight: 700;
        color: var(--text-primary);
        display: block;
        line-height: 1.2;
    }

    .date-chip.active .day-num {
        color: var(--accent-lime);
    }

    .date-chip .month {
        font-size: 11px;
        color: var(--text-muted);
        display: block;
    }

    /* ============ SCHEDULE LIST ============ */
    .match-row {
        display: flex;
        align-items: center;
        gap: 16px;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 16px 20px;
        margin-bottom: 12px;
        transition: border-color var(--transition), background var(--transition);
        flex-wrap: wrap;
    }

    .match-row:hover {
        border-color: var(--border-glow);
        background: var(--bg-elevated);
    }

    .match-league {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 90px;
        flex-shrink: 0;
    }

    .league-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .league-dot.premier { background: #3D195B; }
    .league-dot.laliga { background: #EE324E; }
    .league-dot.seriea { background: #008FD7; }
    .league-dot.bundesliga { background: #D20515; }
    .league-dot.nba { background: #C8102E; }
    .league-dot.ligue1 { background: #DAA520; }

    .match-league .league-name {
        font-size: 13px;
        color: var(--text-secondary);
        font-weight: 500;
        white-space: nowrap;
    }

    .match-teams {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-primary);
        min-width: 180px;
        flex-wrap: wrap;
    }

    .match-teams .home,
    .match-teams .away {
        white-space: nowrap;
    }

    .match-teams .vs {
        font-family: var(--font-mono);
        color: var(--text-muted);
        font-weight: 400;
        font-size: 13px;
        padding: 0 4px;
    }

    .match-time {
        font-family: var(--font-mono);
        font-size: 15px;
        color: var(--accent-lime);
        font-weight: 600;
        min-width: 70px;
        text-align: right;
        flex-shrink: 0;
    }

    .match-status {
        flex-shrink: 0;
    }

    /* ============ ACCORDION (定制) ============ */
    .accordion {
        border: none;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .accordion-item {
        margin-bottom: 10px;
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        overflow: hidden;
        background: var(--bg-card);
        transition: border-color var(--transition);
    }

    .accordion-item:hover {
        border-color: var(--border-glow);
    }

    .accordion-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-primary);
        background: var(--bg-card);
        cursor: pointer;
        transition: background var(--transition);
        text-decoration: none !important;
    }

    .accordion-title:hover {
        background: var(--bg-elevated);
        color: var(--accent-lime);
    }

    .accordion-title .fa-chevron-down {
        font-size: 14px;
        color: var(--text-muted);
        transition: transform var(--transition);
    }

    .accordion-item.is-active .accordion-title .fa-chevron-down {
        transform: rotate(180deg);
        color: var(--accent-lime);
    }

    .accordion-content {
        padding: 0 20px 16px;
        background: var(--bg-card);
        border-top: 1px solid var(--border-subtle);
    }

    .accordion-content .match-mini {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-subtle);
        font-size: 14px;
        color: var(--text-secondary);
        flex-wrap: wrap;
    }

    .accordion-content .match-mini:last-child {
        border-bottom: none;
    }

    .accordion-content .match-mini .teams {
        font-weight: 500;
        color: var(--text-primary);
    }

    .accordion-content .match-mini .date {
        font-family: var(--font-mono);
        font-size: 13px;
        color: var(--text-muted);
    }

    /* ============ HEAD-TO-HEAD ============ */
    .h2h-card {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .h2h-card .h2h-header {
        padding: 18px 20px 12px;
        border-bottom: 1px solid var(--border-subtle);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .h2h-card .h2h-header .teams {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
    }

    .h2h-card .h2h-header .league-tag {
        font-size: 12px;
        color: var(--text-muted);
        background: var(--bg-elevated);
        padding: 3px 10px;
        border-radius: var(--radius-badge);
        border: 1px solid var(--border-subtle);
    }

    .h2h-card .h2h-body {
        padding: 16px 20px;
        display: flex;
        gap: 14px;
        align-items: center;
        flex-wrap: wrap;
    }

    .h2h-card .h2h-img {
        width: 100px;
        height: 70px;
        object-fit: cover;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .h2h-scores {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        flex: 1;
    }

    .h2h-score-item {
        background: var(--bg-elevated);
        border-radius: 6px;
        padding: 8px 12px;
        text-align: center;
        min-width: 60px;
        border: 1px solid var(--border-subtle);
    }

    .h2h-score-item .score {
        font-family: var(--font-mono);
        font-size: 18px;
        font-weight: 700;
        color: var(--accent-lime);
        display: block;
        line-height: 1.3;
    }

    .h2h-score-item .detail {
        font-size: 11px;
        color: var(--text-muted);
    }

    /* ============ DATA NOTE ============ */
    .data-note-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
    }

    .data-note-item {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 18px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .data-note-item .icon-wrap {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(47, 158, 122, 0.12);
        border: 1px solid rgba(47, 158, 122, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-teal);
        font-size: 18px;
        flex-shrink: 0;
    }

    .data-note-item .data-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 4px;
    }

    .data-note-item .data-desc {
        font-size: 13px;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* ============ MORE LINK ============ */
    .more-link-bar {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-card);
        padding: 18px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }

    .more-link-bar .more-text {
        font-size: 15px;
        color: var(--text-secondary);
    }

    .more-link-bar .more-text strong {
        color: var(--text-primary);
    }

    /* ============ FOOTER ============ */
    .site-footer {
        background: #080C0A;
        border-top: 1px solid var(--border-subtle);
        padding: 48px 0 20px;
        margin-top: 40px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .footer-brand {
        font-family: var(--font-condensed);
        font-size: 22px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 12px;
    }

    .footer-brand .highlight {
        color: var(--accent-lime);
    }

    .footer-col p {
        font-size: 13px;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    .footer-col h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 14px;
        letter-spacing: 0.5px;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul li a {
        font-size: 13px;
        color: var(--text-secondary);
        transition: color var(--transition);
    }

    .footer-col ul li a:hover {
        color: var(--accent-lime);
    }

    .footer-email {
        margin-top: 8px;
        font-family: var(--font-mono);
        font-size: 12px;
        color: var(--text-muted);
        word-break: break-all;
    }

    .footer-subscribe {
        display: flex;
        gap: 8px;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .footer-subscribe input {
        flex: 1;
        min-width: 160px;
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-btn);
        padding: 8px 14px;
        color: var(--text-primary);
        font-size: 13px;
        transition: border-color var(--transition);
    }

    .footer-subscribe input::placeholder {
        color: var(--text-muted);
    }

    .footer-subscribe input:focus {
        border-color: var(--accent-lime);
        outline: none;
    }

    .footer-subscribe button {
        background: var(--accent-lime);
        color: var(--on-accent);
        border: none;
        border-radius: var(--radius-btn);
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: background var(--transition);
        white-space: nowrap;
    }

    .footer-subscribe button:hover {
        background: #b8d634;
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-top: 24px;
        margin-top: 32px;
        border-top: 1px solid var(--border-subtle);
        font-size: 12px;
        color: var(--text-muted);
        flex-wrap: wrap;
    }

    .footer-bottom .copyright {
        font-weight: 500;
    }

    .footer-bottom .disclaimer {
        color: var(--text-muted);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1023px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .page-header h1 {
            font-size: 30px;
        }

        .match-row {
            padding: 14px 16px;
        }

        .match-teams {
            font-size: 14px;
        }
    }

    @media (max-width: 640px) {
        .masthead {
            flex-wrap: wrap;
            gap: 10px;
        }

        .masthead-meta {
            gap: 8px;
        }

        .masthead-meta .stat-badge {
            font-size: 12px;
            padding: 4px 10px;
        }

        .masthead-date {
            font-size: 12px;
        }

        .masthead-brand .brand-text {
            font-size: 26px;
        }

        .masthead-brand .brand-icon {
            width: 32px;
            height: 32px;
            font-size: 15px;
        }

        .nav-toggle {
            display: block;
        }

        .site-nav {
            display: none;
            flex-direction: column;
            gap: 4px;
            padding: 10px 0 16px;
        }

        .site-nav.open {
            display: flex;
        }

        .site-nav a {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            width: 100%;
            font-size: 15px;
        }

        .site-nav a.active {
            border-bottom-color: var(--accent-lime);
        }

        .page-header {
            padding: 32px 0 28px;
        }

        .page-header h1 {
            font-size: 26px;
        }

        .page-header .subtitle {
            font-size: 14px;
        }

        .section {
            padding: 36px 0;
        }

        .match-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .match-league {
            min-width: auto;
        }

        .match-time {
            text-align: left;
            min-width: auto;
        }

        .match-teams {
            min-width: auto;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .more-link-bar {
            flex-direction: column;
            align-items: flex-start;
        }

        .h2h-card .h2h-body {
            flex-direction: column;
            align-items: flex-start;
        }

        .h2h-scores {
            width: 100%;
        }

        .h2h-score-item {
            flex: 1;
            min-width: 50px;
        }

        .date-chip {
            min-width: 60px;
            padding: 8px 12px;
        }

        .date-chip .day-num {
            font-size: 17px;
        }
    }

    @media (max-width: 480px) {
        .masthead-meta .stat-badge {
            font-size: 11px;
            padding: 4px 8px;
        }

        .masthead-brand .brand-text {
            font-size: 22px;
        }

        .page-header h1 {
            font-size: 22px;
        }

        .card-body {
            padding: 16px;
        }
    }

/* roulang page: category4 */
:root {
            --bg-primary: #0C1210;
            --bg-secondary: #111B17;
            --bg-card: #16231E;
            --bg-elevated: #1B2C25;
            --border-subtle: #203A30;
            --border-glow: #2E5C47;
            --text-primary: #F2F5F0;
            --text-secondary: #9AA8A0;
            --text-muted: #66766D;
            --accent-lime: #C8E83C;
            --accent-orange: #E05A2A;
            --accent-teal: #2F9E7A;
            --on-accent: #0C1210;
            --radius-card: 10px;
            --radius-btn: 8px;
            --radius-badge: 999px;
            --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.45);
            --transition: 0.2s ease;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', ui-monospace, 'Consolas', monospace;
            --font-condensed: 'Oswald', 'Arial Narrow', 'Impact', 'PingFang SC', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.65;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--accent-lime);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--accent-teal);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--accent-teal);
            outline-offset: 2px;
        }

        button,
        input,
        select,
        textarea {
            font-family: var(--font-body);
            font-size: 15px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
        }

        .masthead {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 14px 0 10px;
            flex-wrap: wrap;
        }

        .masthead-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .masthead-brand .brand-icon {
            width: 38px;
            height: 38px;
            background: var(--accent-lime);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--on-accent);
            font-size: 18px;
            flex-shrink: 0;
        }

        .masthead-brand .brand-text {
            font-family: var(--font-condensed);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1.1;
        }

        .masthead-brand .brand-text .highlight {
            color: var(--accent-lime);
        }

        .masthead-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .masthead-meta .stat-badge {
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-badge);
            padding: 6px 14px;
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .masthead-meta .stat-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--accent-orange);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 1.8s infinite;
        }

        .masthead-meta .masthead-date {
            font-size: 13px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .nav-divider {
            border-top: 1px solid var(--border-subtle);
        }

        .site-nav {
            display: flex;
            align-items: center;
            gap: 28px;
            padding: 10px 0 12px;
            flex-wrap: wrap;
        }

        .site-nav a {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3px;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: color var(--transition), border-color var(--transition);
            white-space: nowrap;
        }

        .site-nav a:hover {
            color: var(--text-primary);
            border-bottom-color: var(--accent-lime);
        }

        .site-nav a.active {
            color: var(--accent-lime);
            border-bottom-color: var(--accent-lime);
            font-weight: 600;
        }

        .nav-toggle {
            display: none;
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            padding: 8px 14px;
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
            transition: background var(--transition);
        }

        .nav-toggle:hover {
            background: var(--bg-card);
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.35; }
        }

        /* ============ MAIN SECTIONS ============ */
        .page-section {
            padding: 48px 0;
        }

        .page-section.alt-bg {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-heading {
            margin-bottom: 32px;
        }

        .section-heading h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.3px;
            margin-bottom: 8px;
        }

        .section-heading p {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.7;
        }

        .section-eyebrow {
            display: inline-block;
            background: rgba(200, 232, 60, 0.1);
            color: var(--accent-lime);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: var(--radius-badge);
            margin-bottom: 14px;
            text-transform: uppercase;
        }

        /* ============ BREADCRUMB ============ */
        .breadcrumb-wrap {
            padding: 20px 0 0;
            font-size: 13px;
            color: var(--text-muted);
        }

        .breadcrumb-wrap a {
            color: var(--text-secondary);
        }

        .breadcrumb-wrap a:hover {
            color: var(--accent-lime);
        }

        .breadcrumb-wrap .separator {
            margin: 0 8px;
            color: var(--text-muted);
        }

        .breadcrumb-wrap .current {
            color: var(--accent-lime);
        }

        /* ============ PAGE HERO (分类页头) ============ */
        .category-hero {
            padding: 36px 0 32px;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-subtle);
        }

        .category-hero h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .category-hero .hero-desc {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 780px;
            line-height: 1.7;
        }

        /* ============ FILTER PILLS ============ */
        .filter-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

        .filter-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-badge);
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
            user-select: none;
        }

        .filter-pill:hover {
            border-color: var(--border-glow);
            color: var(--text-primary);
            background: var(--bg-elevated);
        }

        .filter-pill.active {
            background: var(--accent-lime);
            border-color: var(--accent-lime);
            color: var(--on-accent);
            font-weight: 600;
        }

        .filter-pill .count {
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--text-muted);
        }

        .filter-pill.active .count {
            color: var(--on-accent);
            opacity: 0.7;
        }

        /* ============ SEARCH BAR ============ */
        .search-bar-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
            margin-bottom: 32px;
        }

        .search-input-group {
            flex: 1;
            min-width: 260px;
            position: relative;
        }

        .search-input-group .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
            pointer-events: none;
        }

        .search-input-group input {
            width: 100%;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 12px 16px 12px 42px;
            color: var(--text-primary);
            font-size: 14px;
            transition: border-color var(--transition), background var(--transition);
        }

        .search-input-group input::placeholder {
            color: var(--text-muted);
        }

        .search-input-group input:focus {
            border-color: var(--accent-lime);
            background: var(--bg-elevated);
            outline: none;
        }

        /* ============ TEAM CARDS ============ */
        .team-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
            gap: 18px;
        }

        .team-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all var(--transition);
            position: relative;
        }

        .team-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card);
            transform: translateY(-3px);
        }

        .team-card .card-img {
            position: relative;
            height: 160px;
            background: var(--bg-elevated);
            overflow: hidden;
        }

        .team-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            transition: transform var(--transition), opacity var(--transition);
        }

        .team-card:hover .card-img img {
            transform: scale(1.05);
            opacity: 0.9;
        }

        .team-card .card-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(12,18,16,0.2), rgba(12,18,16,0.75));
            pointer-events: none;
        }

        .team-card .league-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
            background: var(--accent-lime);
            color: var(--on-accent);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-badge);
        }

        .team-card .card-content {
            padding: 16px 18px 18px;
        }

        .team-card .card-content h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .team-card .card-desc {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .team-card .recent-form {
            display: flex;
            gap: 5px;
            align-items: center;
        }

        .form-badge {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            font-family: var(--font-mono);
        }

        .form-badge.w {
            background: var(--accent-teal);
            color: #fff;
        }

        .form-badge.d {
            background: #8a8f8c;
            color: #fff;
        }

        .form-badge.l {
            background: var(--accent-orange);
            color: #fff;
        }

        .form-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-left: 6px;
        }

        /* ============ FEATURED TEAM CARDS ============ */
        .featured-team-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .featured-team-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-card);
            padding: 24px;
            transition: all var(--transition);
        }

        .featured-team-card:hover {
            box-shadow: var(--shadow-card);
            border-color: var(--accent-lime);
        }

        .featured-team-card .featured-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 18px;
        }

        .featured-team-card .featured-img {
            width: 56px;
            height: 56px;
            border-radius: 10px;
            background: var(--bg-elevated);
            overflow: hidden;
            flex-shrink: 0;
        }

        .featured-team-card .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-team-card .featured-title h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .featured-team-card .featured-title .sub {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .metric-row {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .metric-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .metric-item .metric-label {
            font-size: 13px;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .metric-item .metric-bar {
            flex: 1;
            height: 6px;
            background: var(--bg-elevated);
            border-radius: 999px;
            overflow: hidden;
        }

        .metric-item .metric-bar .metric-fill {
            height: 100%;
            border-radius: 999px;
            background: var(--accent-lime);
            transition: width 0.5s ease;
        }

        .metric-item .metric-bar .metric-fill.teal {
            background: var(--accent-teal);
        }

        .metric-item .metric-bar .metric-fill.orange {
            background: var(--accent-orange);
        }

        .metric-item .metric-value {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            min-width: 40px;
            text-align: right;
        }

        /* ============ PLAYER DATA BARS ============ */
        .player-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .player-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            transition: all var(--transition);
        }

        .player-item:hover {
            border-color: var(--border-glow);
            background: var(--bg-elevated);
        }

        .player-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-lime);
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }

        .player-info {
            flex: 1;
            min-width: 140px;
        }

        .player-info .player-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .player-info .player-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        .player-stats {
            display: flex;
            gap: 20px;
            flex-shrink: 0;
        }

        .player-stat {
            text-align: center;
        }

        .player-stat .stat-num {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-lime);
        }

        .player-stat .stat-label {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ============ DATA NOTE ============ */
        .data-note {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-start;
        }

        .data-note-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: rgba(47, 158, 122, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-teal);
            font-size: 20px;
            flex-shrink: 0;
        }

        .data-note-content h3 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .data-note-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ============ MORE LINK ============ */
        .more-link-wrap {
            text-align: center;
            padding: 16px 0 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.3px;
            cursor: pointer;
            transition: all var(--transition);
            border: none;
            text-decoration: none;
            padding: 12px 24px;
        }

        .btn-primary {
            background: var(--accent-lime);
            color: var(--on-accent);
        }

        .btn-primary:hover {
            background: #b8d832;
            color: var(--on-accent);
            box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid var(--border-glow);
            color: var(--text-primary);
        }

        .btn-secondary:hover {
            background: var(--bg-elevated);
            border-color: var(--accent-lime);
            color: var(--text-primary);
        }

        .btn-accent {
            background: var(--accent-orange);
            color: #fff;
        }

        .btn-accent:hover {
            background: #c94f24;
            color: #fff;
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 13px;
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: #080D0B;
            border-top: 1px solid var(--border-subtle);
            padding: 40px 0 20px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            font-family: var(--font-condensed);
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .footer-brand .highlight {
            color: var(--accent-lime);
        }

        .footer-col p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 6px;
        }

        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 13px;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent-lime);
        }

        .footer-email {
            color: var(--text-muted);
            font-size: 12px;
        }

        .footer-subscribe {
            display: flex;
            gap: 8px;
        }

        .footer-subscribe input {
            flex: 1;
            min-width: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 9px 12px;
            color: var(--text-primary);
            font-size: 13px;
        }

        .footer-subscribe input::placeholder {
            color: var(--text-muted);
        }

        .footer-subscribe button {
            background: var(--accent-lime);
            color: var(--on-accent);
            border: none;
            border-radius: var(--radius-btn);
            padding: 9px 14px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: background var(--transition);
            white-space: nowrap;
        }

        .footer-subscribe button:hover {
            background: #b8d832;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            border-top: 1px solid var(--border-subtle);
            padding-top: 18px;
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .container {
                padding: 0 16px;
            }

            .page-section {
                padding: 36px 0;
            }

            .featured-team-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 640px) {
            .masthead {
                padding: 10px 0 8px;
                gap: 10px;
            }

            .masthead-brand .brand-text {
                font-size: 24px;
            }

            .masthead-brand .brand-icon {
                width: 32px;
                height: 32px;
                font-size: 15px;
            }

            .masthead-meta {
                gap: 8px;
                flex-wrap: wrap;
            }

            .masthead-meta .stat-badge {
                font-size: 11px;
                padding: 4px 10px;
            }

            .masthead-meta .masthead-date {
                font-size: 11px;
            }

            .nav-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 6px 10px;
                font-size: 18px;
            }

            .site-nav {
                display: none;
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
                padding: 8px 0 16px;
            }

            .site-nav.open {
                display: flex;
            }

            .site-nav a {
                display: block;
                width: 100%;
                padding: 8px 0;
                border-bottom: 1px solid var(--border-subtle);
                font-size: 15px;
            }

            .site-nav a.active {
                border-bottom-color: var(--accent-lime);
            }

            .category-hero {
                padding: 24px 0 20px;
            }

            .category-hero h1 {
                font-size: 24px;
            }

            .category-hero .hero-desc {
                font-size: 13px;
            }

            .section-heading h2 {
                font-size: 19px;
            }

            .team-card-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .filter-pills {
                gap: 6px;
            }

            .filter-pill {
                padding: 6px 12px;
                font-size: 12px;
            }

            .search-bar-wrap {
                flex-direction: column;
                gap: 10px;
            }

            .search-input-group {
                min-width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .player-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .player-stats {
                width: 100%;
                justify-content: space-between;
            }

            .featured-team-card {
                padding: 18px;
            }
        }

        @media (min-width: 641px) and (max-width: 1024px) {
            .site-nav {
                gap: 18px;
                overflow-x: auto;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
            }

            .site-nav a {
                white-space: nowrap;
            }

            .team-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1025px) {
            .team-card-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

/* roulang page: category3 */
/* ============ 设计系统变量 ============ */
        :root {
            --bg-primary: #0C1210;
            --bg-secondary: #111B17;
            --bg-card: #16231E;
            --bg-elevated: #1B2C25;
            --border-subtle: #203A30;
            --border-glow: #2E5C47;
            --text-primary: #F2F5F0;
            --text-secondary: #9AA8A0;
            --text-muted: #66766D;
            --accent-lime: #C8E83C;
            --accent-orange: #E05A2A;
            --accent-teal: #2F9E7A;
            --on-accent: #0C1210;
            --radius-card: 10px;
            --radius-btn: 8px;
            --radius-badge: 999px;
            --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.45);
            --transition: 0.2s ease;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', ui-monospace, 'Consolas', monospace;
            --font-condensed: 'Oswald', 'Arial Narrow', 'Impact', 'PingFang SC', sans-serif;
        }

        /* ============ Reset / Base ============ */
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.65;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--accent-lime);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--accent-teal);
            text-decoration: none;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--accent-teal);
            outline-offset: 2px;
        }
        button,
        input,
        select,
        textarea {
            font-family: var(--font-body);
            font-size: 15px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .container-fluid {
            max-width: 100%;
            padding: 0;
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
        }
        .masthead {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            gap: 16px;
            flex-wrap: wrap;
        }
        .masthead-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .masthead-brand .brand-icon {
            width: 38px;
            height: 38px;
            background: var(--accent-lime);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--on-accent);
            font-size: 18px;
            flex-shrink: 0;
        }
        .masthead-brand .brand-text {
            font-family: var(--font-condensed);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1.1;
        }
        .masthead-brand .brand-text .highlight {
            color: var(--accent-lime);
        }
        .masthead-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }
        .masthead-meta .stat-badge {
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-badge);
            padding: 6px 14px;
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .masthead-meta .stat-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--accent-orange);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 1.8s infinite;
        }
        .masthead-date {
            font-size: 13px;
            color: var(--text-muted);
            white-space: nowrap;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.75); }
        }
        .nav-toggle {
            display: none;
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            padding: 8px 14px;
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: var(--bg-card);
        }
        .nav-divider {
            border-top: 1px solid var(--border-subtle);
        }
        .site-nav {
            display: flex;
            align-items: center;
            gap: 28px;
            padding: 10px 0 12px;
            flex-wrap: wrap;
        }
        .site-nav a {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3px;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: color var(--transition), border-color var(--transition);
            white-space: nowrap;
        }
        .site-nav a:hover {
            color: var(--text-primary);
            border-bottom-color: var(--accent-lime);
        }
        .site-nav a.active {
            color: var(--accent-lime);
            border-bottom-color: var(--accent-lime);
            font-weight: 600;
        }

        /* ============ BREADCRUMB ============ */
        .breadcrumb-section {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-subtle);
            padding: 14px 0;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--accent-lime);
        }
        .breadcrumb .separator {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1;
        }
        .breadcrumb .current {
            color: var(--accent-lime);
            font-weight: 500;
        }

        /* ============ PAGE SECTIONS ============ */
        main {
            display: block;
        }
        .section {
            padding: 48px 0;
        }
        .section-alt {
            background: var(--bg-secondary);
        }
        .section-tight {
            padding: 28px 0;
        }

        /* ============ TYPOGRAPHY ============ */
        .page-h1 {
            font-family: var(--font-condensed);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            margin: 0 0 12px;
            line-height: 1.25;
        }
        .page-h1 .highlight {
            color: var(--accent-lime);
        }
        .page-lead {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 800px;
            margin: 0 0 24px;
        }
        .section-title {
            font-family: var(--font-condensed);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.3px;
            margin: 0 0 8px;
            line-height: 1.3;
        }
        .section-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0 0 24px;
            line-height: 1.6;
        }

        /* ============ LEAGUE PILLS ============ */
        .league-pills {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 0 0 28px;
        }
        .league-pills .pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-badge);
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            line-height: 1.2;
        }
        .league-pills .pill:hover {
            background: var(--bg-elevated);
            border-color: var(--border-glow);
            color: var(--text-primary);
        }
        .league-pills .pill.active {
            background: var(--accent-lime);
            border-color: var(--accent-lime);
            color: var(--on-accent);
            font-weight: 600;
        }
        .league-pills .pill .live-indicator {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-orange);
            display: inline-block;
        }
        .league-pills .pill.active .live-indicator {
            background: var(--on-accent);
        }

        /* ============ STANDINGS TABLE ============ */
        .table-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            margin-bottom: 28px;
            box-shadow: var(--shadow-card);
        }
        .table-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-subtle);
            gap: 12px;
            flex-wrap: wrap;
        }
        .table-card-header h2 {
            font-family: var(--font-condensed);
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            letter-spacing: 0.4px;
        }
        .table-card-header .badge {
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-badge);
            padding: 5px 14px;
            font-size: 12px;
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 640px;
        }
        .standings-table thead th {
            background: var(--bg-elevated);
            color: var(--text-muted);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 12px 14px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
        }
        .standings-table thead th:first-child {
            width: 48px;
            text-align: center;
        }
        .standings-table thead th:last-child {
            width: 56px;
            text-align: center;
        }
        .standings-table tbody tr {
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition);
        }
        .standings-table tbody tr:hover {
            background: var(--bg-elevated);
        }
        .standings-table tbody td {
            padding: 12px 14px;
            font-size: 14px;
            color: var(--text-primary);
            vertical-align: middle;
            white-space: nowrap;
        }
        .standings-table tbody td:first-child {
            font-family: var(--font-mono);
            font-weight: 600;
            text-align: center;
            font-size: 15px;
        }
        .standings-table tbody td:last-child {
            font-family: var(--font-mono);
            font-weight: 700;
            text-align: center;
            font-size: 16px;
            color: var(--accent-lime);
        }
        .standings-table .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .standings-table .team-cell .crest {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: var(--bg-elevated);
            border: 1px solid var(--border-subtle);
            flex-shrink: 0;
            overflow: hidden;
        }
        .standings-table .team-cell .crest img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .standings-table .team-name {
            font-weight: 600;
            color: var(--text-primary);
        }
        .rank-top1 { color: var(--accent-lime); }
        .rank-top2 { color: var(--accent-orange); }
        .rank-top3 { color: var(--accent-teal); }
        .rank-relegation { color: var(--accent-orange); }

        .rank-stripe {
            display: inline-block;
            width: 4px;
            height: 24px;
            border-radius: 2px;
            margin-right: 8px;
            vertical-align: middle;
        }
        .rank-stripe.c1 { background: var(--accent-lime); }
        .rank-stripe.c2 { background: var(--accent-orange); }
        .rank-stripe.c3 { background: var(--accent-teal); }

        .form-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-right: 3px;
            flex-shrink: 0;
        }
        .form-badge.w {
            background: var(--accent-teal);
            color: #fff;
        }
        .form-badge.d {
            background: var(--text-muted);
            color: #fff;
        }
        .form-badge.l {
            background: var(--accent-orange);
            color: #fff;
        }

        /* ============ DATA SUMMARY CARDS ============ */
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 28px;
        }
        .summary-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: all var(--transition);
        }
        .summary-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card);
        }
        .summary-card h3 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            margin: 0 0 8px;
            letter-spacing: 0.3px;
        }
        .summary-card .value {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-lime);
            line-height: 1.2;
        }
        .summary-card .value.accent-orange {
            color: var(--accent-orange);
        }
        .summary-card .value.accent-teal {
            color: var(--accent-teal);
        }
        .summary-card .note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* ============ TREND CARDS ============ */
        .trend-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .trend-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: all var(--transition);
        }
        .trend-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card);
        }
        .trend-card .team-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .trend-card .team-header .crest-sm {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            overflow: hidden;
            flex-shrink: 0;
        }
        .trend-card .team-header .crest-sm img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .trend-card .team-header .team-name-sm {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .trend-card .form-row {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .trend-card .stat-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid var(--border-subtle);
            font-size: 12px;
            color: var(--text-muted);
        }
        .trend-card .stat-row .stat-strong {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--text-primary);
            font-size: 14px;
        }

        /* ============ RULES BLOCK ============ */
        .rules-block {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            margin-bottom: 28px;
        }
        .rules-block h3 {
            font-family: var(--font-condensed);
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 14px;
            letter-spacing: 0.3px;
        }
        .rules-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 24px;
        }
        .rules-list li {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            padding-left: 18px;
            position: relative;
        }
        .rules-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-teal);
        }

        /* ============ CTA LINK ============ */
        .cta-link-row {
            text-align: center;
            padding: 20px 0 8px;
        }
        .cta-link-row .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            transition: all var(--transition);
            cursor: pointer;
        }
        .cta-link-row .btn-secondary:hover {
            background: var(--bg-elevated);
            border-color: var(--accent-lime);
            color: var(--accent-lime);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: #080D0B;
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            margin-top: 16px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand {
            font-family: var(--font-condensed);
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .footer-brand .highlight {
            color: var(--accent-lime);
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 12px;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .footer-col p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0 0 8px;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 13px;
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--accent-lime);
        }
        .footer-email {
            color: var(--text-muted) !important;
            font-size: 12px !important;
            word-break: break-all;
        }
        .footer-subscribe {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .footer-subscribe input {
            flex: 1;
            min-width: 140px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 10px 14px;
            color: var(--text-primary);
            font-size: 13px;
            transition: border-color var(--transition);
        }
        .footer-subscribe input:focus {
            border-color: var(--accent-teal);
            outline: none;
        }
        .footer-subscribe button {
            background: var(--accent-lime);
            color: var(--on-accent);
            border: none;
            border-radius: var(--radius-btn);
            padding: 10px 18px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all var(--transition);
        }
        .footer-subscribe button:hover {
            background: #d8f952;
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid var(--border-subtle);
            gap: 12px;
            flex-wrap: wrap;
        }
        .footer-bottom .copyright {
            font-size: 12px;
            color: var(--text-muted);
        }
        .footer-bottom .disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            text-align: right;
        }

        /* ============ RESPONSIVE ============ */
        @media screen and (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .summary-grid,
            .trend-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .page-h1 {
                font-size: 28px;
            }
            .masthead-brand .brand-text {
                font-size: 28px;
            }
        }

        @media screen and (max-width: 640px) {
            .masthead {
                flex-wrap: nowrap;
            }
            .masthead-meta .stat-badge {
                font-size: 11px;
                padding: 4px 10px;
            }
            .masthead-date {
                display: none;
            }
            .nav-toggle {
                display: block;
            }
            .site-nav {
                display: none;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 8px 0;
            }
            .site-nav.is-open {
                display: flex;
            }
            .site-nav a {
                width: 100%;
                padding: 10px 0;
                border-bottom: 1px solid var(--border-subtle);
                border-bottom-width: 1px;
                font-size: 15px;
            }
            .site-nav a:last-child {
                border-bottom: none;
            }
            .site-nav a.active {
                border-left: 3px solid var(--accent-lime);
                padding-left: 8px;
                border-bottom-color: var(--border-subtle);
            }
            .page-h1 {
                font-size: 24px;
            }
            .section {
                padding: 32px 0;
            }
            .summary-grid,
            .trend-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .rules-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .footer-bottom .disclaimer {
                text-align: left;
            }
            .league-pills .pill {
                padding: 6px 14px;
                font-size: 12px;
            }
            .standings-table tbody td {
                padding: 10px 12px;
                font-size: 13px;
            }
            .breadcrumb {
                font-size: 12px;
            }
            .masthead-brand .brand-text {
                font-size: 24px;
            }
            .masthead-brand .brand-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }

        @media screen and (max-width: 400px) {
            .masthead-meta .stat-badge {
                display: none;
            }
            .masthead-brand .brand-text {
                font-size: 22px;
            }
            .page-h1 {
                font-size: 21px;
            }
        }

/* roulang page: category5 */
:root {
            --bg-primary: #0C1210;
            --bg-secondary: #111B17;
            --bg-card: #16231E;
            --bg-elevated: #1B2C25;
            --border-subtle: #203A30;
            --border-glow: #2E5C47;
            --text-primary: #F2F5F0;
            --text-secondary: #9AA8A0;
            --text-muted: #66766D;
            --accent-lime: #C8E83C;
            --accent-orange: #E05A2A;
            --accent-teal: #2F9E7A;
            --on-accent: #0C1210;
            --radius-card: 10px;
            --radius-btn: 8px;
            --radius-badge: 999px;
            --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.45);
            --transition: 0.2s ease;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', ui-monospace, 'Consolas', monospace;
            --font-condensed: 'Oswald', 'Arial Narrow', 'Impact', 'PingFang SC', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.65;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--accent-lime);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--accent-teal);
            text-decoration: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--accent-teal);
            outline-offset: 2px;
        }

        button,
        input,
        select,
        textarea {
            font-family: var(--font-body);
            font-size: 15px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-body);
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin: 0 0 12px;
        }

        p {
            margin: 0 0 16px;
        }

        ul, ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
        }

        .masthead {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0 12px;
            gap: 20px;
        }

        .masthead-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .masthead-brand .brand-icon {
            width: 38px;
            height: 38px;
            background: var(--accent-lime);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--on-accent);
            font-size: 18px;
            flex-shrink: 0;
        }

        .masthead-brand .brand-text {
            font-family: var(--font-condensed);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1.1;
        }

        .masthead-brand .brand-text .highlight {
            color: var(--accent-lime);
        }

        .masthead-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .masthead-meta .stat-badge {
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-badge);
            padding: 6px 14px;
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .masthead-meta .stat-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--accent-orange);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 1.8s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.8); }
        }

        .masthead-date {
            color: var(--text-muted);
            font-size: 13px;
            font-family: var(--font-mono);
            letter-spacing: 0.5px;
        }

        .nav-toggle {
            display: none;
            background: var(--bg-elevated);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            padding: 8px 14px;
            cursor: pointer;
            font-size: 20px;
            line-height: 1;
            transition: background var(--transition);
        }

        .nav-toggle:hover {
            background: var(--bg-card);
        }

        .nav-divider {
            border-top: 1px solid var(--border-subtle);
        }

        .site-nav {
            display: flex;
            align-items: center;
            gap: 28px;
            padding: 10px 0 12px;
            flex-wrap: wrap;
        }

        .site-nav a {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.3px;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: color var(--transition), border-color var(--transition);
            white-space: nowrap;
        }

        .site-nav a:hover {
            color: var(--text-primary);
            border-bottom-color: var(--accent-lime);
        }

        .site-nav a.active {
            color: var(--accent-lime);
            border-bottom-color: var(--accent-lime);
            font-weight: 600;
        }

        /* ============ PAGE CONTENT ============ */
        .page-content {
            padding: 32px 0 0;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-secondary);
        }

        .breadcrumb a:hover {
            color: var(--accent-lime);
        }

        .breadcrumb .crumb-sep {
            color: var(--border-glow);
        }

        .breadcrumb .current {
            color: var(--text-primary);
            font-weight: 500;
        }

        .page-heading {
            margin-bottom: 32px;
        }

        .page-heading h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
            color: var(--text-primary);
        }

        .page-heading .page-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ============ SECTION COMMON ============ */
        .content-section {
            padding: 36px 0;
            border-bottom: 1px solid var(--border-subtle);
        }

        .content-section:last-of-type {
            border-bottom: none;
        }

        .section-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            color: var(--text-primary);
        }

        .section-title .title-accent {
            color: var(--accent-lime);
        }

        /* ============ FEATURED ANALYSIS ============ */
        .featured-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .featured-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
        }

        .featured-img-wrap {
            position: relative;
            overflow: hidden;
            max-height: 380px;
        }

        .featured-img-wrap img {
            width: 100%;
            object-fit: cover;
            filter: brightness(0.72);
            transition: transform 0.3s ease;
        }

        .featured-card:hover .featured-img-wrap img {
            transform: scale(1.03);
        }

        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(180deg, transparent 0%, rgba(12, 18, 16, 0.85) 100%);
        }

        .featured-badge-row {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .featured-overlay h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
            line-height: 1.35;
        }

        .featured-overlay .featured-excerpt {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 12px;
            max-width: 680px;
        }

        .featured-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            color: var(--text-muted);
            font-size: 13px;
            font-family: var(--font-mono);
        }

        .featured-body {
            padding: 20px 24px 24px;
        }

        .featured-body p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
            text-decoration: none;
            line-height: 1.4;
        }

        .btn-primary {
            background: var(--accent-lime);
            color: var(--on-accent);
        }

        .btn-primary:hover {
            background: #b8d630;
            color: var(--on-accent);
            opacity: 0.92;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-glow);
        }

        .btn-secondary:hover {
            background: var(--bg-elevated);
            border-color: var(--accent-lime);
            color: var(--accent-lime);
        }

        .btn-orange {
            background: var(--accent-orange);
            color: #fff;
        }

        .btn-orange:hover {
            background: #c94e20;
            color: #fff;
        }

        /* ============ BADGES ============ */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 12px;
            border-radius: var(--radius-badge);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.3px;
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-orange {
            background: rgba(224, 90, 42, 0.16);
            color: var(--accent-orange);
            border: 1px solid rgba(224, 90, 42, 0.4);
        }

        .badge-teal {
            background: rgba(47, 158, 122, 0.16);
            color: var(--accent-teal);
            border: 1px solid rgba(47, 158, 122, 0.4);
        }

        .badge-lime {
            background: rgba(200, 232, 60, 0.14);
            color: var(--accent-lime);
            border: 1px solid rgba(200, 232, 60, 0.35);
        }

        .badge-neutral {
            background: var(--bg-elevated);
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }

        /* ============ ARTICLE LIST ============ */
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .article-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 18px 22px;
            display: flex;
            gap: 18px;
            align-items: flex-start;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .article-item:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card);
        }

        .article-thumb {
            width: 72px;
            height: 72px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-elevated);
        }

        .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-body {
            flex: 1;
            min-width: 0;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 6px;
            flex-wrap: wrap;
        }

        .article-time {
            color: var(--text-muted);
            font-size: 12px;
            font-family: var(--font-mono);
            letter-spacing: 0.3px;
        }

        .article-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.45;
        }

        .article-summary {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ============ TREND SECTION ============ */
        .trend-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .trend-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            transition: border-color var(--transition);
        }

        .trend-card:hover {
            border-color: var(--border-glow);
        }

        .trend-card h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .trend-bar-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .trend-bar-label {
            flex-shrink: 0;
            width: 72px;
            color: var(--text-secondary);
            font-size: 13px;
        }

        .trend-bar-track {
            flex: 1;
            height: 8px;
            background: var(--bg-elevated);
            border-radius: 999px;
            overflow: hidden;
        }

        .trend-bar-fill {
            height: 100%;
            border-radius: 999px;
            background: var(--accent-lime);
            transition: width 0.6s ease;
        }

        .trend-bar-fill.teal {
            background: var(--accent-teal);
        }

        .trend-bar-fill.orange {
            background: var(--accent-orange);
        }

        .trend-bar-value {
            flex-shrink: 0;
            width: 48px;
            text-align: right;
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--text-primary);
            font-weight: 600;
        }

        /* ============ TAG CLOUD ============ */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: var(--radius-badge);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            transition: border-color var(--transition), color var(--transition), background var(--transition);
            cursor: default;
        }

        .tag-pill:hover {
            border-color: var(--accent-lime);
            color: var(--accent-lime);
            background: var(--bg-elevated);
        }

        /* ============ CTA SECTION ============ */
        .cta-section {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 36px 32px;
            box-shadow: var(--shadow-card);
        }

        .cta-inner {
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .cta-text {
            flex: 1;
            min-width: 260px;
        }

        .cta-text h2 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .cta-text p {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 0;
        }

        .cta-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
            flex-shrink: 0;
        }

        .cta-form input[type="email"] {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-btn);
            padding: 10px 16px;
            color: var(--text-primary);
            font-size: 14px;
            min-width: 240px;
            transition: border-color var(--transition);
        }

        .cta-form input[type="email"]::placeholder {
            color: var(--text-muted);
        }

        .cta-form input[type="email"]:focus {
            border-color: var(--accent-lime);
            outline: none;
        }

        /* ============ MORE LINK ============ */
        .more-link-section {
            padding: 24px 0 40px;
            text-align: center;
        }

        .more-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 500;
            padding: 10px 20px;
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-btn);
            transition: border-color var(--transition), color var(--transition), background var(--transition);
        }

        .more-link:hover {
            border-color: var(--accent-lime);
            color: var(--accent-lime);
            background: var(--bg-elevated);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: #080C0B;
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col .footer-brand {
            font-family: var(--font-condensed);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .footer-col .footer-brand .highlight {
            color: var(--accent-lime);
        }

        .footer-col p {
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 13px;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent-lime);
        }

        .footer-email {
            color: var(--text-muted);
            font-size: 12px;
            font-family: var(--font-mono);
            word-break: break-all;
        }

        .footer-subscribe {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }

        .footer-subscribe input {
            flex: 1;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 8px 12px;
            color: var(--text-primary);
            font-size: 13px;
            min-width: 0;
        }

        .footer-subscribe input::placeholder {
            color: var(--text-muted);
        }

        .footer-subscribe button {
            background: var(--accent-lime);
            color: var(--on-accent);
            border: none;
            border-radius: var(--radius-btn);
            padding: 8px 16px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            white-space: nowrap;
            transition: background var(--transition);
        }

        .footer-subscribe button:hover {
            background: #b8d630;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom .copyright {
            color: var(--text-muted);
            font-size: 13px;
        }

        .footer-bottom .disclaimer {
            color: var(--text-muted);
            font-size: 12px;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .trend-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .masthead {
                flex-wrap: wrap;
                gap: 12px;
            }

            .masthead-brand .brand-text {
                font-size: 26px;
            }

            .masthead-meta {
                gap: 10px;
                flex-wrap: wrap;
            }

            .masthead-meta .stat-badge {
                font-size: 12px;
                padding: 5px 10px;
            }

            .masthead-date {
                font-size: 12px;
            }

            .nav-toggle {
                display: block;
            }

            .site-nav {
                display: none;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 0 0 14px;
            }

            .site-nav.open {
                display: flex;
            }

            .site-nav a {
                padding: 10px 0;
                border-bottom: 1px solid var(--border-subtle);
                width: 100%;
                font-size: 15px;
                border-bottom: 1px solid var(--border-subtle);
            }

            .site-nav a.active {
                border-bottom-color: var(--accent-lime);
            }

            .page-heading h1 {
                font-size: 24px;
            }

            .featured-overlay h2 {
                font-size: 18px;
            }

            .featured-body {
                padding: 16px 18px 18px;
            }

            .article-item {
                flex-direction: column;
                gap: 12px;
                padding: 16px 18px;
            }

            .article-thumb {
                width: 100%;
                height: 140px;
                border-radius: 8px;
            }

            .article-title {
                font-size: 15px;
            }

            .cta-section {
                padding: 24px 20px;
            }

            .cta-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 18px;
            }

            .cta-form {
                width: 100%;
            }

            .cta-form input[type="email"] {
                flex: 1;
                min-width: 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }

            .trend-card {
                padding: 18px;
            }

            .trend-bar-label {
                width: 56px;
                font-size: 12px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }

            .masthead-brand .brand-text {
                font-size: 22px;
            }

            .masthead-brand .brand-icon {
                width: 32px;
                height: 32px;
                font-size: 15px;
            }

            .masthead-meta .masthead-date {
                display: none;
            }

            .page-heading h1 {
                font-size: 21px;
            }

            .page-heading .page-desc {
                font-size: 14px;
            }

            .section-title {
                font-size: 18px;
            }

            .featured-overlay {
                padding: 16px;
            }

            .featured-overlay h2 {
                font-size: 16px;
            }

            .featured-overlay .featured-excerpt {
                font-size: 13px;
            }

            .article-time {
                font-size: 11px;
            }

            .badge {
                font-size: 11px;
                padding: 3px 10px;
            }

            .tag-pill {
                font-size: 12px;
                padding: 6px 12px;
            }

            .cta-text h2 {
                font-size: 18px;
            }

            .cta-form {
                flex-direction: column;
                width: 100%;
            }

            .cta-form input[type="email"] {
                width: 100%;
            }

            .cta-form .btn {
                width: 100%;
                justify-content: center;
            }

            .trend-bar-label {
                width: 48px;
                font-size: 11px;
            }

            .trend-bar-value {
                width: 36px;
                font-size: 11px;
            }
        }
