/* roulang page: index */
:root {
            --primary: #0B8F3B;
            --primary-dark: #087A30;
            --primary-deeper: #066B28;
            --accent: #F2C230;
            --accent-hover: #E0B520;
            --danger: #E53935;
            --bg: #F7F8FA;
            --bg-card: #FFFFFF;
            --dark: #111820;
            --dark-soft: #1A2533;
            --text-primary: #1F2733;
            --text-secondary: #5A6572;
            --text-on-dark: #E6EAF0;
            --border: #E1E5EA;
            --radius-card: 12px;
            --radius-btn: 8px;
            --shadow-light: 0 1px 3px rgba(17, 24, 32, 0.06), 0 0 0 1px rgba(17, 24, 32, 0.04);
            --shadow-hover: 0 8px 24px rgba(17, 24, 32, 0.10);
            --font-number: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
            --section-gap-desktop: 88px;
            --section-gap-mobile: 52px;
            --transition-base: 180ms ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans SC', 'Noto Sans SC', 'Microsoft YaHei', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-base);
        }
        a:hover {
            color: var(--primary-dark);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(11, 143, 59, 0.4);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-gap {
            padding-top: var(--section-gap-desktop);
            padding-bottom: var(--section-gap-desktop);
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            color: var(--text-primary);
            line-height: 1.3;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-top: 0;
        }
        h1 {
            font-size: clamp(2rem, 4.5vw, 2.9rem);
            font-weight: 800;
        }
        h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            margin-bottom: 1rem;
        }
        h3 {
            font-size: clamp(1.15rem, 2vw, 1.4rem);
            font-weight: 600;
        }

        .section-label {
            display: inline-block;
            background: rgba(11, 143, 59, 0.08);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
            text-transform: uppercase;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 1.02rem;
            max-width: 720px;
            margin-bottom: 2rem;
            line-height: 1.85;
        }

        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: all var(--transition-base);
            padding: 10px 22px;
            font-size: 0.95rem;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.28);
        }
        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            background: transparent;
        }
        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.22);
        }
        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
            color: #111820;
            font-weight: 700;
        }
        .btn-accent:hover {
            background-color: var(--accent-hover);
            border-color: var(--accent-hover);
            color: #111820;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(242, 194, 48, 0.35);
        }
        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
            background: transparent;
        }
        .btn-outline-light:hover {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
        }
        .btn-lg {
            padding: 13px 28px;
            font-size: 1rem;
        }
        .btn-sm {
            padding: 7px 16px;
            font-size: 0.85rem;
        }

        .card {
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            background: var(--bg-card);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .card-img-top {
            border-radius: var(--radius-card) var(--radius-card) 0 0;
            object-fit: cover;
            aspect-ratio: 16/9;
            width: 100%;
            background: #EAECEF;
        }

        .badge-tag {
            background: rgba(11, 143, 59, 0.1);
            color: var(--primary);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }
        .badge-hot {
            background: rgba(229, 57, 53, 0.1);
            color: var(--danger);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }
        .badge-warning {
            background: rgba(242, 194, 48, 0.2);
            color: #8A6D00;
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }

        .score-number {
            font-family: var(--font-number);
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        /* Header Navigation */
        .site-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            min-height: 64px;
            display: flex;
            align-items: center;
            box-shadow: 0 1px 6px rgba(17, 24, 32, 0.04);
        }
        .site-header .navbar {
            padding: 0;
            min-height: 64px;
            width: 100%;
        }
        .site-header .navbar-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 1.22rem;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }
        .site-header .navbar-brand:hover {
            color: var(--primary);
        }
        .brand-icon {
            width: 32px;
            height: 32px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .navbar-nav {
            gap: 4px;
        }
        .navbar-nav .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.93rem;
            padding: 8px 13px;
            border-radius: 6px;
            transition: all var(--transition-base);
            white-space: nowrap;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary);
            background: rgba(11, 143, 59, 0.06);
        }
        .navbar-nav .nav-link.active {
            color: var(--primary);
            background: rgba(11, 143, 59, 0.1);
            font-weight: 700;
            border-bottom: 3px solid var(--primary);
            border-radius: 6px 6px 0 0;
        }
        .search-box-header {
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 14px;
            gap: 8px;
            min-width: 220px;
            transition: border-color var(--transition-base);
        }
        .search-box-header:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(11, 143, 59, 0.1);
        }
        .search-box-header input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.88rem;
            color: var(--text-primary);
            width: 100%;
            font-family: inherit;
        }
        .search-box-header input::placeholder {
            color: var(--text-secondary);
        }
        .search-box-header .fa-search {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .header-cta {
            margin-left: 8px;
        }
        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 4px 10px;
            font-size: 1.2rem;
            color: var(--text-primary);
            background: #fff;
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(11, 143, 59, 0.15);
        }

        @media (max-width: 1199px) {
            .search-box-header {
                min-width: 170px;
            }
        }
        @media (max-width: 991px) {
            .site-header .navbar-collapse {
                background: #fff;
                padding: 16px 20px;
                border-radius: 10px;
                box-shadow: var(--shadow-hover);
                margin-top: 10px;
                border: 1px solid var(--border);
            }
            .navbar-nav {
                gap: 2px;
            }
            .header-cta {
                margin-left: 0;
                margin-top: 10px;
            }
            .search-box-header {
                min-width: 100%;
                margin-top: 10px;
            }
        }

        /* Hero - Tool Landing */
        .hero-tool {
            background: var(--dark);
            color: var(--text-on-dark);
            position: relative;
            overflow: hidden;
            min-height: 75vh;
            display: flex;
            align-items: center;
            padding: 56px 0 72px;
        }
        .hero-tool::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
            z-index: 0;
        }
        .hero-tool::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(17, 24, 32, 0.95) 0%, rgba(11, 143, 59, 0.25) 60%, rgba(17, 24, 32, 0.85) 100%);
            z-index: 1;
        }
        .hero-tool .container {
            position: relative;
            z-index: 2;
        }
        .hero-pain {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.05rem;
            background: rgba(242, 194, 48, 0.15);
            display: inline-block;
            padding: 6px 18px;
            border-radius: 24px;
            margin-bottom: 18px;
            letter-spacing: 0.04em;
        }
        .hero-tool h1 {
            color: #fff;
            margin-bottom: 18px;
        }
        .hero-tool .hero-desc {
            color: var(--text-on-dark);
            font-size: 1.1rem;
            max-width: 560px;
            margin-bottom: 28px;
            line-height: 1.85;
        }
        .hero-metrics {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-top: 12px;
            margin-bottom: 24px;
        }
        .hero-metric-item {
            display: flex;
            flex-direction: column;
        }
        .hero-metric-value {
            font-family: var(--font-number);
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }
        .hero-metric-label {
            font-size: 0.82rem;
            color: var(--text-on-dark);
            opacity: 0.75;
        }
        .hero-score-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            color: var(--text-primary);
        }
        .hero-score-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .hero-score-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            gap: 8px;
            flex-wrap: wrap;
        }
        .hero-score-row:last-child {
            border-bottom: none;
        }
        .hero-score-league {
            font-size: 0.78rem;
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .hero-score-teams {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 0.92rem;
        }
        .hero-score-num {
            font-family: var(--font-number);
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--text-primary);
            background: var(--bg);
            padding: 2px 10px;
            border-radius: 6px;
        }
        .hero-score-status {
            font-size: 0.78rem;
            font-weight: 600;
        }
        .status-live {
            color: var(--danger);
        }
        .status-ht {
            color: var(--text-secondary);
        }
        .status-ft {
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .hero-tool {
                padding: 40px 0 52px;
                min-height: auto;
            }
            .hero-score-card {
                margin-top: 30px;
            }
            .hero-metrics {
                gap: 16px;
            }
        }

        /* Channel / Feature Section */
        .channel-section {
            background: #fff;
        }
        .channel-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 10px;
        }
        .channel-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 26px 24px;
            box-shadow: var(--shadow-light);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }
        .channel-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: rgba(11, 143, 59, 0.3);
        }
        .channel-icon {
            width: 46px;
            height: 46px;
            background: rgba(11, 143, 59, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 16px;
        }
        .channel-card h3 {
            font-size: 1.08rem;
            margin-bottom: 8px;
        }
        .channel-card p {
            color: var(--text-secondary);
            font-size: 0.92rem;
            margin-bottom: 14px;
            line-height: 1.75;
        }
        .channel-link {
            font-weight: 600;
            font-size: 0.88rem;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        @media (max-width: 992px) {
            .channel-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
        }
        @media (max-width: 576px) {
            .channel-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }

        /* Data Bar */
        .data-bar-section {
            background: var(--dark);
            color: var(--text-on-dark);
            padding: 48px 0;
        }
        .data-bar-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }
        .data-bar-item {
            padding: 12px;
        }
        .data-bar-value {
            font-family: var(--font-number);
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }
        .data-bar-label {
            color: var(--text-on-dark);
            opacity: 0.75;
            font-size: 0.9rem;
            margin-top: 6px;
        }
        @media (max-width: 768px) {
            .data-bar-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .data-bar-value {
                font-size: 1.8rem;
            }
        }

        /* Pricing / Package */
        .pricing-section {
            background: var(--bg);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 20px;
        }
        .pricing-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 32px 28px;
            box-shadow: var(--shadow-light);
            transition: all var(--transition-base);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .pricing-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }
        .pricing-card.featured {
            border: 2px solid var(--primary);
            background: linear-gradient(180deg, #FFFFFF 0%, #F0FAF2 100%);
        }
        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 4px 16px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .pricing-name {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            text-align: center;
        }
        .pricing-price {
            text-align: center;
            margin-bottom: 16px;
        }
        .pricing-price .currency {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-secondary);
        }
        .pricing-price .amount {
            font-family: var(--font-number);
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text-primary);
        }
        .pricing-price .period {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 22px 0;
            flex-grow: 1;
        }
        .pricing-features li {
            padding: 7px 0;
            color: var(--text-secondary);
            font-size: 0.92rem;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.6;
        }
        .pricing-features li i {
            color: var(--primary);
            margin-top: 4px;
            flex-shrink: 0;
        }
        .pricing-features li .fa-xmark {
            color: #B0B6BD;
        }

        @media (max-width: 992px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-card.featured {
                grid-column: span 2;
            }
        }
        @media (max-width: 576px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .pricing-card.featured {
                grid-column: span 1;
            }
        }

        /* Data Analysis */
        .analysis-section {
            background: #fff;
        }
        .analysis-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .analysis-kpi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 18px;
        }
        .analysis-kpi-item {
            background: var(--bg);
            border-radius: 10px;
            padding: 18px;
            border: 1px solid var(--border);
        }
        .analysis-kpi-value {
            font-family: var(--font-number);
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--primary);
        }
        .analysis-kpi-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }
        .analysis-chart-placeholder {
            background: var(--dark);
            border-radius: var(--radius-card);
            padding: 28px;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--text-on-dark);
            text-align: center;
        }
        .analysis-chart-placeholder h4 {
            color: #fff;
            margin-bottom: 10px;
        }
        .analysis-chart-placeholder p {
            color: var(--text-on-dark);
            opacity: 0.75;
            max-width: 320px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .analysis-wrapper {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* Lead Form */
        .lead-section {
            background: var(--dark);
            color: var(--text-on-dark);
        }
        .lead-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 44px;
            align-items: center;
        }
        .lead-form-card {
            background: #fff;
            border-radius: var(--radius-card);
            padding: 32px 28px;
            color: var(--text-primary);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
        }
        .lead-form-card input,
        .lead-form-card select {
            border-radius: 8px;
            border: 1px solid var(--border);
            padding: 10px 14px;
            font-size: 0.92rem;
            width: 100%;
            font-family: inherit;
            transition: border-color var(--transition-base);
            background: #fff;
        }
        .lead-form-card input:focus,
        .lead-form-card select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(11, 143, 59, 0.1);
            outline: none;
        }
        .lead-form-card label {
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 6px;
            display: block;
        }
        .lead-info h2 {
            color: #fff;
            margin-bottom: 16px;
        }
        .lead-info p {
            color: var(--text-on-dark);
            opacity: 0.8;
            line-height: 1.85;
        }
        .lead-check-list {
            list-style: none;
            padding: 0;
            margin: 18px 0 0;
        }
        .lead-check-list li {
            padding: 8px 0;
            color: var(--text-on-dark);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        .lead-check-list li i {
            color: var(--accent);
        }
        @media (max-width: 768px) {
            .lead-wrapper {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* News */
        .news-section {
            background: var(--bg);
        }
        .news-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 30px;
        }
        .news-main-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .news-item-main {
            display: flex;
            gap: 16px;
            background: #fff;
            border-radius: 10px;
            padding: 18px;
            border: 1px solid var(--border);
            transition: all var(--transition-base);
            align-items: center;
        }
        .news-item-main:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .news-date {
            font-family: var(--font-number);
            font-size: 0.8rem;
            color: var(--text-secondary);
            background: var(--bg);
            padding: 6px 12px;
            border-radius: 6px;
            text-align: center;
            min-width: 70px;
            flex-shrink: 0;
            font-weight: 600;
        }
        .news-item-main h4 {
            font-size: 0.98rem;
            margin-bottom: 4px;
            font-weight: 600;
        }
        .news-item-main p {
            color: var(--text-secondary);
            font-size: 0.87rem;
            margin-bottom: 8px;
            line-height: 1.6;
        }
        .news-tag {
            font-size: 0.75rem;
            color: var(--primary);
            font-weight: 600;
        }
        .news-side-card {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            padding: 24px;
            box-shadow: var(--shadow-light);
            height: fit-content;
        }
        .news-side-card h3 {
            font-size: 1.05rem;
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(11, 143, 59, 0.15);
        }
        .news-side-item {
            display: flex;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            align-items: center;
        }
        .news-side-item:last-child {
            border-bottom: none;
        }
        .news-side-item img {
            width: 72px;
            height: 48px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .news-side-item h5 {
            font-size: 0.88rem;
            font-weight: 600;
            margin-bottom: 2px;
            line-height: 1.4;
        }
        .news-side-item .news-date-sm {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* Deep Content */
        .deep-content {
            background: #fff;
        }
        .deep-article {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 30px 32px;
            box-shadow: var(--shadow-light);
            margin-bottom: 24px;
        }
        .deep-article h3 {
            margin-bottom: 14px;
            font-size: 1.2rem;
        }
        .deep-article p {
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 14px;
            font-size: 0.96rem;
        }
        .deep-article .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
            border-radius: 8px;
            border: 1px solid var(--border);
        }
        .deep-article table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.88rem;
            min-width: 500px;
        }
        .deep-article table th {
            background: var(--dark);
            color: #fff;
            font-weight: 600;
            padding: 10px 14px;
            text-align: left;
            white-space: nowrap;
        }
        .deep-article table td {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
            color: var(--text-primary);
        }
        .deep-article table tr:nth-child(even) td {
            background: var(--bg);
        }
        .green-arrow {
            color: var(--primary);
            font-weight: 700;
        }
        .red-arrow {
            color: var(--danger);
            font-weight: 700;
        }

        /* Brand Intro */
        .brand-intro {
            background: var(--bg);
        }
        .brand-intro-card {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            padding: 36px 32px;
            box-shadow: var(--shadow-light);
            display: flex;
            gap: 30px;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        .brand-intro-text {
            flex: 2;
            min-width: 280px;
        }
        .brand-intro-text h2 {
            margin-bottom: 14px;
        }
        .brand-intro-text p {
            color: var(--text-secondary);
            line-height: 1.9;
            font-size: 0.96rem;
            margin-bottom: 12px;
        }
        .brand-intro-side {
            flex: 1;
            min-width: 220px;
            background: var(--dark);
            border-radius: 10px;
            padding: 24px;
            color: var(--text-on-dark);
            text-align: center;
        }
        .brand-intro-side .big-score {
            font-family: var(--font-number);
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--accent);
        }
        .brand-intro-side p {
            color: var(--text-on-dark);
            opacity: 0.75;
            font-size: 0.88rem;
            margin-top: 8px;
        }

        /* FAQ */
        .faq-section {
            background: #fff;
        }
        .faq-list .accordion-item {
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow-light);
        }
        .faq-list .accordion-button {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            background: #fff;
            padding: 18px 22px;
            border-radius: 10px;
        }
        .faq-list .accordion-button:not(.collapsed) {
            background: rgba(11, 143, 59, 0.05);
            color: var(--primary);
            box-shadow: none;
            border-bottom: 1px solid var(--border);
        }
        .faq-list .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(11, 143, 59, 0.15);
            border: none;
        }
        .faq-list .accordion-body {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.8;
            padding: 18px 22px;
        }

        /* Limited Time */
        .limited-section {
            background: var(--dark);
            color: var(--text-on-dark);
            padding: 40px 0;
        }
        .limited-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .limited-text {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .limited-text .fa-clock {
            color: var(--accent);
            font-size: 1.5rem;
        }
        .limited-text h3 {
            color: #fff;
            margin-bottom: 2px;
            font-size: 1.15rem;
        }
        .limited-text p {
            color: var(--text-on-dark);
            opacity: 0.75;
            margin-bottom: 0;
            font-size: 0.88rem;
        }
        .limited-countdown {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .countdown-block {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 8px 14px;
            text-align: center;
            min-width: 58px;
        }
        .countdown-number {
            font-family: var(--font-number);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }
        .countdown-label {
            font-size: 0.72rem;
            color: var(--text-on-dark);
            opacity: 0.7;
        }

        /* Privacy */
        .privacy-brief {
            background: var(--bg);
            padding: 40px 0;
        }
        .privacy-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 26px 28px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            flex-wrap: wrap;
        }
        .privacy-icon {
            width: 44px;
            height: 44px;
            background: rgba(11, 143, 59, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .privacy-card h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
        }
        .privacy-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: var(--text-on-dark);
            padding: 56px 0 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-brand-name {
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }
        .footer-brand-desc {
            color: var(--text-on-dark);
            opacity: 0.7;
            font-size: 0.88rem;
            line-height: 1.8;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .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-on-dark);
            opacity: 0.7;
            font-size: 0.88rem;
            transition: all var(--transition-base);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
            opacity: 1;
        }
        .footer-subscribe input {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            padding: 10px 14px;
            font-size: 0.88rem;
            width: 100%;
            margin-bottom: 10px;
            font-family: inherit;
            transition: border-color var(--transition-base);
        }
        .footer-subscribe input::placeholder {
            color: rgba(230, 234, 240, 0.5);
        }
        .footer-subscribe input:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(242, 194, 48, 0.15);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--text-on-dark);
            opacity: 0.65;
        }
        .footer-bottom a {
            color: var(--text-on-dark);
            opacity: 0.8;
        }
        .footer-bottom a:hover {
            color: var(--accent);
            opacity: 1;
        }
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }
        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Responsive Section Gap */
        @media (max-width: 768px) {
            .section-gap {
                padding-top: var(--section-gap-mobile);
                padding-bottom: var(--section-gap-mobile);
            }
            .deep-article {
                padding: 22px 20px;
            }
            .brand-intro-card {
                padding: 26px 20px;
            }
            .pricing-card {
                padding: 26px 20px;
            }
            .lead-form-card {
                padding: 26px 20px;
            }
            .news-item-main {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .news-date {
                display: inline-block;
            }
        }

        @media (max-width: 520px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero-tool {
                padding: 28px 0 40px;
            }
            .hero-tool .hero-desc {
                font-size: 0.95rem;
            }
            .channel-grid {
                grid-template-columns: 1fr;
            }
            .analysis-kpi-grid {
                grid-template-columns: 1fr;
            }
            .limited-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            .limited-countdown {
                width: 100%;
                justify-content: space-between;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #0B8F3B;
            --primary-dark: #087A30;
            --primary-deeper: #066B28;
            --accent: #F2C230;
            --accent-hover: #E0B520;
            --danger: #E53935;
            --bg: #F7F8FA;
            --bg-card: #FFFFFF;
            --dark: #111820;
            --dark-soft: #1A2533;
            --text-primary: #1F2733;
            --text-secondary: #5A6572;
            --text-on-dark: #E6EAF0;
            --border: #E1E5EA;
            --radius-card: 12px;
            --radius-btn: 8px;
            --shadow-light: 0 1px 3px rgba(17, 24, 32, 0.06), 0 0 0 1px rgba(17, 24, 32, 0.04);
            --shadow-hover: 0 8px 24px rgba(17, 24, 32, 0.10);
            --font-number: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
            --section-gap-desktop: 88px;
            --section-gap-mobile: 52px;
            --transition-base: 180ms ease;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans SC', 'Noto Sans SC', 'Microsoft YaHei', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-base);
        }
        a:hover {
            color: var(--primary-dark);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(11, 143, 59, 0.4);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-gap {
            padding-top: var(--section-gap-desktop);
            padding-bottom: var(--section-gap-desktop);
        }
        .section-label {
            display: inline-block;
            background: rgba(11, 143, 59, 0.08);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
            text-transform: uppercase;
        }
        .section-desc {
            color: var(--text-secondary);
            font-size: 1.02rem;
            max-width: 720px;
            margin-bottom: 2rem;
            line-height: 1.85;
        }
        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: all var(--transition-base);
            padding: 10px 22px;
            font-size: 0.95rem;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.28);
        }
        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            background: transparent;
        }
        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.22);
        }
        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
            color: #111820;
            font-weight: 700;
        }
        .btn-accent:hover {
            background-color: var(--accent-hover);
            border-color: var(--accent-hover);
            color: #111820;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(242, 194, 48, 0.35);
        }
        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
            background: transparent;
        }
        .btn-outline-light:hover {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
        }
        .btn-lg {
            padding: 13px 28px;
            font-size: 1rem;
        }
        .btn-sm {
            padding: 7px 16px;
            font-size: 0.85rem;
        }
        .card {
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            background: var(--bg-card);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .card-img-top {
            border-radius: var(--radius-card) var(--radius-card) 0 0;
            object-fit: cover;
            aspect-ratio: 16/9;
            width: 100%;
            background: #EAECEF;
        }
        .badge-tag {
            background: rgba(11, 143, 59, 0.1);
            color: var(--primary);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }
        .badge-hot {
            background: rgba(229, 57, 53, 0.1);
            color: var(--danger);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }
        .badge-warning {
            background: rgba(242, 194, 48, 0.2);
            color: #8A6D00;
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }

        /* Header / Nav */
        .site-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 4px 0;
        }
        .site-header .navbar {
            min-height: 64px;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--dark);
        }
        .navbar-brand:hover {
            color: var(--primary);
        }
        .brand-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 0.95rem;
            flex-shrink: 0;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            color: var(--text-secondary);
            padding: 8px 16px;
            font-size: 0.95rem;
            border-radius: 6px;
            transition: all var(--transition-base);
            position: relative;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        .navbar-nav .nav-link.active {
            color: var(--primary);
            background: rgba(11, 143, 59, 0.07);
        }
        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        .search-box-header {
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 12px;
            min-width: 190px;
        }
        .search-box-header i {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-right: 8px;
        }
        .search-box-header input {
            border: none;
            background: transparent;
            font-size: 0.88rem;
            color: var(--text-primary);
            width: 100%;
            outline: none;
        }
        .search-box-header input::placeholder {
            color: #A0A8B4;
        }
        .header-cta {
            margin-left: 10px;
            font-size: 0.88rem;
            padding: 8px 18px;
            white-space: nowrap;
        }
        .navbar-toggler {
            border: 1px solid var(--border);
            font-size: 1.1rem;
            color: var(--dark);
        }

        /* Category Hero */
        .category-hero {
            background: var(--dark);
            color: var(--text-on-dark);
            padding: 64px 0 72px;
            position: relative;
            overflow: hidden;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
        }
        .category-hero .hero-backdrop {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 45%;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            z-index: 0;
        }
        .category-hero .container {
            position: relative;
            z-index: 1;
        }
        .category-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.25;
            margin-bottom: 18px;
            color: #fff;
        }
        .category-hero h1 .highlight {
            color: var(--accent);
        }
        .category-hero .lead {
            font-size: 1.1rem;
            color: var(--text-on-dark);
            opacity: 0.85;
            max-width: 620px;
            margin-bottom: 28px;
            line-height: 1.8;
        }
        .category-hero .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 28px;
        }
        .category-hero .hero-stat {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.92rem;
            color: var(--text-on-dark);
            opacity: 0.9;
        }
        .category-hero .hero-stat i {
            color: var(--accent);
            font-size: 1rem;
        }
        .category-hero .btn-accent {
            box-shadow: 0 6px 20px rgba(242, 194, 48, 0.35);
        }

        /* Score board widget in hero */
        .score-hero-widget {
            background: #1A2533;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-card);
            padding: 16px 18px;
            max-width: 420px;
        }
        .score-hero-widget .widget-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 0.82rem;
            color: var(--text-on-dark);
            opacity: 0.7;
        }
        .score-row {
            display: flex;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            gap: 10px;
        }
        .score-row:last-child {
            border-bottom: none;
        }
        .score-league {
            font-size: 0.7rem;
            color: var(--accent);
            font-weight: 700;
            white-space: nowrap;
            min-width: 42px;
        }
        .score-team {
            font-size: 0.88rem;
            color: var(--text-on-dark);
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .score-team.away {
            text-align: right;
        }
        .score-number {
            font-family: var(--font-number);
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            background: rgba(255,255,255,0.1);
            padding: 2px 10px;
            border-radius: 6px;
            text-align: center;
            min-width: 52px;
            letter-spacing: 0.06em;
        }
        .score-status {
            font-size: 0.72rem;
            color: #A0A8B4;
            text-align: center;
            min-width: 34px;
        }
        .score-status.live {
            color: var(--danger);
            font-weight: 700;
        }
        .score-status.ft {
            color: var(--primary);
            font-weight: 700;
        }

        /* Filter chips */
        .filter-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }
        .filter-chip {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: 24px;
            font-size: 0.88rem;
            font-weight: 600;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
        }
        .filter-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(11, 143, 59, 0.05);
        }
        .filter-chip.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .filter-chip i {
            margin-right: 6px;
            font-size: 0.8rem;
        }

        /* Match cards */
        .match-card {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            padding: 22px 24px;
            box-shadow: var(--shadow-light);
            transition: all var(--transition-base);
            margin-bottom: 16px;
        }
        .match-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .match-card .match-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .match-card .match-meta .badge-tag {
            font-size: 0.7rem;
            padding: 3px 10px;
        }
        .match-card .match-main {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .match-card .match-teams {
            flex: 1;
            min-width: 200px;
        }
        .match-card .match-teams .team-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        .match-card .match-teams .team-line .team-name {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 160px;
        }
        .match-card .match-score-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: var(--bg);
            border-radius: 10px;
            padding: 10px 16px;
            min-width: 72px;
        }
        .match-card .match-score-box .score-big {
            font-family: var(--font-number);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: 0.08em;
            line-height: 1.2;
        }
        .match-card .match-score-box .score-sub {
            font-size: 0.7rem;
            color: var(--text-secondary);
            margin-top: 2px;
        }
        .match-card .match-details {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 0.78rem;
            color: var(--text-secondary);
            min-width: 120px;
            align-items: flex-end;
        }
        .match-card .match-details span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Schedule table */
        .schedule-table {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }
        .schedule-table .table {
            margin-bottom: 0;
        }
        .schedule-table .table thead th {
            background: var(--dark);
            color: #fff;
            font-size: 0.82rem;
            font-weight: 700;
            padding: 14px 16px;
            white-space: nowrap;
            border-bottom: none;
        }
        .schedule-table .table tbody td {
            padding: 12px 16px;
            font-size: 0.88rem;
            vertical-align: middle;
            border-color: var(--border);
        }
        .schedule-table .table tbody tr:nth-child(even) {
            background: rgba(247, 248, 250, 0.6);
        }
        .schedule-table .table tbody tr:hover {
            background: rgba(11, 143, 59, 0.04);
        }
        .schedule-table .score-td {
            font-family: var(--font-number);
            font-weight: 700;
            color: var(--dark);
            font-size: 0.95rem;
        }
        .schedule-table .change-up {
            color: var(--primary);
            font-weight: 600;
        }
        .schedule-table .change-down {
            color: var(--danger);
            font-weight: 600;
        }
        .table-responsive {
            border-radius: var(--radius-card);
        }

        /* Category intro section */
        .category-intro {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            padding: 36px 40px;
            box-shadow: var(--shadow-light);
        }
        .category-intro h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 18px;
        }
        .category-intro p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.95;
            margin-bottom: 14px;
        }

        /* FAQ */
        .faq-section .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            margin-bottom: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow-light);
        }
        .faq-section .accordion-button {
            font-weight: 600;
            font-size: 0.98rem;
            color: var(--dark);
            padding: 18px 24px;
            background: #fff;
        }
        .faq-section .accordion-button:not(.collapsed) {
            background: rgba(11, 143, 59, 0.05);
            color: var(--primary);
            box-shadow: none;
        }
        .faq-section .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        .faq-section .accordion-body {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.85;
            padding: 16px 24px 20px;
        }

        /* CTA section */
        .cta-section {
            background: var(--dark);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            color: var(--text-on-dark);
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(11, 143, 59, 0.25);
            z-index: 0;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(242, 194, 48, 0.15);
            z-index: 0;
        }
        .cta-section .container,
        .cta-section .row {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            color: #fff;
            font-weight: 800;
            font-size: 1.8rem;
            margin-bottom: 14px;
        }
        .cta-section p {
            color: var(--text-on-dark);
            opacity: 0.8;
            font-size: 0.98rem;
            margin-bottom: 24px;
            max-width: 560px;
        }

        /* Pagination */
        .pagination-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .pagination-wrap .page-link {
            border-radius: 6px;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.88rem;
            padding: 8px 16px;
            transition: all var(--transition-base);
            background: #fff;
        }
        .pagination-wrap .page-link:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(11, 143, 59, 0.05);
        }
        .pagination-wrap .page-link.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .pagination-wrap .page-link.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: var(--text-on-dark);
            padding: 56px 0 28px;
            border-top: 4px solid var(--primary);
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
        }
        .footer-brand-desc {
            color: var(--text-on-dark);
            opacity: 0.7;
            font-size: 0.88rem;
            line-height: 1.8;
            max-width: 320px;
        }
        .site-footer h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 8px;
        }
        .site-footer ul li a {
            color: var(--text-on-dark);
            opacity: 0.7;
            font-size: 0.88rem;
            transition: all var(--transition-base);
        }
        .site-footer ul li a:hover {
            color: var(--accent);
            opacity: 1;
        }
        .footer-subscribe {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-subscribe input {
            background: #1A2533;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 6px;
            padding: 10px 14px;
            color: #fff;
            font-size: 0.88rem;
            outline: none;
        }
        .footer-subscribe input:focus {
            border-color: var(--primary);
        }
        .footer-subscribe input::placeholder {
            color: rgba(255,255,255,0.4);
        }
        .site-footer .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.78rem;
            color: var(--text-on-dark);
            opacity: 0.65;
        }
        .site-footer .footer-bottom a {
            color: var(--text-on-dark);
            font-size: 0.78rem;
        }
        .site-footer .footer-bottom a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .category-hero h1 {
                font-size: 2.1rem;
            }
            .search-box-header {
                min-width: 150px;
            }
        }
        @media (max-width: 768px) {
            :root {
                --section-gap-desktop: 52px;
                --section-gap-mobile: 40px;
            }
            .section-gap {
                padding-top: var(--section-gap-mobile);
                padding-bottom: var(--section-gap-mobile);
            }
            .category-hero {
                padding: 48px 0 56px;
            }
            .category-hero h1 {
                font-size: 1.7rem;
            }
            .category-hero .lead {
                font-size: 0.98rem;
            }
            .category-hero .hero-backdrop {
                width: 100%;
                opacity: 0.1;
            }
            .score-hero-widget {
                max-width: 100%;
            }
            .match-card .match-main {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }
            .match-card .match-details {
                align-items: flex-start;
            }
            .match-card .match-score-box {
                flex-direction: row;
                gap: 8px;
                align-items: center;
            }
            .category-intro {
                padding: 24px 20px;
            }
            .cta-section {
                padding: 32px 24px;
            }
            .cta-section h2 {
                font-size: 1.4rem;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .site-footer {
                padding: 40px 0 20px;
            }
            .navbar .search-box-header {
                display: none;
            }
            .header-cta {
                margin-left: 0;
                margin-top: 8px;
            }
            .navbar-collapse {
                padding: 12px 0;
            }
        }
        @media (max-width: 520px) {
            .category-hero h1 {
                font-size: 1.45rem;
            }
            .filter-chip {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #0B8F3B;
            --primary-dark: #087A30;
            --primary-deeper: #066B28;
            --accent: #F2C230;
            --accent-hover: #E0B520;
            --danger: #E53935;
            --bg: #F7F8FA;
            --bg-card: #FFFFFF;
            --dark: #111820;
            --dark-soft: #1A2533;
            --text-primary: #1F2733;
            --text-secondary: #5A6572;
            --text-on-dark: #E6EAF0;
            --border: #E1E5EA;
            --radius-card: 12px;
            --radius-btn: 8px;
            --shadow-light: 0 1px 3px rgba(17, 24, 32, 0.06), 0 0 0 1px rgba(17, 24, 32, 0.04);
            --shadow-hover: 0 8px 24px rgba(17, 24, 32, 0.10);
            --font-number: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
            --section-gap-desktop: 88px;
            --section-gap-mobile: 52px;
            --transition-base: 180ms ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans SC', 'Noto Sans SC', 'Microsoft YaHei', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-base);
        }

        a:hover {
            color: var(--primary-dark);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(11, 143, 59, 0.4);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-gap {
            padding-top: var(--section-gap-desktop);
            padding-bottom: var(--section-gap-desktop);
        }

        .section-label {
            display: inline-block;
            background: rgba(11, 143, 59, 0.08);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
            text-transform: uppercase;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 1.02rem;
            max-width: 720px;
            margin-bottom: 2rem;
            line-height: 1.85;
        }

        /* Buttons */
        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: all var(--transition-base);
            padding: 10px 22px;
            font-size: 0.95rem;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.28);
        }

        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.22);
        }

        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
            color: #111820;
            font-weight: 700;
        }

        .btn-accent:hover {
            background-color: var(--accent-hover);
            border-color: var(--accent-hover);
            color: #111820;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(242, 194, 48, 0.35);
        }

        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
            background: transparent;
        }

        .btn-outline-light:hover {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
        }

        .btn-lg {
            padding: 13px 28px;
            font-size: 1rem;
        }

        .btn-sm {
            padding: 7px 16px;
            font-size: 0.85rem;
        }

        /* Cards */
        .card {
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            background: var(--bg-card);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }

        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .card-img-top {
            border-radius: var(--radius-card) var(--radius-card) 0 0;
            object-fit: cover;
            aspect-ratio: 16/9;
            width: 100%;
            background: #EAECEF;
        }

        /* Badges */
        .badge-tag {
            background: rgba(11, 143, 59, 0.1);
            color: var(--primary);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }

        .badge-hot {
            background: rgba(229, 57, 53, 0.1);
            color: var(--danger);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }

        .badge-warning {
            background: rgba(242, 194, 48, 0.2);
            color: #8A6D00;
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }

        .badge-live {
            background: rgba(229, 57, 53, 0.1);
            color: var(--danger);
            border-radius: 20px;
            padding: 4px 10px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .badge-live::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--danger);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.8); }
        }

        .badge-ht {
            background: rgba(11, 143, 59, 0.08);
            color: var(--primary);
            border-radius: 20px;
            padding: 4px 10px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Header */
        .site-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 8px rgba(17, 24, 32, 0.04);
            min-height: 64px;
            display: flex;
            align-items: center;
        }

        .site-header .navbar {
            padding: 8px 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--dark);
            letter-spacing: 0.02em;
        }

        .navbar-brand:hover {
            color: var(--primary);
        }

        .brand-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .navbar-nav {
            gap: 2px;
        }

        .navbar-nav .nav-link {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all var(--transition-base);
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
            background: rgba(11, 143, 59, 0.05);
        }

        .navbar-nav .nav-link.active {
            color: var(--primary);
            font-weight: 700;
        }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .search-box-header {
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 12px;
            gap: 8px;
            min-width: 200px;
            color: var(--text-secondary);
        }

        .search-box-header i {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .search-box-header input {
            border: none;
            background: transparent;
            outline: none;
            width: 100%;
            font-size: 0.9rem;
            color: var(--text-primary);
        }

        .search-box-header input::placeholder {
            color: var(--text-secondary);
        }

        .header-cta {
            white-space: nowrap;
        }

        .navbar-toggler {
            border: none;
            padding: 8px 10px;
            font-size: 1.2rem;
            color: var(--dark);
            background: transparent;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: 3px solid rgba(11, 143, 59, 0.4);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: #fff;
                border-top: 1px solid var(--border);
                padding: 16px 0;
                margin-top: 8px;
            }
            .navbar-nav .nav-link.active::after {
                display: none;
            }
            .search-box-header {
                min-width: 100%;
                margin: 8px 0;
            }
            .header-cta {
                margin: 8px 0;
            }
        }

        /* Hero category short */
        .hero-cat {
            background: var(--dark);
            position: relative;
            padding: 64px 0 56px;
            overflow: hidden;
        }

        .hero-cat::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            z-index: 0;
        }

        .hero-cat::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(17,24,32,0.55) 0%, rgba(17,24,32,0.85) 100%);
            z-index: 1;
        }

        .hero-cat .container {
            position: relative;
            z-index: 2;
        }

        .hero-cat-content {
            max-width: 760px;
        }

        .hero-cat h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .hero-cat .lead {
            color: rgba(230, 234, 240, 0.85);
            font-size: 1.05rem;
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .hero-stat-item {
            color: #fff;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.08);
            padding: 6px 14px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.12);
        }

        .hero-stat-item i {
            color: var(--accent);
            font-size: 0.8rem;
        }

        /* Filter tags */
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0 24px;
        }

        .filter-tag {
            display: inline-block;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            border-radius: 20px;
            padding: 6px 18px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-base);
            text-decoration: none;
        }

        .filter-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(11, 143, 59, 0.05);
        }

        .filter-tag.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(11, 143, 59, 0.3);
        }

        /* Score cards */
        .score-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            padding: 18px 20px;
            transition: all var(--transition-base);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
        }

        .score-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: rgba(11, 143, 59, 0.3);
        }

        .score-card-left {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 180px;
        }

        .score-league-icon {
            width: 36px;
            height: 36px;
            background: rgba(11, 143, 59, 0.1);
            color: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .score-league {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-primary);
        }

        .score-time {
            font-size: 0.78rem;
            color: var(--text-secondary);
            font-family: var(--font-number);
        }

        .score-card-center {
            display: flex;
            align-items: center;
            gap: 18px;
            flex: 1;
            min-width: 200px;
            justify-content: center;
        }

        .score-team {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
        }

        .score-num {
            font-family: var(--font-number);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            background: var(--bg);
            padding: 4px 12px;
            border-radius: 6px;
            letter-spacing: 0.04em;
            min-width: 56px;
            text-align: center;
        }

        .score-num.highlight {
            background: rgba(242, 194, 48, 0.25);
            color: #8A6D00;
        }

        .score-card-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .score-status {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .score-card .btn-sm {
            white-space: nowrap;
        }

        /* List group for score */
        .score-list {
            margin-top: 8px;
        }

        /* Deep content */
        .deep-content {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            padding: 32px 28px;
            margin-top: 32px;
        }

        .deep-content h3 {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .deep-content p {
            color: var(--text-secondary);
            line-height: 1.9;
            font-size: 0.98rem;
            margin-bottom: 12px;
        }

        .deep-content .highlight-box {
            background: var(--bg);
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 16px 0;
            color: var(--text-primary);
            font-weight: 500;
        }

        /* FAQ */
        .faq-item {
            border: 1px solid var(--border);
            border-radius: 10px;
            background: #fff;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all var(--transition-base);
        }

        .faq-item:hover {
            border-color: rgba(11, 143, 59, 0.3);
        }

        .faq-question {
            padding: 16px 20px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 0.98rem;
        }

        .faq-question i {
            color: var(--primary);
            font-size: 0.9rem;
            transition: transform var(--transition-base);
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px 16px;
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.8;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: var(--text-on-dark);
            padding: 48px 0 28px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 12px;
        }

        .footer-brand-desc {
            color: rgba(230, 234, 240, 0.7);
            font-size: 0.9rem;
            line-height: 1.8;
            max-width: 300px;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul a {
            color: rgba(230, 234, 240, 0.75);
            font-size: 0.9rem;
            transition: color var(--transition-base);
        }

        .footer-col ul a:hover {
            color: var(--accent);
        }

        .footer-subscribe {
            display: flex;
            gap: 8px;
            flex-direction: column;
        }

        .footer-subscribe input {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            padding: 10px 14px;
            color: #fff;
            font-size: 0.9rem;
            outline: none;
        }

        .footer-subscribe input::placeholder {
            color: rgba(230, 234, 240, 0.5);
        }

        .footer-subscribe input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(11, 143, 59, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.85rem;
            color: rgba(230, 234, 240, 0.6);
        }

        .footer-bottom a {
            color: rgba(230, 234, 240, 0.6);
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .hero-cat h1 {
                font-size: 2rem;
            }
            .score-card-center {
                gap: 12px;
            }
            .score-num {
                font-size: 1.3rem;
                min-width: 48px;
            }
        }

        @media (max-width: 768px) {
            .section-gap {
                padding-top: var(--section-gap-mobile);
                padding-bottom: var(--section-gap-mobile);
            }
            .hero-cat {
                padding: 36px 0 40px;
            }
            .hero-cat h1 {
                font-size: 1.7rem;
            }
            .hero-cat .lead {
                font-size: 0.95rem;
            }
            .hero-stats {
                gap: 10px;
            }
            .score-card {
                padding: 14px 16px;
                flex-direction: column;
                align-items: flex-start;
            }
            .score-card-left {
                min-width: auto;
            }
            .score-card-center {
                width: 100%;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 8px;
            }
            .score-team {
                font-size: 0.85rem;
                white-space: normal;
            }
            .score-num {
                font-size: 1.2rem;
                min-width: 44px;
            }
            .score-card-right {
                width: 100%;
                justify-content: space-between;
            }
            .deep-content {
                padding: 20px 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            .navbar-brand {
                font-size: 1rem;
            }
            .brand-icon {
                width: 28px;
                height: 28px;
                font-size: 0.85rem;
            }
            .hero-cat h1 {
                font-size: 1.5rem;
            }
            .hero-cat .lead {
                font-size: 0.9rem;
            }
            .filter-tag {
                padding: 5px 14px;
                font-size: 0.8rem;
            }
            .score-num {
                font-size: 1.1rem;
                min-width: 40px;
                padding: 3px 8px;
            }
            .score-card {
                padding: 12px;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #0B8F3B;
            --primary-dark: #087A30;
            --primary-deeper: #066B28;
            --accent: #F2C230;
            --accent-hover: #E0B520;
            --danger: #E53935;
            --bg: #F7F8FA;
            --bg-card: #FFFFFF;
            --dark: #111820;
            --dark-soft: #1A2533;
            --text-primary: #1F2733;
            --text-secondary: #5A6572;
            --text-on-dark: #E6EAF0;
            --border: #E1E5EA;
            --radius-card: 12px;
            --radius-btn: 8px;
            --shadow-light: 0 1px 3px rgba(17, 24, 32, 0.06), 0 0 0 1px rgba(17, 24, 32, 0.04);
            --shadow-hover: 0 8px 24px rgba(17, 24, 32, 0.10);
            --font-number: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
            --section-gap-desktop: 88px;
            --section-gap-mobile: 52px;
            --transition-base: 180ms ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans SC', 'Noto Sans SC', 'Microsoft YaHei', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-base);
        }

        a:hover {
            color: var(--primary-dark);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(11, 143, 59, 0.4);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-gap {
            padding-top: var(--section-gap-desktop);
            padding-bottom: var(--section-gap-desktop);
        }

        .section-label {
            display: inline-block;
            background: rgba(11, 143, 59, 0.08);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
            text-transform: uppercase;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 1.02rem;
            max-width: 720px;
            margin-bottom: 2rem;
            line-height: 1.85;
        }

        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: all var(--transition-base);
            padding: 10px 22px;
            font-size: 0.95rem;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.28);
        }

        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.22);
        }

        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
            color: #111820;
            font-weight: 700;
        }

        .btn-accent:hover {
            background-color: var(--accent-hover);
            border-color: var(--accent-hover);
            color: #111820;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(242, 194, 48, 0.35);
        }

        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
            background: transparent;
        }

        .btn-outline-light:hover {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
        }

        .btn-lg {
            padding: 13px 28px;
            font-size: 1rem;
        }

        .btn-sm {
            padding: 7px 16px;
            font-size: 0.85rem;
        }

        .card {
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            background: var(--bg-card);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }

        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .card-img-top {
            border-radius: var(--radius-card) var(--radius-card) 0 0;
            object-fit: cover;
            aspect-ratio: 16/9;
            width: 100%;
            background: #EAECEF;
        }

        .badge-tag {
            background: rgba(11, 143, 59, 0.1);
            color: var(--primary);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }

        .badge-hot {
            background: rgba(229, 57, 53, 0.1);
            color: var(--danger);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }

        .badge-warning {
            background: rgba(242, 194, 48, 0.2);
            color: #8A6D00;
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }

        /* ===== Header/Nav ===== */
        .site-header {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 8px rgba(17,24,32,0.04);
        }

        .navbar {
            min-height: 64px;
            padding: 8px 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text-primary);
            letter-spacing: 0.01em;
        }

        .navbar-brand:hover {
            color: var(--primary);
        }

        .brand-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--primary);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .navbar-nav .nav-link {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.94rem;
            padding: 8px 14px;
            border-bottom: 2px solid transparent;
            transition: color var(--transition-base), border-color var(--transition-base);
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }

        .navbar-nav .nav-link.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
            font-weight: 600;
        }

        .search-box-header {
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 12px;
            gap: 8px;
            min-width: 200px;
        }

        .search-box-header i {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .search-box-header input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.88rem;
            color: var(--text-primary);
            width: 100%;
        }

        .search-box-header input::placeholder {
            color: var(--text-secondary);
            opacity: 0.7;
        }

        .header-cta {
            font-weight: 600;
            white-space: nowrap;
            padding: 9px 20px;
        }

        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-primary);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb-bar {
            background: var(--bg);
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .breadcrumb-bar a {
            color: var(--text-secondary);
        }

        .breadcrumb-bar a:hover {
            color: var(--primary);
        }

        .breadcrumb-bar span {
            margin: 0 6px;
            color: var(--border);
        }

        .breadcrumb-bar .current {
            color: var(--primary);
            font-weight: 600;
        }

        /* ===== Category Hero ===== */
        .category-hero {
            background: var(--dark);
            color: var(--text-on-dark);
            padding: 56px 0 48px;
            position: relative;
            overflow: hidden;
            border-bottom: 4px solid var(--primary);
        }

        .category-hero::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(11,143,59,0.18) 0%, transparent 70%);
            pointer-events: none;
        }

        .category-hero h1 {
            font-size: 2.35rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 14px;
            color: #fff;
            letter-spacing: 0.01em;
            position: relative;
            z-index: 1;
        }

        .category-hero .hero-sub {
            font-size: 1.05rem;
            color: rgba(230,234,240,0.85);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }

        .hero-stat-badge {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .hero-stat-badge .stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(230,234,240,0.8);
            font-size: 0.9rem;
        }

        .hero-stat-badge .stat-item strong {
            color: var(--accent);
            font-family: var(--font-number);
            font-size: 1.1rem;
        }

        /* ===== Filter Tags ===== */
        .filter-section {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            padding: 18px 0;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .filter-tags .filter-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 600;
            margin-right: 4px;
        }

        .filter-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-base);
            user-select: none;
        }

        .filter-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(11,143,59,0.04);
        }

        .filter-tag.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        /* ===== Data Table ===== */
        .table-card {
            background: var(--bg-card);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            overflow: hidden;
        }

        .table-card .table-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            border-bottom: 1px solid var(--border);
            flex-wrap: wrap;
            gap: 12px;
        }

        .table-card .table-header h2 {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0;
            color: var(--text-primary);
        }

        .table-card .table-header .league-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .data-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .data-table-wrap table {
            width: 100%;
            min-width: 780px;
            border-collapse: collapse;
            font-size: 0.92rem;
        }

        .data-table-wrap thead th {
            background: var(--dark);
            color: var(--text-on-dark);
            font-weight: 600;
            padding: 12px 14px;
            text-align: left;
            white-space: nowrap;
            border-bottom: 2px solid var(--primary);
            font-size: 0.82rem;
            letter-spacing: 0.03em;
        }

        .data-table-wrap tbody td {
            padding: 11px 14px;
            border-bottom: 1px solid var(--border);
            white-space: nowrap;
            vertical-align: middle;
        }

        .data-table-wrap tbody tr:nth-child(even) {
            background: #F9FAFB;
        }

        .data-table-wrap tbody tr:hover {
            background: rgba(11,143,59,0.04);
        }

        .data-table-wrap .rank-cell {
            font-family: var(--font-number);
            font-weight: 700;
            font-size: 1rem;
            width: 48px;
        }

        .rank-cell.top-4 {
            color: var(--primary);
        }

        .rank-cell.relegation {
            color: var(--danger);
        }

        .team-cell {
            font-weight: 600;
            color: var(--text-primary);
        }

        .num-cell {
            font-family: var(--font-number);
            text-align: center;
        }

        .trend-up {
            color: var(--primary);
            font-size: 0.8rem;
            margin-left: 4px;
        }

        .trend-down {
            color: var(--danger);
            font-size: 0.8rem;
            margin-left: 4px;
        }

        .trend-flat {
            color: var(--text-secondary);
            font-size: 0.8rem;
            margin-left: 4px;
        }

        /* ===== League Cards Grid ===== */
        .league-card {
            background: var(--bg-card);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            overflow: hidden;
            transition: box-shadow var(--transition-base), transform var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .league-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .league-card .league-card-img {
            aspect-ratio: 16/9;
            width: 100%;
            object-fit: cover;
            background: #EAECEF;
            position: relative;
        }

        .league-card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .league-card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
            line-height: 1.45;
        }

        .league-card-body p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.7;
            flex: 1;
        }

        .league-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.78rem;
            color: var(--text-secondary);
            border-top: 1px solid var(--border);
            padding-top: 12px;
            margin-top: 6px;
        }

        /* ===== Intro Section ===== */
        .intro-panel {
            background: var(--bg-card);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            padding: 36px 40px;
        }

        .intro-panel h2 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .intro-panel p {
            color: var(--text-secondary);
            line-height: 1.9;
            font-size: 0.98rem;
            margin-bottom: 12px;
        }

        .intro-panel .highlight-num {
            font-weight: 700;
            color: var(--primary);
            font-family: var(--font-number);
        }

        /* ===== Pagination ===== */
        .pagination-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .pagination-custom .page-link {
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-secondary);
            padding: 8px 14px;
            font-size: 0.88rem;
            font-weight: 500;
            transition: all var(--transition-base);
            background: var(--bg-card);
        }

        .pagination-custom .page-link:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(11,143,59,0.04);
        }

        .pagination-custom .page-link.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .pagination-custom .page-link.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* ===== CTA Section ===== */
        .cta-panel {
            background: var(--dark);
            border-radius: var(--radius-card);
            color: var(--text-on-dark);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-panel::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 520px;
            height: 320px;
            background: radial-gradient(ellipse, rgba(11,143,59,0.25) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-panel h2 {
            font-size: 1.7rem;
            font-weight: 800;
            margin-bottom: 12px;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .cta-panel p {
            color: rgba(230,234,240,0.85);
            max-width: 560px;
            margin: 0 auto 24px;
            font-size: 0.98rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--dark);
            color: var(--text-on-dark);
            padding: 56px 0 24px;
            margin-top: 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
            gap: 36px;
            margin-bottom: 36px;
        }

        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 12px;
        }

        .footer-brand-desc {
            color: rgba(230,234,240,0.7);
            font-size: 0.88rem;
            line-height: 1.75;
            margin-bottom: 0;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: rgba(230,234,240,0.7);
            font-size: 0.88rem;
            transition: color var(--transition-base);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-subscribe {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-subscribe input {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            padding: 10px 14px;
            color: #fff;
            font-size: 0.88rem;
            outline: none;
            transition: border-color var(--transition-base);
        }

        .footer-subscribe input::placeholder {
            color: rgba(230,234,240,0.5);
        }

        .footer-subscribe input:focus {
            border-color: var(--primary);
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(230,234,240,0.15);
            padding-top: 20px;
            font-size: 0.8rem;
            color: rgba(230,234,240,0.6);
        }

        .footer-bottom a {
            color: rgba(230,234,240,0.6);
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            .section-gap {
                padding-top: var(--section-gap-mobile);
                padding-bottom: var(--section-gap-mobile);
            }

            .navbar {
                flex-wrap: wrap;
            }

            .navbar-brand {
                font-size: 1.1rem;
            }

            .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 0.85rem;
            }

            .search-box-header {
                min-width: 100%;
                margin-top: 8px;
                margin-right: 0 !important;
            }

            .header-cta {
                margin-top: 8px;
                width: 100%;
                text-align: center;
            }

            .category-hero {
                padding: 36px 0 32px;
            }

            .category-hero h1 {
                font-size: 1.7rem;
            }

            .category-hero .hero-sub {
                font-size: 0.95rem;
            }

            .hero-stat-badge {
                gap: 16px;
            }

            .filter-tags {
                gap: 6px;
            }

            .filter-tag {
                padding: 5px 12px;
                font-size: 0.8rem;
            }

            .table-card .table-header {
                padding: 14px 16px;
                flex-direction: column;
                align-items: flex-start;
            }

            .intro-panel {
                padding: 24px 20px;
            }

            .cta-panel {
                padding: 32px 20px;
            }

            .cta-panel h2 {
                font-size: 1.4rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                font-size: 0.75rem;
            }

            .league-card-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
        }

        @media (max-width: 520px) {
            .category-hero h1 {
                font-size: 1.45rem;
            }

            .hero-stat-badge {
                flex-direction: column;
                gap: 8px;
            }

            .container {
                padding-left: 14px;
                padding-right: 14px;
            }

            .filter-tags .filter-label {
                width: 100%;
                margin-bottom: 4px;
            }

            .filter-tag {
                font-size: 0.78rem;
                padding: 5px 10px;
            }

            .data-table-wrap table {
                min-width: 650px;
                font-size: 0.82rem;
            }

            .data-table-wrap thead th {
                padding: 10px 10px;
                font-size: 0.75rem;
            }

            .data-table-wrap tbody td {
                padding: 9px 10px;
            }

            .pagination-custom .page-link {
                padding: 6px 10px;
                font-size: 0.8rem;
            }

            .footer-bottom {
                font-size: 0.7rem;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #0B8F3B;
            --primary-dark: #087A30;
            --primary-deeper: #066B28;
            --accent: #F2C230;
            --accent-hover: #E0B520;
            --danger: #E53935;
            --bg: #F7F8FA;
            --bg-card: #FFFFFF;
            --dark: #111820;
            --dark-soft: #1A2533;
            --text-primary: #1F2733;
            --text-secondary: #5A6572;
            --text-on-dark: #E6EAF0;
            --border: #E1E5EA;
            --radius-card: 12px;
            --radius-btn: 8px;
            --shadow-light: 0 1px 3px rgba(17, 24, 32, 0.06), 0 0 0 1px rgba(17, 24, 32, 0.04);
            --shadow-hover: 0 8px 24px rgba(17, 24, 32, 0.10);
            --font-number: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
            --section-gap-desktop: 88px;
            --section-gap-mobile: 52px;
            --transition-base: 180ms ease;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans SC', 'Noto Sans SC', 'Microsoft YaHei', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-base);
        }
        a:hover {
            color: var(--primary-dark);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(11, 143, 59, 0.4);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-gap {
            padding-top: var(--section-gap-desktop);
            padding-bottom: var(--section-gap-desktop);
        }
        .section-label {
            display: inline-block;
            background: rgba(11, 143, 59, 0.08);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
            text-transform: uppercase;
        }
        .section-desc {
            color: var(--text-secondary);
            font-size: 1.02rem;
            max-width: 720px;
            margin-bottom: 2rem;
            line-height: 1.85;
        }
        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: all var(--transition-base);
            padding: 10px 22px;
            font-size: 0.95rem;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.28);
        }
        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            background: transparent;
        }
        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.22);
        }
        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
            color: #111820;
            font-weight: 700;
        }
        .btn-accent:hover {
            background-color: var(--accent-hover);
            border-color: var(--accent-hover);
            color: #111820;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(242, 194, 48, 0.35);
        }
        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
            background: transparent;
        }
        .btn-outline-light:hover {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
        }
        .btn-lg {
            padding: 13px 28px;
            font-size: 1rem;
        }
        .btn-sm {
            padding: 7px 16px;
            font-size: 0.85rem;
        }
        .card {
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            background: var(--bg-card);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .card-img-top {
            border-radius: var(--radius-card) var(--radius-card) 0 0;
            object-fit: cover;
            aspect-ratio: 16/9;
            width: 100%;
            background: #EAECEF;
        }
        .badge-tag {
            background: rgba(11, 143, 59, 0.1);
            color: var(--primary);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }
        .badge-hot {
            background: rgba(229, 57, 53, 0.1);
            color: var(--danger);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }
        .badge-warning {
            background: rgba(242, 194, 48, 0.2);
            color: #8A6D00;
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }

        /* Header/Nav */
        .site-header {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 8px rgba(17,24,32,0.05);
            position: sticky;
            top: 0;
            z-index: 1020;
        }
        .navbar {
            min-height: 64px;
            padding-top: 8px;
            padding-bottom: 8px;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text-primary);
        }
        .navbar-brand:hover {
            color: var(--primary);
        }
        .brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            font-size: 1rem;
        }
        .navbar-nav .nav-link {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.92rem;
            padding: 8px 14px;
            border-radius: 6px;
            transition: all var(--transition-base);
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary);
            background: rgba(11, 143, 59, 0.06);
        }
        .navbar-nav .nav-link.active {
            color: var(--primary);
            background: rgba(11, 143, 59, 0.08);
            border-bottom: 2px solid var(--primary);
            border-radius: 6px 6px 0 0;
            font-weight: 700;
        }
        .search-box-header {
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 14px;
            gap: 8px;
            min-width: 200px;
        }
        .search-box-header i {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        .search-box-header input {
            border: none;
            background: transparent;
            outline: none;
            color: var(--text-primary);
            font-size: 0.88rem;
            width: 100%;
        }
        .search-box-header input::placeholder {
            color: #8A94A0;
        }
        .header-cta {
            font-size: 0.88rem;
            padding: 8px 18px;
            white-space: nowrap;
        }
        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 12px;
            color: var(--text-primary);
        }
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid rgba(11, 143, 59, 0.4);
        }

        /* Hero */
        .category-hero {
            background: var(--dark);
            color: var(--text-on-dark);
            padding-top: 48px;
            padding-bottom: 48px;
            position: relative;
            overflow: hidden;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            right: -120px;
            top: -80px;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(11,143,59,0.25) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .category-hero .container {
            position: relative;
            z-index: 1;
        }
        .category-hero h1 {
            font-size: 2.1rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.35;
        }
        .category-hero .hero-desc {
            font-size: 1.02rem;
            color: rgba(230, 234, 240, 0.8);
            max-width: 620px;
            line-height: 1.85;
            margin-bottom: 0;
        }
        .hero-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 20px;
            font-size: 0.85rem;
            color: rgba(230, 234, 240, 0.75);
        }
        .hero-meta-row span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .hero-meta-row i {
            color: var(--accent);
        }

        /* Filter Tags */
        .filter-bar {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
            box-shadow: var(--shadow-light);
        }
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        .filter-tag {
            padding: 6px 16px;
            border-radius: 20px;
            background: var(--bg);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            font-size: 0.82rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
        }
        .filter-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .filter-tag.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            font-weight: 700;
        }
        .filter-label {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-right: 4px;
        }

        /* Cards */
        .odds-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-light);
            padding: 20px 22px;
            transition: box-shadow var(--transition-base), transform var(--transition-base);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .odds-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .odds-card .match-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .odds-card .league-name {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: 0.04em;
        }
        .odds-card .match-date {
            font-size: 0.8rem;
            color: #8A94A0;
        }
        .odds-card .match-teams {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .odds-card .change-detail {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .odds-card .change-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .odds-card .card-cover {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 16/9;
            margin-bottom: 4px;
        }
        .odds-card .card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .odds-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 700;
        }
        .odds-indicator.up {
            color: var(--danger);
        }
        .odds-indicator.down {
            color: var(--primary);
        }
        .odds-indicator i {
            font-size: 0.75rem;
        }

        /* Table */
        .odds-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            background: var(--bg-card);
        }
        .odds-table {
            width: 100%;
            min-width: 860px;
            border-collapse: collapse;
            font-size: 0.88rem;
        }
        .odds-table thead th {
            background: var(--dark);
            color: #fff;
            font-weight: 700;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
            border-bottom: 2px solid var(--dark-soft);
        }
        .odds-table tbody tr:nth-child(even) {
            background: #FAFBFD;
        }
        .odds-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid var(--border);
            color: var(--text-primary);
            white-space: nowrap;
        }
        .odds-table tbody tr:last-child td {
            border-bottom: none;
        }
        .odds-table .num {
            font-family: var(--font-number);
            font-weight: 600;
        }
        .odds-table .change-up {
            color: var(--danger);
            font-weight: 700;
        }
        .odds-table .change-down {
            color: var(--primary);
            font-weight: 700;
        }

        /* Intro Section */
        .intro-section {
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .intro-text {
            font-size: 1.02rem;
            line-height: 1.9;
            color: var(--text-secondary);
            max-width: 900px;
        }
        .intro-text strong {
            color: var(--text-primary);
        }

        /* FAQ */
        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            background: var(--bg-card);
            box-shadow: var(--shadow-light);
            margin-bottom: 10px;
            overflow: hidden;
        }
        .faq-question {
            padding: 18px 22px;
            font-weight: 700;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background var(--transition-base);
            font-size: 0.98rem;
        }
        .faq-question:hover {
            background: rgba(11, 143, 59, 0.04);
        }
        .faq-question i {
            transition: transform var(--transition-base);
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        .faq-question.open i {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-answer {
            padding: 0 22px 18px;
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.85;
            display: none;
        }
        .faq-answer.show {
            display: block;
        }

        /* CTA */
        .cta-section {
            background: var(--dark);
            color: var(--text-on-dark);
            padding-top: 56px;
            padding-bottom: 56px;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            left: -100px;
            bottom: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(11,143,59,0.3) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section .container {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }
        .cta-section p {
            color: rgba(230,234,240,0.8);
            max-width: 580px;
            margin-bottom: 24px;
            font-size: 1rem;
            line-height: 1.8;
        }

        /* Pagination */
        .pagination-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 32px;
        }
        .page-link-custom {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
            height: 36px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--bg-card);
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.88rem;
            transition: all var(--transition-base);
            padding: 0 12px;
            cursor: pointer;
        }
        .page-link-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .page-link-custom.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: var(--text-on-dark);
            padding-top: 48px;
            padding-bottom: 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: rgba(230,234,240,0.7);
            font-size: 0.88rem;
            transition: color var(--transition-base);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-brand-desc {
            color: rgba(230,234,240,0.7);
            font-size: 0.88rem;
            line-height: 1.85;
        }
        .footer-subscribe {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-subscribe input {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            padding: 10px 14px;
            color: #fff;
            font-size: 0.88rem;
            outline: none;
            transition: border-color var(--transition-base);
        }
        .footer-subscribe input::placeholder {
            color: rgba(230,234,240,0.5);
        }
        .footer-subscribe input:focus {
            border-color: var(--primary);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 0.8rem;
            color: rgba(230,234,240,0.6);
        }
        .footer-bottom a {
            color: rgba(230,234,240,0.7);
        }
        .footer-bottom a:hover {
            color: var(--accent);
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .section-gap {
                padding-top: var(--section-gap-mobile);
                padding-bottom: var(--section-gap-mobile);
            }
            .category-hero {
                padding-top: 36px;
                padding-bottom: 36px;
            }
            .category-hero h1 {
                font-size: 1.5rem;
            }
            .category-hero .hero-desc {
                font-size: 0.92rem;
            }
            .navbar-brand {
                font-size: 1.1rem;
            }
            .search-box-header {
                min-width: auto;
                width: 100%;
                margin-bottom: 8px;
            }
            .header-cta {
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .odds-card {
                padding: 16px;
            }
            .filter-tags {
                gap: 6px;
            }
            .filter-tag {
                padding: 5px 12px;
                font-size: 0.75rem;
            }
            .cta-section h2 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 520px) {
            .category-hero h1 {
                font-size: 1.3rem;
            }
            .hero-meta-row {
                gap: 12px;
                font-size: 0.75rem;
                flex-direction: column;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #0B8F3B;
            --primary-dark: #087A30;
            --primary-deeper: #066B28;
            --accent: #F2C230;
            --accent-hover: #E0B520;
            --danger: #E53935;
            --bg: #F7F8FA;
            --bg-card: #FFFFFF;
            --dark: #111820;
            --dark-soft: #1A2533;
            --text-primary: #1F2733;
            --text-secondary: #5A6572;
            --text-on-dark: #E6EAF0;
            --border: #E1E5EA;
            --radius-card: 12px;
            --radius-btn: 8px;
            --shadow-light: 0 1px 3px rgba(17, 24, 32, 0.06), 0 0 0 1px rgba(17, 24, 32, 0.04);
            --shadow-hover: 0 8px 24px rgba(17, 24, 32, 0.10);
            --font-number: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
            --section-gap-desktop: 88px;
            --section-gap-mobile: 52px;
            --transition-base: 180ms ease;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'PingFang SC', 'Hiragino Sans GB', 'Source Han Sans SC', 'Noto Sans SC', 'Microsoft YaHei', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg);
            color: var(--text-primary);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition-base);
        }
        a:hover {
            color: var(--primary-dark);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(11, 143, 59, 0.4);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-gap {
            padding-top: var(--section-gap-desktop);
            padding-bottom: var(--section-gap-desktop);
        }
        .section-label {
            display: inline-block;
            background: rgba(11, 143, 59, 0.08);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
            text-transform: uppercase;
        }
        .section-desc {
            color: var(--text-secondary);
            font-size: 1.02rem;
            max-width: 720px;
            margin-bottom: 2rem;
            line-height: 1.85;
        }
        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: all var(--transition-base);
            padding: 10px 22px;
            font-size: 0.95rem;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.28);
        }
        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            background: transparent;
        }
        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(11, 143, 59, 0.22);
        }
        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
            color: #111820;
            font-weight: 700;
        }
        .btn-accent:hover {
            background-color: var(--accent-hover);
            border-color: var(--accent-hover);
            color: #111820;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(242, 194, 48, 0.35);
        }
        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
            background: transparent;
        }
        .btn-outline-light:hover {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
        }
        .btn-lg {
            padding: 13px 28px;
            font-size: 1rem;
        }
        .btn-sm {
            padding: 7px 16px;
            font-size: 0.85rem;
        }
        .card {
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            background: var(--bg-card);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .card-img-top {
            border-radius: var(--radius-card) var(--radius-card) 0 0;
            object-fit: cover;
            aspect-ratio: 16/9;
            width: 100%;
            background: #EAECEF;
        }
        .badge-tag {
            background: rgba(11, 143, 59, 0.1);
            color: var(--primary);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }
        .badge-hot {
            background: rgba(229, 57, 53, 0.1);
            color: var(--danger);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }
        .badge-warning {
            background: rgba(242, 194, 48, 0.2);
            color: #8A6D00;
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            display: inline-block;
        }
        .num-font {
            font-family: var(--font-number);
            font-feature-settings: "tnum";
            letter-spacing: -0.01em;
        }

        /* Site Header */
        .site-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 8px rgba(17, 24, 32, 0.04);
        }
        .site-header .navbar {
            min-height: 68px;
            padding: 0;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text-primary);
            letter-spacing: 0.02em;
        }
        .navbar-brand:hover {
            color: var(--primary);
        }
        .brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            font-size: 0.95rem;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--text-secondary);
            padding: 10px 14px;
            border-bottom: 2px solid transparent;
            transition: color var(--transition-base), border-color var(--transition-base);
            margin: 0 2px;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        .navbar-nav .nav-link.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .search-box-header {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 14px;
            min-width: 200px;
            transition: border-color var(--transition-base);
        }
        .search-box-header:focus-within {
            border-color: var(--primary);
            background: #fff;
        }
        .search-box-header i {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        .search-box-header input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.88rem;
            color: var(--text-primary);
            width: 100%;
        }
        .search-box-header input::placeholder {
            color: #9AA3AE;
        }
        .header-cta {
            font-size: 0.88rem;
            padding: 8px 18px;
            white-space: nowrap;
        }
        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 12px;
            color: var(--text-primary);
        }
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 3px solid rgba(11, 143, 59, 0.4);
        }

        /* Category Hero */
        .cat-hero {
            background: var(--dark);
            padding: 56px 0 64px;
            position: relative;
            overflow: hidden;
        }
        .cat-hero::after {
            content: '';
            position: absolute;
            right: -80px;
            top: -60px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(11, 143, 59, 0.35) 0%, transparent 70%);
            pointer-events: none;
        }
        .cat-hero .container {
            position: relative;
            z-index: 1;
        }
        .cat-hero h1 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            line-height: 1.3;
            letter-spacing: 0.01em;
        }
        .cat-hero p {
            color: var(--text-on-dark);
            opacity: 0.85;
            font-size: 1.05rem;
            max-width: 680px;
            margin-bottom: 0;
            line-height: 1.85;
        }
        .cat-hero .breadcrumb-cat {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 18px;
        }
        .cat-hero .breadcrumb-cat a {
            color: rgba(255, 255, 255, 0.65);
        }
        .cat-hero .breadcrumb-cat a:hover {
            color: #fff;
        }
        .cat-hero .breadcrumb-cat .sep {
            color: rgba(255, 255, 255, 0.3);
        }
        .cat-hero .breadcrumb-cat .current {
            color: var(--accent);
        }
        .hero-stats-row {
            display: flex;
            gap: 36px;
            margin-top: 28px;
            flex-wrap: wrap;
        }
        .hero-stat-item {
            display: flex;
            flex-direction: column;
        }
        .hero-stat-item .stat-value {
            font-family: var(--font-number);
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }
        .hero-stat-item .stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.55);
            letter-spacing: 0.04em;
        }

        /* Filter Tags */
        .filter-bar {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 18px 22px;
            margin-top: -28px;
            margin-bottom: 36px;
            box-shadow: var(--shadow-light);
            position: relative;
            z-index: 5;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }
        .filter-bar .filter-label {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-right: 4px;
            white-space: nowrap;
        }
        .filter-bar .filter-chip {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-base);
        }
        .filter-bar .filter-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .filter-bar .filter-chip.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        /* Stats Table */
        .stats-table-wrap {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            overflow: hidden;
            margin-bottom: 32px;
        }
        .stats-table-wrap .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 24px;
            border-bottom: 1px solid var(--border);
            flex-wrap: wrap;
            gap: 12px;
        }
        .stats-table-wrap .table-header h2 {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0;
            color: var(--text-primary);
        }
        .stats-table-wrap .table-header .update-time {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        .stats-table {
            width: 100%;
            margin: 0;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .stats-table thead th {
            background: var(--dark);
            color: #fff;
            font-weight: 600;
            padding: 12px 16px;
            font-size: 0.82rem;
            letter-spacing: 0.03em;
            white-space: nowrap;
            text-align: center;
            border: none;
        }
        .stats-table tbody td {
            padding: 12px 16px;
            text-align: center;
            border-bottom: 1px solid var(--border);
            color: var(--text-primary);
            font-size: 0.88rem;
            vertical-align: middle;
        }
        .stats-table tbody tr:nth-child(even) {
            background: #FAFBFC;
        }
        .stats-table tbody tr:hover {
            background: rgba(11, 143, 59, 0.04);
        }
        .stats-table .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            text-align: left;
            white-space: nowrap;
        }
        .stats-table .team-cell img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            background: #EAECEF;
            flex-shrink: 0;
        }
        .stats-table .team-cell span {
            font-weight: 600;
        }
        .stats-table .num-cell {
            font-family: var(--font-number);
            font-feature-settings: "tnum";
        }
        .stats-table .trend-up {
            color: var(--primary);
            font-weight: 700;
        }
        .stats-table .trend-down {
            color: var(--danger);
            font-weight: 700;
        }
        .stats-table .trend-flat {
            color: var(--text-secondary);
        }
        .stats-table .highlight-cell {
            background: rgba(242, 194, 48, 0.18);
            font-weight: 700;
            border-radius: 4px;
        }

        /* Mixed Cards */
        .mixed-card-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 32px;
        }
        @media (max-width: 992px) {
            .mixed-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .mixed-card-grid {
                grid-template-columns: 1fr;
            }
        }
        .stat-card {
            background: #fff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-light);
            overflow: hidden;
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }
        .stat-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .stat-card .card-img-wrap {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #EAECEF;
        }
        .stat-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }
        .stat-card:hover .card-img-wrap img {
            transform: scale(1.03);
        }
        .stat-card .card-badge-overlay {
            position: absolute;
            top: 12px;
            left: 12px;
            display: flex;
            gap: 6px;
        }
        .stat-card .card-body {
            padding: 16px 18px;
        }
        .stat-card .card-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .stat-card .card-meta {
            font-size: 0.78rem;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        .stat-card .card-stats-mini {
            display: flex;
            gap: 14px;
            font-size: 0.8rem;
            color: var(--text-secondary);
            border-top: 1px solid var(--border);
            padding-top: 10px;
            flex-wrap: wrap;
        }
        .stat-card .card-stats-mini span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .stat-card .card-stats-mini .num-font {
            font-weight: 700;
            color: var(--text-primary);
        }

        /* Intro Section */
        .intro-section {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 32px 36px;
            box-shadow: var(--shadow-light);
            margin-bottom: 32px;
        }
        .intro-section h2 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
        }
        .intro-section p {
            color: var(--text-secondary);
            line-height: 1.9;
            font-size: 0.95rem;
            margin-bottom: 12px;
        }
        .intro-section p:last-child {
            margin-bottom: 0;
        }

        /* FAQ */
        .faq-section {
            margin-bottom: 32px;
        }
        .faq-section .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-card) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            background: #fff;
        }
        .faq-section .accordion-button {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            padding: 16px 22px;
            background: #fff;
            border-radius: var(--radius-card) !important;
        }
        .faq-section .accordion-button:not(.collapsed) {
            background: rgba(11, 143, 59, 0.04);
            color: var(--primary);
            box-shadow: none;
        }
        .faq-section .accordion-button:focus {
            box-shadow: none;
            outline: 3px solid rgba(11, 143, 59, 0.4);
            outline-offset: -2px;
        }
        .faq-section .accordion-body {
            padding: 16px 22px 20px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.85;
        }

        /* Pagination */
        .pagination-area {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 36px 0 16px;
            flex-wrap: wrap;
        }
        .pagination-area .page-link {
            border-radius: 8px;
            border: 1px solid var(--border);
            color: var(--text-primary);
            font-weight: 600;
            padding: 8px 16px;
            font-size: 0.88rem;
            background: #fff;
            transition: all var(--transition-base);
        }
        .pagination-area .page-link:hover {
            background: rgba(11, 143, 59, 0.06);
            border-color: var(--primary);
            color: var(--primary);
        }
        .pagination-area .page-link.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        /* CTA Section */
        .cta-section {
            background: var(--dark);
            border-radius: var(--radius-card);
            padding: 48px 40px;
            text-align: center;
            margin-bottom: 32px;
        }
        .cta-section h2 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
        }
        .cta-section p {
            color: var(--text-on-dark);
            opacity: 0.8;
            max-width: 560px;
            margin: 0 auto 24px;
            font-size: 0.95rem;
            line-height: 1.85;
        }
        .cta-section .btn {
            margin: 0 6px;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: var(--text-on-dark);
            padding: 56px 0 24px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.9fr 1fr 1.2fr;
            gap: 32px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }
        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-brand-desc {
            color: var(--text-on-dark);
            opacity: 0.7;
            font-size: 0.85rem;
            line-height: 1.8;
            margin-bottom: 0;
        }
        .site-footer h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 8px;
        }
        .site-footer ul li a {
            color: var(--text-on-dark);
            opacity: 0.7;
            font-size: 0.88rem;
            transition: opacity var(--transition-base), color var(--transition-base);
        }
        .site-footer ul li a:hover {
            opacity: 1;
            color: var(--accent);
        }
        .footer-subscribe {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-subscribe input {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 10px 16px;
            color: #fff;
            font-size: 0.88rem;
            outline: none;
            transition: border-color var(--transition-base);
        }
        .footer-subscribe input:focus {
            border-color: var(--primary);
        }
        .footer-subscribe input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding-top: 20px;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.55);
        }
        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .site-header .navbar-collapse {
                background: #fff;
                border-radius: 0 0 12px 12px;
                padding: 16px 20px;
                box-shadow: var(--shadow-hover);
                margin-top: 8px;
            }
            .navbar-nav .nav-link {
                padding: 10px 8px;
                border-bottom: none;
                border-left: 3px solid transparent;
            }
            .navbar-nav .nav-link.active {
                border-left-color: var(--primary);
                border-bottom-color: transparent;
                background: rgba(11, 143, 59, 0.05);
            }
            .search-box-header {
                min-width: 100%;
                margin-bottom: 10px;
            }
            .header-cta {
                width: 100%;
                text-align: center;
            }
            .cat-hero {
                padding: 40px 0 48px;
            }
            .hero-stats-row {
                gap: 20px;
            }
            .filter-bar {
                margin-top: -20px;
            }
        }
        @media (max-width: 768px) {
            :root {
                --section-gap-desktop: 56px;
                --section-gap-mobile: 44px;
            }
            .cat-hero {
                padding: 36px 0 44px;
            }
            .stats-table-wrap .table-header {
                padding: 14px 16px;
                flex-direction: column;
                align-items: flex-start;
            }
            .stats-table thead th,
            .stats-table tbody td {
                padding: 10px 10px;
                font-size: 0.78rem;
            }
            .stats-table .team-cell {
                gap: 6px;
            }
            .stats-table .team-cell img {
                width: 24px;
                height: 24px;
            }
            .stats-table-wrap {
                overflow-x: auto;
            }
            .stats-table {
                min-width: 680px;
            }
            .intro-section {
                padding: 22px 20px;
            }
            .cta-section {
                padding: 36px 22px;
            }
            .hero-stats-row {
                gap: 16px;
            }
            .hero-stat-item .stat-value {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 520px) {
            body {
                font-size: 15px;
            }
            .cat-hero h1 {
                font-size: 1.5rem;
            }
            .cat-hero p {
                font-size: 0.92rem;
            }
            .filter-bar {
                padding: 14px 16px;
                gap: 8px;
            }
            .filter-bar .filter-chip {
                padding: 5px 12px;
                font-size: 0.75rem;
            }
            .mixed-card-grid {
                gap: 14px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
