/* roulang page: index */
:root {
            --color-primary: #0b7a3e;
            --color-primary-dark: #065a2c;
            --color-primary-light: #0f9b50;
            --color-accent: #e8a817;
            --color-accent-dark: #c48d10;
            --color-accent-light: #f5c842;
            --color-bg: #f7f8f6;
            --color-surface: #ffffff;
            --color-surface-alt: #edf5ef;
            --color-dark: #1a1d1b;
            --color-text: #2c302e;
            --color-text-weak: #5f6662;
            --color-text-muted: #88918c;
            --color-border: #dde5df;
            --color-border-light: #edf2ee;
            --color-danger: #d94040;
            --color-live: #e03030;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-slow: 0.4s ease;
            --container-max: 1200px;
            --nav-height: 56px;
            --brand-bar-height: 54px;
            --channel-bar-height: 44px;
            --header-total-height: 98px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text);
            background: var(--color-bg);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
            -webkit-tap-highlight-color: transparent;
        }

        a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-primary-dark);
            text-decoration: none;
        }
        a:focus-visible {
            outline: 2px solid var(--color-primary-light);
            outline-offset: 3px;
            border-radius: 3px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        button:focus-visible {
            outline: 2px solid var(--color-primary-light);
            outline-offset: 2px;
        }
        input {
            font-family: inherit;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.3;
            color: var(--color-dark);
            margin: 0 0 0.5em;
        }
        h1 {
            font-size: 2.5rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.85rem;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.15rem;
        }
        p {
            margin: 0 0 1em;
        }
        ul,
        ol {
            margin: 0 0 1em;
            padding-left: 1.4em;
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 56px 0;
        }
        .section-padding-sm {
            padding: 36px 0;
        }
        .section-padding-lg {
            padding: 72px 0;
        }

        .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--color-primary);
            background: rgba(11, 122, 62, 0.08);
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 10px;
        }
        .section-title {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--color-text-weak);
            margin-bottom: 32px;
            max-width: 620px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 26px;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            border: none;
            transition: all var(--transition-base);
            text-decoration: none;
            cursor: pointer;
            line-height: 1.4;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .btn-primary {
            background: var(--color-primary);
            color: #fff;
            box-shadow: var(--shadow-sm);
        }
        .btn-primary:hover {
            background: var(--color-primary-dark);
            color: #fff;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: var(--shadow-xs);
        }
        .btn-accent {
            background: var(--color-accent);
            color: #1a1d1b;
            box-shadow: var(--shadow-sm);
        }
        .btn-accent:hover {
            background: var(--color-accent-dark);
            color: #1a1d1b;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }
        .btn-outline:hover {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
        }
        .btn-sm {
            padding: 8px 18px;
            font-size: 0.85rem;
            border-radius: var(--radius-sm);
        }
        .btn-lg {
            padding: 15px 34px;
            font-size: 1.05rem;
            border-radius: var(--radius-lg);
        }

        .badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 11px;
            border-radius: 14px;
            letter-spacing: 0.03em;
            line-height: 1.4;
        }
        .badge-live {
            background: var(--color-live);
            color: #fff;
            animation: pulse-live 1.8s ease-in-out infinite;
        }
        .badge-hot {
            background: #fff0e6;
            color: #d4651a;
        }
        .badge-new {
            background: #e6f4ed;
            color: #0b7a3e;
        }
        .badge-accent {
            background: #fef9e7;
            color: #8a6d0f;
        }

        @keyframes pulse-live {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(224, 48, 48, 0.5);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(224, 48, 48, 0);
            }
        }

        .card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            overflow: hidden;
        }
        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--color-border);
        }
        .card-clickable {
            cursor: pointer;
        }
        .card-body {
            padding: 20px 22px;
        }
        .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #e8ede9;
        }
        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .card:hover .card-img-wrap img {
            transform: scale(1.06);
        }
        .card-img-overlay {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
        }

        .divider {
            border: none;
            height: 1px;
            background: var(--color-border-light);
            margin: 20px 0;
        }

        .text-muted {
            color: var(--color-text-weak);
            font-size: 0.9rem;
        }
        .text-small {
            font-size: 0.85rem;
        }
        .text-accent {
            color: var(--color-accent-dark);
            font-weight: 600;
        }
        .fw-bold {
            font-weight: 700;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #fff;
            box-shadow: 0 1px 0 var(--color-border-light), var(--shadow-xs);
            transition: box-shadow var(--transition-base);
        }
        .site-header.scrolled {
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
        }
        .brand-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--brand-bar-height);
            padding: 0 20px;
            max-width: var(--container-max);
            margin: 0 auto;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--color-dark);
            letter-spacing: -0.01em;
            text-decoration: none;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .brand-logo .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .brand-logo:hover {
            color: var(--color-dark);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .header-search {
            display: flex;
            align-items: center;
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: 22px;
            padding: 7px 16px;
            gap: 8px;
            transition: all var(--transition-fast);
        }
        .header-search:focus-within {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(11, 122, 62, 0.08);
            background: #fff;
        }
        .header-search input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.9rem;
            color: var(--color-text);
            width: 160px;
            padding: 0;
        }
        .header-search input::placeholder {
            color: var(--color-text-muted);
        }
        .header-search .search-icon {
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }
        .btn-live-header {
            background: var(--color-live);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 16px;
            border: none;
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .btn-live-header:hover {
            background: #c02020;
            color: #fff;
        }
        .btn-live-header .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fff;
            animation: pulse-live 1.5s ease-in-out infinite;
        }
        .channel-bar {
            background: var(--color-dark);
            height: var(--channel-bar-height);
            display: flex;
            align-items: center;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0 20px;
            gap: 0;
        }
        .channel-bar::-webkit-scrollbar {
            display: none;
        }
        .channel-bar-inner {
            display: flex;
            align-items: center;
            gap: 4px;
            max-width: var(--container-max);
            margin: 0 auto;
            width: 100%;
            flex-shrink: 0;
        }
        .channel-link {
            display: inline-flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.88rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            white-space: nowrap;
            transition: all var(--transition-fast);
            text-decoration: none;
            letter-spacing: 0.01em;
            flex-shrink: 0;
        }
        .channel-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }
        .channel-link.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.14);
            font-weight: 600;
        }
        .channel-link .ch-icon {
            margin-right: 6px;
            font-size: 0.78rem;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--color-dark);
            font-size: 1.5rem;
            padding: 6px;
            cursor: pointer;
            line-height: 1;
        }
        .mobile-menu-panel {
            display: none;
            position: fixed;
            top: var(--brand-bar-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            z-index: 999;
            padding: 20px;
            overflow-y: auto;
            flex-direction: column;
            gap: 6px;
            box-shadow: var(--shadow-lg);
        }
        .mobile-menu-panel.open {
            display: flex;
        }
        .mobile-menu-panel .channel-link {
            display: block;
            color: var(--color-text);
            padding: 12px 16px;
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-weight: 500;
            border: 1px solid transparent;
        }
        .mobile-menu-panel .channel-link:hover {
            background: var(--color-surface-alt);
            color: var(--color-primary);
        }
        .mobile-menu-panel .channel-link.active {
            background: var(--color-surface-alt);
            color: var(--color-primary);
            font-weight: 700;
            border-color: var(--color-border);
        }
        .mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            z-index: 998;
        }
        .mobile-overlay.open {
            display: block;
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            background: var(--color-dark);
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            overflow: hidden;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26, 29, 27, 0.55) 0%, rgba(26, 29, 27, 0.78) 60%, rgba(26, 29, 27, 0.9) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 20px;
            max-width: var(--container-max);
            margin: 0 auto;
            width: 100%;
        }
        .hero-content h1 {
            color: #fff;
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            max-width: 700px;
            line-height: 1.2;
        }
        .hero-content .hero-sub {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            margin-bottom: 26px;
            max-width: 560px;
            line-height: 1.6;
        }
        .hero-search-box {
            display: flex;
            align-items: center;
            background: #fff;
            border-radius: 28px;
            padding: 6px 6px 6px 20px;
            max-width: 480px;
            box-shadow: var(--shadow-lg);
            gap: 6px;
        }
        .hero-search-box input {
            border: none;
            outline: none;
            font-size: 0.95rem;
            flex: 1;
            color: var(--color-text);
            background: transparent;
            padding: 8px 0;
        }
        .hero-search-box input::placeholder {
            color: var(--color-text-muted);
        }
        .hero-search-box button {
            background: var(--color-primary);
            color: #fff;
            border: none;
            padding: 11px 22px;
            border-radius: 22px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .hero-search-box button:hover {
            background: var(--color-primary-dark);
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .hero-tag {
            display: inline-block;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            background: rgba(255, 255, 255, 0.13);
            padding: 7px 15px;
            border-radius: 20px;
            text-decoration: none;
            transition: all var(--transition-fast);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        .hero-tag:hover {
            background: rgba(255, 255, 255, 0.22);
            color: #fff;
        }
        .hero-tag .tag-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            margin-right: 6px;
            vertical-align: middle;
            position: relative;
            top: -1px;
        }
        .tag-dot-green {
            background: #4cdf80;
        }
        .tag-dot-gold {
            background: #f5c842;
        }

        /* ========== DATA STRIP ========== */
        .data-strip {
            background: #fff;
            border-bottom: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-xs);
            position: relative;
            z-index: 3;
        }
        .data-strip-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            max-width: var(--container-max);
            margin: 0 auto;
        }
        .data-strip-item {
            flex: 1 1 180px;
            min-width: 140px;
            padding: 18px 20px;
            text-align: center;
            border-right: 1px solid var(--color-border-light);
            position: relative;
        }
        .data-strip-item:last-child {
            border-right: none;
        }
        .data-strip-value {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-dark);
            letter-spacing: -0.01em;
        }
        .data-strip-value.live-val {
            color: var(--color-live);
        }
        .data-strip-label {
            font-size: 0.8rem;
            color: var(--color-text-weak);
            margin-top: 2px;
            letter-spacing: 0.02em;
        }
        .data-strip-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-live);
            margin-right: 4px;
            animation: pulse-live 1.8s ease-in-out infinite;
        }

        /* ========== CATEGORY CARDS ========== */
        .cat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .cat-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 16 / 11;
            display: flex;
            align-items: flex-end;
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            text-decoration: none;
        }
        .cat-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .cat-card-bg {
            position: absolute;
            inset: 0;
            object-fit: cover;
            width: 100%;
            height: 100%;
            z-index: 0;
            transition: transform var(--transition-slow);
        }
        .cat-card:hover .cat-card-bg {
            transform: scale(1.08);
        }
        .cat-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.05) 100%);
            z-index: 1;
        }
        .cat-card-info {
            position: relative;
            z-index: 2;
            padding: 20px 18px;
            width: 100%;
        }
        .cat-card-info h3 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: 0.01em;
        }
        .cat-card-info .cat-card-count {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.82rem;
        }

        /* ========== NEWS LIST ========== */
        .news-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            border: 1px solid var(--color-border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #fff;
        }
        .news-list-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 18px 20px;
            border-bottom: 1px solid var(--color-border-light);
            transition: background var(--transition-fast);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }
        .news-list-item:last-child {
            border-bottom: none;
        }
        .news-list-item:hover {
            background: var(--color-surface-alt);
        }
        .news-date {
            flex-shrink: 0;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            min-width: 70px;
            padding-top: 2px;
            letter-spacing: 0.02em;
        }
        .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-body h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--color-dark);
            line-height: 1.45;
        }
        .news-body p {
            font-size: 0.88rem;
            color: var(--color-text-weak);
            margin: 0;
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-thumb {
            flex-shrink: 0;
            width: 90px;
            height: 64px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: #e8ede9;
        }
        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .btn-read-more {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 4px;
            transition: color var(--transition-fast);
        }
        .btn-read-more:hover {
            color: var(--color-primary-dark);
            gap: 8px;
        }
        .btn-read-more i {
            transition: transform var(--transition-fast);
            font-size: 0.7rem;
        }
        .btn-read-more:hover i {
            transform: translateX(3px);
        }

        /* ========== FOCUS MATCH BLOCK ========== */
        .match-focus-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .match-focus-card {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border-light);
            padding: 22px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-base);
            cursor: pointer;
            box-shadow: var(--shadow-xs);
        }
        .match-focus-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-border);
        }
        .match-focus-teams {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--color-dark);
            flex: 1;
            min-width: 0;
        }
        .match-focus-vs {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .match-focus-score {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-dark);
            flex-shrink: 0;
            letter-spacing: 0.02em;
        }
        .match-focus-status {
            font-size: 0.78rem;
            font-weight: 600;
            flex-shrink: 0;
            padding: 4px 10px;
            border-radius: 12px;
        }
        .status-live {
            background: #fde8e8;
            color: #c02020;
        }
        .status-upcoming {
            background: #edf5ef;
            color: #0b7a3e;
        }
        .status-finished {
            background: #f5f5f5;
            color: #88918c;
        }

        /* ========== TOPICS ========== */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .topic-card {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-xs);
            cursor: pointer;
        }
        .topic-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--color-border);
        }
        .topic-card-img {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #e8ede9;
        }
        .topic-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .topic-card:hover .topic-card-img img {
            transform: scale(1.05);
        }
        .topic-card-body {
            padding: 18px 18px;
        }
        .topic-card-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--color-dark);
        }
        .topic-card-body p {
            font-size: 0.88rem;
            color: var(--color-text-weak);
            margin-bottom: 10px;
            line-height: 1.5;
        }
        .topic-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .topic-tag {
            font-size: 0.75rem;
            padding: 3px 10px;
            border-radius: 12px;
            background: var(--color-surface-alt);
            color: var(--color-text-weak);
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        /* ========== LEAGUE TABLE ========== */
        .league-table-wrap {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
        }
        .league-table-header {
            background: var(--color-dark);
            color: #fff;
            padding: 16px 20px;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            letter-spacing: 0.01em;
        }
        table.league-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
            font-size: 0.9rem;
        }
        table.league-table th {
            background: #f9faf9;
            color: var(--color-text-weak);
            font-weight: 600;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 10px 14px;
            text-align: left;
            border-bottom: 2px solid var(--color-border);
        }
        table.league-table td {
            padding: 11px 14px;
            border-bottom: 1px solid var(--color-border-light);
            color: var(--color-text);
            vertical-align: middle;
        }
        table.league-table tr:hover td {
            background: #fafff9;
        }
        table.league-table .rank-col {
            font-weight: 700;
            color: var(--color-dark);
            width: 40px;
        }
        table.league-table .team-col {
            font-weight: 600;
        }
        table.league-table .pts-col {
            font-weight: 700;
            color: var(--color-primary);
        }
        .rank-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 3px;
            margin-right: 6px;
            vertical-align: middle;
        }
        .rank-dot-top {
            background: #0b7a3e;
        }
        .rank-dot-mid {
            background: #e8a817;
        }
        .rank-dot-low {
            background: #d94040;
        }

        /* ========== FAQ ========== */
        .faq-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: #fff;
            border: 1px solid var(--color-border-light);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-xs);
        }
        .faq-item:hover {
            border-color: var(--color-border);
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 18px 20px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            letter-spacing: 0.01em;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--color-primary);
        }
        .faq-icon {
            flex-shrink: 0;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            transition: transform var(--transition-fast);
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: var(--color-primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
        }
        .faq-answer-inner {
            padding: 0 20px 18px;
            font-size: 0.92rem;
            color: var(--color-text-weak);
            line-height: 1.65;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--color-dark) 0%, #0f2618 100%);
            color: #fff;
            text-align: center;
            border-radius: var(--radius-xl);
            padding: 50px 30px;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(11, 122, 62, 0.3) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section>* {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            color: #fff;
            font-size: 1.9rem;
            margin-bottom: 10px;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            font-size: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 0 24px;
            font-size: 0.88rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.01em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color var(--transition-fast);
            font-size: 0.85rem;
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 18px 20px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color var(--transition-fast);
            font-size: 0.8rem;
        }
        .footer-bottom-links a:hover {
            color: #fff;
        }
        .footer-brand {
            font-weight: 700;
            color: #fff;
            font-size: 1rem;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .cat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .topic-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .match-focus-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 22px;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .header-search input {
                width: 120px;
            }
            .data-strip-item {
                flex: 1 1 130px;
                padding: 14px 12px;
            }
            .data-strip-value {
                font-size: 1.3rem;
            }
            table.league-table {
                font-size: 0.8rem;
            }
            table.league-table th,
            table.league-table td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 768px) {
            .brand-bar {
                height: 50px;
            }
            .channel-bar {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .header-search {
                display: none;
            }
            .header-search-mobile {
                display: flex;
            }
            .hero-content h1 {
                font-size: 1.7rem;
            }
            .hero-content .hero-sub {
                font-size: 0.95rem;
            }
            .hero-search-box {
                max-width: 100%;
            }
            .hero-section {
                min-height: 400px;
            }
            .cat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .cat-card {
                aspect-ratio: 16 / 12;
            }
            .cat-card-info h3 {
                font-size: 1rem;
            }
            .topic-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .news-list-item {
                flex-wrap: wrap;
                gap: 10px;
                padding: 14px 16px;
            }
            .news-thumb {
                width: 100%;
                height: 140px;
                order: -1;
                flex-shrink: 0;
            }
            .news-date {
                min-width: auto;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .footer-bottom-links {
                justify-content: center;
            }
            .section-padding {
                padding: 36px 0;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .data-strip-inner {
                flex-wrap: wrap;
            }
            .data-strip-item {
                flex: 1 1 45%;
                border-right: none;
                border-bottom: 1px solid var(--color-border-light);
                padding: 12px 10px;
            }
            .data-strip-item:nth-child(odd) {
                border-right: 1px solid var(--color-border-light);
            }
            .data-strip-item:nth-last-child(-n+2) {
                border-bottom: none;
            }
            table.league-table {
                font-size: 0.75rem;
            }
            table.league-table th,
            table.league-table td {
                padding: 7px 6px;
            }
            table.league-table th:nth-child(4),
            table.league-table td:nth-child(4),
            table.league-table th:nth-child(5),
            table.league-table td:nth-child(5) {
                display: none;
            }
            .cta-section {
                padding: 36px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-section h2 {
                font-size: 1.4rem;
            }
            .btn-lg {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 520px) {
            .cat-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .cat-card {
                aspect-ratio: 16 / 9;
            }
            .hero-content h1 {
                font-size: 1.4rem;
            }
            .hero-search-box {
                flex-direction: column;
                padding: 10px 14px;
                gap: 8px;
                border-radius: var(--radius-md);
            }
            .hero-search-box input {
                width: 100%;
            }
            .hero-search-box button {
                width: 100%;
                border-radius: var(--radius-sm);
                padding: 10px;
            }
            .hero-tags {
                gap: 6px;
            }
            .hero-tag {
                font-size: 0.78rem;
                padding: 5px 11px;
            }
            .data-strip-item {
                flex: 1 1 100%;
                border-right: none;
                border-bottom: 1px solid var(--color-border-light);
            }
            .data-strip-item:last-child {
                border-bottom: none;
            }
            .data-strip-item:nth-child(odd) {
                border-right: none;
            }
            .data-strip-item:nth-last-child(-n+2) {
                border-bottom: 1px solid var(--color-border-light);
            }
            .data-strip-item:last-child {
                border-bottom: none;
            }
            .match-focus-card {
                flex-wrap: wrap;
                gap: 8px;
                padding: 16px;
            }
            .match-focus-teams {
                font-size: 0.9rem;
            }
            .match-focus-score {
                font-size: 1.3rem;
            }
            .section-title {
                font-size: 1.25rem;
            }
            .btn {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
            table.league-table th:nth-child(6),
            table.league-table td:nth-child(6) {
                display: none;
            }
        }
        @media (min-width: 769px) {
            .mobile-menu-panel,
            .mobile-overlay {
                display: none !important;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #1a5632;
            --primary-dark: #0f3d21;
            --primary-light: #e8f5e9;
            --accent: #f5a623;
            --accent-dark: #d4891a;
            --accent-light: #fff8e1;
            --bg: #f7f8f9;
            --surface: #ffffff;
            --text: #1c1e21;
            --text-secondary: #5f6368;
            --text-weak: #8a8d91;
            --border: #e0e3e7;
            --border-light: #eef0f3;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
            --radius-xs: 6px;
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.18s ease;
            --transition-normal: 0.28s ease;
            --transition-slow: 0.4s ease;
            --max-width: 1260px;
            --nav-height: 64px;
            --channel-height: 50px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            margin: 0;
            padding: 0;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 16px;
            }
        }

        /* ========== HEADER ========== */
        .site-header {
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 20px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--primary);
            white-space: nowrap;
            letter-spacing: 0.02em;
            transition: color var(--transition-fast);
        }

        .brand-logo:hover {
            color: var(--primary-dark);
        }

        .brand-logo .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--primary);
            border-radius: var(--radius-xs);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .header-search {
            display: flex;
            align-items: center;
            gap: 0;
            background: var(--bg);
            border-radius: 30px;
            padding: 0 6px 0 18px;
            border: 1.5px solid transparent;
            transition: all var(--transition-fast);
            flex: 0 1 340px;
        }

        .header-search:focus-within {
            border-color: var(--primary);
            background: var(--surface);
            box-shadow: 0 0 0 4px rgba(26, 86, 50, 0.06);
        }

        .header-search input {
            border: none;
            background: transparent;
            padding: 10px 0;
            font-size: 0.95rem;
            outline: none;
            flex: 1;
            min-width: 0;
            color: var(--text);
        }

        .header-search input::placeholder {
            color: var(--text-weak);
        }

        .header-search button {
            background: var(--primary);
            border: none;
            color: #fff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: background var(--transition-fast);
            flex-shrink: 0;
        }

        .header-search button:hover {
            background: var(--primary-dark);
        }

        @media (max-width: 768px) {
            .header-search {
                display: none;
            }
            .header-inner {
                gap: 12px;
            }
        }

        @media (max-width: 520px) {
            .brand-logo {
                font-size: 1.1rem;
            }
            .brand-logo .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
        }

        /* ========== CHANNEL BAR ========== */
        .channel-bar {
            background: var(--surface);
            border-bottom: 1px solid var(--border-light);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            position: sticky;
            top: var(--nav-height);
            z-index: 999;
        }

        .channel-bar::-webkit-scrollbar {
            display: none;
        }

        .channel-bar-inner {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0 4px;
            min-width: max-content;
        }

        .channel-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 18px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px 6px 0 0;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            cursor: pointer;
            border-bottom: 3px solid transparent;
        }

        .channel-link:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .channel-link.active {
            color: var(--primary);
            font-weight: 600;
            border-bottom-color: var(--primary);
            background: transparent;
        }

        .channel-link .ch-icon {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .channel-link {
                padding: 10px 14px;
                font-size: 0.82rem;
                gap: 4px;
            }
            .channel-link .ch-icon {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 520px) {
            .channel-link {
                padding: 9px 10px;
                font-size: 0.78rem;
                gap: 3px;
            }
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            position: relative;
            background: url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            min-height: 280px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26, 86, 50, 0.85) 0%, rgba(15, 61, 33, 0.75) 50%, rgba(0, 0, 0, 0.65) 100%);
            z-index: 1;
        }

        .page-banner-content {
            position: relative;
            z-index: 2;
            color: #fff;
            padding: 48px 0;
        }

        .page-banner-content .badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .page-banner-content .badge-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            color: #fff;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .page-banner-content h1 {
            font-family: var(--font-heading);
            font-size: 2.4rem;
            font-weight: 700;
            margin: 0 0 12px;
            letter-spacing: 0.02em;
            line-height: 1.25;
        }

        .page-banner-content .banner-sub {
            font-size: 1.05rem;
            opacity: 0.9;
            margin: 0;
            max-width: 580px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .page-banner {
                min-height: 220px;
            }
            .page-banner-content h1 {
                font-size: 1.7rem;
            }
            .page-banner-content .banner-sub {
                font-size: 0.9rem;
            }
            .page-banner-content {
                padding: 32px 0;
            }
        }

        @media (max-width: 520px) {
            .page-banner {
                min-height: 190px;
            }
            .page-banner-content h1 {
                font-size: 1.4rem;
            }
            .page-banner-content .banner-sub {
                font-size: 0.82rem;
            }
            .page-banner-content .badge-tag {
                font-size: 0.72rem;
                padding: 4px 10px;
            }
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: 56px 0;
        }

        .section-sm {
            padding: 40px 0;
        }

        .section-alt {
            background: var(--surface);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .section-dark {
            background: #1a1f24;
            color: #e8eaed;
        }

        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 1.55rem;
            font-weight: 700;
            margin: 0;
            color: var(--text);
            letter-spacing: 0.02em;
            position: relative;
            padding-left: 16px;
            border-left: 4px solid var(--primary);
            line-height: 1.3;
        }

        .section-header .section-more {
            font-size: 0.88rem;
            color: var(--primary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }

        .section-header .section-more:hover {
            color: var(--primary-dark);
        }

        @media (max-width: 520px) {
            .section {
                padding: 36px 0;
            }
            .section-header h2 {
                font-size: 1.25rem;
                padding-left: 12px;
                border-left-width: 3px;
            }
            .section-header {
                margin-bottom: 20px;
            }
        }

        /* ========== LIVE NOW CARDS ========== */
        .live-now-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }

        .live-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-normal);
            position: relative;
        }

        .live-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            border-color: var(--border);
        }

        .live-card .live-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 3;
            background: #e53935;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 14px;
            letter-spacing: 0.04em;
            animation: livePulse 1.8s ease-in-out infinite;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .live-card .live-badge::before {
            content: '';
            width: 7px;
            height: 7px;
            background: #fff;
            border-radius: 50%;
            display: inline-block;
            animation: liveDot 1.8s ease-in-out infinite;
        }

        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.5);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(229, 57, 53, 0);
            }
        }

        @keyframes liveDot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        .live-card-thumb {
            position: relative;
            height: 180px;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .live-card-thumb::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
            z-index: 1;
        }

        .live-card-body {
            padding: 18px 20px 20px;
            position: relative;
            z-index: 2;
        }

        .live-card-body .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 10px;
        }

        .live-card-body .team-name {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text);
            text-align: center;
            flex: 1;
            line-height: 1.3;
        }

        .live-card-body .score {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary);
            flex-shrink: 0;
            letter-spacing: 0.04em;
        }

        .live-card-body .match-info {
            font-size: 0.82rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .live-card-body .match-info span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .live-card .live-card-action {
            display: block;
            text-align: center;
            padding: 11px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 0 0 var(--radius-md) var(--radius-md);
            transition: background var(--transition-fast);
            margin: 0;
            letter-spacing: 0.03em;
        }

        .live-card .live-card-action:hover {
            background: var(--primary-dark);
            color: #fff;
        }

        @media (max-width: 768px) {
            .live-now-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .live-card-thumb {
                height: 150px;
            }
            .live-card-body .score {
                font-size: 1.3rem;
            }
        }

        /* ========== SCHEDULE TABLE ========== */
        .schedule-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--surface);
            min-width: 700px;
        }

        .schedule-table thead th {
            background: #f0f3f5;
            padding: 14px 16px;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-secondary);
            text-align: left;
            white-space: nowrap;
            border-bottom: 2px solid var(--border);
            letter-spacing: 0.03em;
        }

        .schedule-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
        }

        .schedule-table tbody tr {
            transition: background var(--transition-fast);
        }

        .schedule-table tbody tr:hover {
            background: #fafbfc;
        }

        .schedule-table .match-cell {
            font-weight: 500;
            color: var(--text);
        }

        .schedule-table .time-cell {
            font-weight: 600;
            color: var(--primary);
            white-space: nowrap;
        }

        .schedule-table .status-tag {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }

        .status-upcoming {
            background: #e3f2fd;
            color: #1565c0;
        }

        .status-live-mini {
            background: #ffebee;
            color: #c62828;
        }

        @media (max-width: 768px) {
            .schedule-table thead th,
            .schedule-table tbody td {
                padding: 10px 12px;
                font-size: 0.78rem;
            }
        }

        /* ========== LEAGUE GRID ========== */
        .league-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 18px;
        }

        .league-card {
            background: var(--surface);
            border-radius: var(--radius-sm);
            padding: 22px 20px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .league-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--primary);
            background: #fafff9;
        }

        .league-card .league-icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--primary);
            transition: all var(--transition-normal);
            flex-shrink: 0;
        }

        .league-card:hover .league-icon-circle {
            background: var(--primary);
            color: #fff;
            transform: scale(1.06);
        }

        .league-card h4 {
            font-weight: 600;
            font-size: 1rem;
            margin: 0;
            color: var(--text);
            letter-spacing: 0.02em;
        }

        .league-card .league-count {
            font-size: 0.8rem;
            color: var(--text-weak);
        }

        @media (max-width: 520px) {
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .league-card {
                padding: 16px 12px;
                gap: 6px;
            }
            .league-card .league-icon-circle {
                width: 46px;
                height: 46px;
                font-size: 1.2rem;
            }
            .league-card h4 {
                font-size: 0.88rem;
            }
        }

        /* ========== PREVIEW CARDS ========== */
        .preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .preview-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
        }

        .preview-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .preview-card-img {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .preview-card-img .date-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: #fff;
            padding: 20px 16px 12px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.03em;
        }

        .preview-card-body {
            padding: 16px 18px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .preview-card-body h4 {
            font-weight: 600;
            font-size: 1rem;
            margin: 0;
            color: var(--text);
            line-height: 1.4;
        }

        .preview-card-body p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.55;
        }

        .preview-card-body .preview-meta {
            font-size: 0.78rem;
            color: var(--text-weak);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .preview-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .preview-card-img {
                height: 140px;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 780px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--surface);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-sm);
        }

        .faq-item summary {
            padding: 18px 20px;
            font-weight: 600;
            font-size: 0.98rem;
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: var(--text);
            letter-spacing: 0.02em;
            transition: color var(--transition-fast);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary .faq-icon {
            flex-shrink: 0;
            transition: transform var(--transition-normal);
            color: var(--text-weak);
            font-size: 0.85rem;
        }

        .faq-item[open] summary .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-item[open] summary {
            color: var(--primary);
        }

        .faq-item .faq-answer {
            padding: 0 20px 18px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-item:hover {
            border-color: var(--border);
        }

        @media (max-width: 520px) {
            .faq-item summary {
                padding: 14px 16px;
                font-size: 0.88rem;
            }
            .faq-item .faq-answer {
                padding: 0 16px 14px;
                font-size: 0.82rem;
            }
        }

        /* ========== CTA ========== */
        .cta-block {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-lg);
            padding: 44px 36px;
            text-align: center;
            color: #fff;
            box-shadow: var(--shadow-lg);
        }

        .cta-block h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 10px;
            letter-spacing: 0.03em;
        }

        .cta-block p {
            font-size: 0.95rem;
            opacity: 0.9;
            margin: 0 0 22px;
            line-height: 1.6;
        }

        .btn-primary-cta {
            display: inline-block;
            background: #fff;
            color: var(--primary-dark);
            font-weight: 700;
            padding: 13px 32px;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: all var(--transition-normal);
            letter-spacing: 0.04em;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
        }

        .btn-primary-cta:hover {
            background: #f0f4f0;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
            color: var(--primary-dark);
        }

        @media (max-width: 520px) {
            .cta-block {
                padding: 30px 20px;
                border-radius: var(--radius-md);
            }
            .cta-block h3 {
                font-size: 1.2rem;
            }
            .btn-primary-cta {
                padding: 11px 26px;
                font-size: 0.88rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #1a1f24;
            color: rgba(255, 255, 255, 0.75);
            padding: 48px 0 0;
            font-size: 0.88rem;
            line-height: 1.8;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col h4 {
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            margin: 0 0 14px;
            letter-spacing: 0.03em;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 6px;
        }

        .footer-col ul li a,
        .footer-col ul li span {
            color: rgba(255, 255, 255, 0.6);
            transition: color var(--transition-fast);
            font-size: 0.84rem;
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            padding: 20px 0 24px;
            text-align: center;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.45);
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: center;
        }

        .footer-bottom .footer-brand {
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.03em;
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
            justify-content: center;
            font-size: 0.76rem;
        }

        .footer-bottom-links li a,
        .footer-bottom-links li span {
            color: rgba(255, 255, 255, 0.45);
            transition: color var(--transition-fast);
            cursor: default;
        }

        .footer-bottom-links li a:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .site-footer {
                padding: 32px 0 0;
            }
            .footer-bottom {
                font-size: 0.7rem;
            }
        }

        /* ========== UTILITY ========== */
        .text-center {
            text-align: center;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .highlight-num {
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--primary);
        }

/* roulang page: category3 */
:root {
            --color-primary: #1a7a3a;
            --color-primary-dark: #145e2d;
            --color-primary-light: #e8f5ec;
            --color-accent: #e8a817;
            --color-accent-dark: #c48e14;
            --color-accent-light: #fef9ec;
            --color-bg: #f5f5f0;
            --color-surface: #ffffff;
            --color-text: #1e1e24;
            --color-text-secondary: #5c5c66;
            --color-text-muted: #8a8a94;
            --color-border: #e0e0d8;
            --color-border-light: #eeece4;
            --color-dark-bg: #1a1a24;
            --color-dark-surface: #23232e;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.13);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-slow: 0.4s ease;
            --section-gap: 64px;
            --section-gap-sm: 40px;
            --container-max: 1240px;
            --container-narrow: 960px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text);
            background: var(--color-bg);
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-primary-dark);
            text-decoration: none;
        }
        a:focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 3px;
            border-radius: 3px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: var(--font-body);
        }
        button:focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 3px;
            border-radius: 3px;
        }

        input,
        select,
        textarea {
            font-family: var(--font-body);
        }
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
            border-radius: 3px;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        .container-narrow {
            max-width: var(--container-narrow);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER ========== */
        .site-header {
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border-light);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-xs);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 24px;
            max-width: var(--container-max);
            margin: 0 auto;
            gap: 20px;
        }
        .brand-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-logo-icon {
            width: 42px;
            height: 42px;
            background: var(--color-primary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            flex-shrink: 0;
        }
        .brand-name {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--color-text);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .brand-name a {
            color: inherit;
            text-decoration: none;
        }
        .brand-name a:hover {
            color: var(--color-primary);
        }
        .header-search {
            display: flex;
            align-items: center;
            gap: 0;
            background: var(--color-bg);
            border-radius: 999px;
            padding: 0 6px 0 16px;
            border: 1px solid var(--color-border-light);
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
            max-width: 280px;
            flex: 1;
            min-width: 180px;
        }
        .header-search:focus-within {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(26, 122, 58, 0.08);
        }
        .header-search input {
            border: none;
            background: transparent;
            padding: 9px 4px;
            font-size: 0.9rem;
            color: var(--color-text);
            width: 100%;
            outline: none;
        }
        .header-search input::placeholder {
            color: var(--color-text-muted);
        }
        .header-search button {
            background: var(--color-primary);
            border: none;
            color: #fff;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            flex-shrink: 0;
            font-size: 0.85rem;
            transition: background var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .header-search button:hover {
            background: var(--color-primary-dark);
        }

        /* ========== CHANNEL BAR ========== */
        .channel-bar {
            background: var(--color-dark-bg);
            border-bottom: 2px solid rgba(255, 255, 255, 0.06);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            position: sticky;
            top: 68px;
            z-index: 99;
        }
        .channel-bar::-webkit-scrollbar {
            display: none;
        }
        .channel-bar-inner {
            display: flex;
            align-items: center;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 16px;
            gap: 2px;
            min-width: max-content;
        }
        .channel-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 16px;
            color: rgba(255, 255, 255, 0.78);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
            transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
            border-radius: 4px 4px 0 0;
            letter-spacing: 0.3px;
        }
        .channel-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }
        .channel-link.active {
            color: #fff;
            border-bottom-color: var(--color-accent);
            font-weight: 600;
            background: rgba(255, 255, 255, 0.03);
        }
        .ch-icon {
            font-size: 0.85rem;
            width: 20px;
            text-align: center;
            opacity: 0.85;
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            background: var(--color-dark-bg);
            position: relative;
            overflow: hidden;
            padding: 50px 0;
            min-height: 260px;
            display: flex;
            align-items: center;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: 0.22;
            z-index: 0;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26, 26, 36, 0.7) 0%, rgba(26, 26, 36, 0.92) 100%);
            z-index: 1;
        }
        .page-banner-content {
            position: relative;
            z-index: 2;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
        }
        .page-banner-badge {
            display: inline-block;
            background: var(--color-accent);
            color: #1a1a24;
            font-weight: 700;
            font-size: 0.8rem;
            padding: 5px 14px;
            border-radius: 999px;
            letter-spacing: 0.6px;
            margin-bottom: 14px;
            text-transform: uppercase;
        }
        .page-banner h1 {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 10px;
            letter-spacing: 0.8px;
            line-height: 1.2;
        }
        .page-banner-desc {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: var(--section-gap) 0;
        }
        .section-sm {
            padding: var(--section-gap-sm) 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 36px;
        }
        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-text);
            margin: 0 0 8px;
            letter-spacing: 0.5px;
        }
        .section-header .section-subtitle {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin: 0;
            max-width: 500px;
            margin: 0 auto;
        }
        .section-divider {
            width: 50px;
            height: 3px;
            background: var(--color-accent);
            border-radius: 2px;
            margin: 12px auto 0;
        }

        /* ========== CARDS ========== */
        .team-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--color-border-light);
        }
        .team-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .team-card-img {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #e8e8e0;
        }
        .team-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .team-card:hover .team-card-img img {
            transform: scale(1.04);
        }
        .team-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--color-accent);
            color: #1a1a24;
            font-weight: 700;
            font-size: 0.72rem;
            padding: 4px 10px;
            border-radius: 999px;
            letter-spacing: 0.5px;
            z-index: 2;
        }
        .team-card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .team-card-body h3 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--color-text);
            margin: 0 0 8px;
            line-height: 1.4;
        }
        .team-card-body h3 a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .team-card-body h3 a:hover {
            color: var(--color-primary);
        }
        .team-card-meta {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-bottom: 10px;
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .team-card-excerpt {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.6;
            flex: 1;
            margin-bottom: 12px;
        }
        .team-card-link {
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--color-primary);
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap var(--transition-fast);
        }
        .team-card-link:hover {
            gap: 9px;
            color: var(--color-primary-dark);
        }
        .team-card-link i {
            font-size: 0.7rem;
        }

        /* ========== NEWS LIST ========== */
        .news-list-item {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 18px 0;
            border-bottom: 1px solid var(--color-border-light);
            transition: background var(--transition-fast);
            border-radius: var(--radius-sm);
            padding-left: 12px;
            padding-right: 12px;
            margin: 0 -12px;
        }
        .news-list-item:last-child {
            border-bottom: none;
        }
        .news-list-item:hover {
            background: rgba(26, 122, 58, 0.03);
        }
        .news-list-thumb {
            width: 90px;
            height: 64px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: #e8e8e0;
        }
        .news-list-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-list-content {
            flex: 1;
            min-width: 0;
        }
        .news-list-content h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-text);
            margin: 0 0 4px;
            line-height: 1.4;
        }
        .news-list-content h4 a {
            color: inherit;
            text-decoration: none;
        }
        .news-list-content h4 a:hover {
            color: var(--color-primary);
        }
        .news-list-meta {
            font-size: 0.78rem;
            color: var(--color-text-muted);
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .news-list-tag {
            display: inline-block;
            font-size: 0.7rem;
            padding: 2px 8px;
            background: var(--color-primary-light);
            color: var(--color-primary-dark);
            border-radius: 999px;
            font-weight: 600;
            white-space: nowrap;
        }

        /* ========== FEATURED BLOCK ========== */
        .featured-block {
            background: var(--color-surface);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 1px solid var(--color-border-light);
        }
        .featured-block-img {
            aspect-ratio: 4/3;
            overflow: hidden;
            background: #e8e8e0;
            min-height: 280px;
        }
        .featured-block-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .featured-block:hover .featured-block-img img {
            transform: scale(1.03);
        }
        .featured-block-body {
            padding: 32px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .featured-block-body .featured-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            background: var(--color-accent-light);
            color: var(--color-accent-dark);
            padding: 4px 12px;
            border-radius: 999px;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            width: fit-content;
        }
        .featured-block-body h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text);
            margin: 0 0 10px;
            line-height: 1.35;
        }
        .featured-block-body p {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin: 0 0 16px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 22px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            text-decoration: none;
            letter-spacing: 0.3px;
        }
        .btn-primary {
            background: var(--color-primary);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--color-primary-dark);
            color: #fff;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }
        .btn-outline:hover {
            background: var(--color-primary);
            color: #fff;
            box-shadow: var(--shadow-sm);
        }
        .btn-accent {
            background: var(--color-accent);
            color: #1a1a24;
        }
        .btn-accent:hover {
            background: var(--color-accent-dark);
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }

        /* ========== STAT CARDS ========== */
        .stat-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            text-align: center;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--color-border-light);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }
        .stat-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .stat-card .stat-icon {
            font-size: 2rem;
            color: var(--color-accent);
            margin-bottom: 8px;
        }
        .stat-card .stat-number {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-text);
            letter-spacing: 0.5px;
            line-height: 1;
        }
        .stat-card .stat-label {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            margin-top: 4px;
        }
        .stat-card .stat-change {
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 2px;
        }
        .stat-change.up {
            color: #1a7a3a;
        }
        .stat-change.down {
            color: #c0392b;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: box-shadow var(--transition-fast);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            padding: 16px 20px;
            font-weight: 600;
            font-size: 1rem;
            color: var(--color-text);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: background var(--transition-fast);
            gap: 12px;
        }
        .faq-question:hover {
            background: rgba(26, 122, 58, 0.03);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            transition: transform var(--transition-base);
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--color-primary);
        }
        .faq-answer {
            padding: 0 20px 16px;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: var(--color-dark-bg);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 0 24px;
            max-width: var(--container-max);
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.12;
            z-index: 0;
        }
        .cta-section>* {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: 1.7rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 8px;
        }
        .cta-section p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0 0 22px;
        }
        .cta-btns {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-dark-bg);
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 24px 28px;
            margin-top: var(--section-gap);
            border-top: 4px solid var(--color-primary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: var(--container-max);
            margin: 0 auto 36px;
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 14px;
            letter-spacing: 0.4px;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--color-accent);
        }
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-brand {
            font-weight: 700;
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-bottom-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .footer-bottom-links li a,
        .footer-bottom-links li span {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .footer-bottom-links li a:hover {
            color: var(--color-accent);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .featured-block {
                grid-template-columns: 1fr;
            }
            .featured-block-img {
                aspect-ratio: 16/9;
                min-height: 200px;
            }
            .featured-block-body {
                padding: 24px 20px;
            }
            .page-banner h1 {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .section {
                padding: 48px 0;
            }
            .cta-section {
                margin: 0 16px;
                padding: 36px 24px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
                gap: 10px;
                padding: 10px 16px;
            }
            .header-search {
                order: 3;
                max-width: 100%;
                flex-basis: 100%;
                min-width: 0;
            }
            .brand-name {
                font-size: 1.1rem;
            }
            .brand-logo-icon {
                width: 36px;
                height: 36px;
                font-size: 17px;
            }
            .channel-bar {
                top: 100px;
            }
            .channel-link {
                padding: 10px 12px;
                font-size: 0.8rem;
                gap: 4px;
            }
            .ch-icon {
                font-size: 0.75rem;
                width: 16px;
            }
            .page-banner {
                padding: 36px 0;
                min-height: 200px;
            }
            .page-banner h1 {
                font-size: 1.6rem;
            }
            .page-banner-desc {
                font-size: 0.9rem;
            }
            .section {
                padding: 36px 0;
            }
            .section-header h2 {
                font-size: 1.4rem;
            }
            .news-list-item {
                flex-direction: column;
                gap: 10px;
                padding: 14px 10px;
                margin: 0 -10px;
            }
            .news-list-thumb {
                width: 100%;
                height: 140px;
            }
            .featured-block-body h3 {
                font-size: 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .footer-bottom-links {
                justify-content: center;
            }
            .cta-section {
                margin: 0 12px;
                padding: 28px 18px;
            }
            .cta-section h2 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 16px;
            }
            .container-narrow {
                padding: 0 16px;
            }
            :root {
                --section-gap: 40px;
                --section-gap-sm: 28px;
            }
        }

        @media (max-width: 520px) {
            .page-banner h1 {
                font-size: 1.4rem;
            }
            .channel-link {
                padding: 9px 10px;
                font-size: 0.75rem;
                gap: 3px;
            }
            .ch-icon {
                font-size: 0.7rem;
                width: 14px;
            }
            .team-card-body h3 {
                font-size: 1rem;
            }
            .featured-block-body {
                padding: 18px 14px;
            }
            .featured-block-body h3 {
                font-size: 1.05rem;
            }
            .btn {
                font-size: 0.82rem;
                padding: 8px 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .stat-card .stat-number {
                font-size: 1.5rem;
            }
            .section-header h2 {
                font-size: 1.25rem;
            }
            .cta-btns {
                flex-direction: column;
                align-items: center;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #1a7a3a;
            --primary-dark: #145e2c;
            --primary-light: #2ecc5a;
            --accent: #e67e22;
            --accent-dark: #c96a1a;
            --accent-light: #f0a04b;
            --bg: #f5f6f8;
            --bg-white: #ffffff;
            --bg-dark: #1a1d23;
            --bg-card: #ffffff;
            --text: #1e293b;
            --text-secondary: #64748b;
            --text-light: #94a3b8;
            --text-white: #f1f5f9;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
            --transition: 0.22s ease;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --max-width: 1260px;
            --nav-height: 56px;
            --brand-height: 60px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-sans);
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0;
            line-height: 1.3;
            font-weight: 700;
            color: var(--text);
        }

        ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (max-width:640px) {
            .container {
                padding: 0 14px;
            }
        }

        /* ===== HEADER ===== */
        .site-header {
            background: var(--bg-white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            border-bottom: 1px solid var(--border);
        }

        .brand-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--brand-height);
            padding: 0 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .brand-logo i {
            font-size: 1.6rem;
            color: var(--accent);
        }

        .brand-logo:hover {
            color: var(--primary-dark);
        }

        .brand-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-search-toggle {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: var(--bg-white);
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            font-size: 1rem;
        }

        .btn-search-toggle:hover {
            background: var(--bg);
            color: var(--primary);
            border-color: var(--primary-light);
        }

        .mobile-menu-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: var(--bg-white);
            color: var(--text);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all var(--transition);
        }

        .mobile-menu-toggle:hover {
            background: var(--bg);
            color: var(--primary);
        }

        @media (max-width:880px) {
            .mobile-menu-toggle {
                display: flex;
            }
        }

        /* Channel Bar */
        .channel-bar {
            background: var(--bg-dark);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
        }

        .channel-bar::-webkit-scrollbar {
            height: 3px;
        }

        .channel-bar::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
        }

        .channel-bar-inner {
            display: flex;
            align-items: center;
            gap: 4px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 16px;
            min-width: max-content;
        }

        .channel-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 16px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: all var(--transition);
            letter-spacing: 0.3px;
            border-radius: 4px 4px 0 0;
        }

        .channel-link .ch-icon {
            font-size: 0.85rem;
            opacity: 0.7;
            transition: opacity var(--transition);
        }

        .channel-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }

        .channel-link:hover .ch-icon {
            opacity: 1;
        }

        .channel-link.active {
            color: #fff;
            border-bottom-color: var(--accent);
            background: rgba(255, 255, 255, 0.08);
            font-weight: 600;
        }

        .channel-link.active .ch-icon {
            opacity: 1;
            color: var(--accent-light);
        }

        @media (max-width:880px) {
            .channel-bar-inner {
                gap: 0;
                padding: 0 8px;
            }
            .channel-link {
                padding: 10px 12px;
                font-size: 0.82rem;
                gap: 4px;
            }
            .channel-link .ch-icon {
                font-size: 0.75rem;
            }
            .channel-bar-inner {
                flex-wrap: nowrap;
                overflow-x: auto;
            }
        }

        /* Mobile nav drawer */
        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 999;
            background: rgba(0, 0, 0, 0.55);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-nav-drawer.open {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-nav-drawer .drawer-panel {
            width: 280px;
            height: 100%;
            background: var(--bg-white);
            overflow-y: auto;
            padding: 20px 16px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .mobile-nav-drawer.open .drawer-panel {
            transform: translateX(0);
        }

        .drawer-close {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: var(--bg-white);
            cursor: pointer;
            margin-bottom: 16px;
            font-size: 1rem;
            transition: all var(--transition);
        }

        .drawer-close:hover {
            background: #fee;
            border-color: #e33;
            color: #e33;
        }

        .drawer-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 14px;
            border-radius: var(--radius);
            font-weight: 500;
            color: var(--text);
            transition: all var(--transition);
            font-size: 0.95rem;
            margin-bottom: 2px;
        }

        .drawer-link:hover {
            background: #f0fdf4;
            color: var(--primary);
        }

        .drawer-link.active {
            background: #e8f5e9;
            color: var(--primary-dark);
            font-weight: 700;
            box-shadow: inset 3px 0 0 var(--primary);
        }

        .drawer-link .ch-icon {
            width: 28px;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .drawer-link.active .ch-icon {
            color: var(--primary);
        }

        @media (max-width:880px) {
            .mobile-nav-drawer {
                display: block;
            }
        }

        /* ===== MAIN ===== */
        .main-content {
            flex: 1;
            padding-bottom: 0;
        }

        /* ===== PAGE BANNER ===== */
        .page-banner {
            position: relative;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            min-height: 300px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26, 30, 35, 0.88) 0%, rgba(26, 30, 35, 0.65) 50%, rgba(26, 30, 35, 0.78) 100%);
            z-index: 1;
        }

        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 40px 20px;
            width: 100%;
        }

        .page-banner .banner-badge {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .page-banner h1 {
            color: #fff;
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .page-banner .banner-sub {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            max-width: 600px;
            line-height: 1.6;
        }

        @media (max-width:768px) {
            .page-banner {
                min-height: 220px;
            }
            .page-banner h1 {
                font-size: 1.7rem;
            }
            .page-banner .banner-sub {
                font-size: 0.95rem;
            }
        }

        /* ===== SECTION ===== */
        .section {
            padding: 52px 0;
        }

        .section-sm {
            padding: 36px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 36px;
        }

        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .section-header .section-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 560px;
            margin: 0 auto;
        }

        .section-header.left-align {
            text-align: left;
        }

        .section-header.left-align .section-subtitle {
            margin: 0;
        }

        @media (max-width:768px) {
            .section {
                padding: 34px 0;
            }
            .section-header h2 {
                font-size: 1.45rem;
            }
        }

        /* ===== CARDS ===== */
        .card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: #dce8df;
        }

        .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #e8ecef;
        }

        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .card:hover .card-img-wrap img {
            transform: scale(1.04);
        }

        .card-body {
            padding: 18px 16px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 14px;
            margin-bottom: 8px;
            letter-spacing: 0.4px;
        }

        .card-tag.green {
            background: #e8f5e9;
            color: #1a7a3a;
        }

        .card-tag.orange {
            background: #fff3e0;
            color: #e67e22;
        }

        .card-tag.blue {
            background: #e3f2fd;
            color: #1e6fbf;
        }

        .card-tag.red {
            background: #fdecea;
            color: #c0392b;
        }

        .card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.4;
            color: var(--text);
        }

        .card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0 0 10px;
            line-height: 1.55;
            flex: 1;
        }

        .card-meta {
            font-size: 0.8rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .card-link {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: auto;
            transition: color var(--transition);
        }

        .card-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* ===== MATCH CARD ===== */
        .match-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            padding: 18px 16px;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .match-card:hover {
            box-shadow: var(--shadow-md);
            border-color: #dce8df;
            transform: translateY(-2px);
        }

        .match-card .match-time {
            background: var(--bg-dark);
            color: #fff;
            padding: 10px 14px;
            border-radius: var(--radius);
            text-align: center;
            min-width: 70px;
            font-weight: 700;
            font-size: 0.9rem;
            line-height: 1.3;
        }

        .match-card .match-time .day {
            font-size: 1.4rem;
            display: block;
            font-weight: 800;
        }

        .match-card .match-info {
            flex: 1;
            min-width: 180px;
        }

        .match-card .match-teams {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }

        .match-card .match-league {
            font-size: 0.8rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .match-card .match-status {
            padding: 5px 12px;
            border-radius: 16px;
            font-weight: 600;
            font-size: 0.8rem;
            white-space: nowrap;
        }

        .match-status.upcoming {
            background: #fff3e0;
            color: #e67e22;
        }

        .match-status.live {
            background: #fdecea;
            color: #c0392b;
            animation: pulse-dot 1.5s infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .match-status.finished {
            background: #e8f5e9;
            color: #1a7a3a;
        }

        /* ===== LEAGUE TABLE STRIP ===== */
        .league-strip {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .league-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 28px;
            background: var(--bg-white);
            border: 2px solid var(--border);
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            font-size: 0.9rem;
            color: var(--text);
            white-space: nowrap;
        }

        .league-chip:hover {
            border-color: var(--primary-light);
            background: #f0fdf4;
            color: var(--primary-dark);
            box-shadow: var(--shadow-sm);
        }

        .league-chip.active-chip {
            border-color: var(--primary);
            background: #e8f5e9;
            color: var(--primary-dark);
            font-weight: 700;
            box-shadow: var(--shadow-sm);
        }

        .league-chip .chip-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, #1a7a3a 0%, #145e2c 40%, #0f4a22 100%);
            color: #fff;
            padding: 52px 0;
            text-align: center;
            border-radius: 0;
        }

        .cta-section h2 {
            color: #fff;
            font-size: 1.7rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 500px;
            margin: 0 auto 20px;
            font-size: 1rem;
        }

        .btn-cta {
            display: inline-block;
            padding: 13px 30px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.4px;
            cursor: pointer;
            transition: all var(--transition);
            text-align: center;
            border: none;
        }

        .btn-cta.primary {
            background: #fff;
            color: var(--primary-dark);
        }

        .btn-cta.primary:hover {
            background: #e8f5e9;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .btn-cta.accent {
            background: var(--accent);
            color: #fff;
        }

        .btn-cta.accent:hover {
            background: var(--accent-dark);
            box-shadow: 0 6px 24px rgba(230, 126, 34, 0.35);
            transform: translateY(-2px);
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: #c8d6c8;
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 16px 20px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            user-select: none;
            color: var(--text);
            transition: color var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .faq-icon {
            transition: transform 0.3s ease;
            font-size: 0.85rem;
            color: var(--text-secondary);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            padding: 0 20px 18px;
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.7;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--bg-dark);
            color: rgba(255, 255, 255, 0.75);
            padding: 48px 20px 0;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            max-width: var(--max-width);
            margin: 0 auto 36px;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a,
        .footer-col ul li span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.88rem;
            transition: color var(--transition);
            cursor: default;
        }

        .footer-col ul li a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding: 20px 0;
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-brand {
            color: #fff;
            font-weight: 700;
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-bottom-links li a,
        .footer-bottom-links li span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
            cursor: default;
            transition: color var(--transition);
        }

        .footer-bottom-links li a:hover {
            color: #fff;
        }

        .footer-friends {
            max-width: var(--max-width);
            margin: 0 auto 20px;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.4);
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

        .footer-friends span {
            cursor: default;
            transition: color var(--transition);
        }

        .footer-friends span:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width:768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .footer-bottom-links {
                justify-content: center;
            }
        }

        @media (max-width:480px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .footer-col h4 {
                font-size: 0.9rem;
            }
            .footer-col ul li a,
            .footer-col ul li span {
                font-size: 0.78rem;
            }
        }

        /* ===== UTILITY ===== */
        .text-center {
            text-align: center;
        }

        .mt-0 {
            margin-top: 0;
        }
        .mt-2 {
            margin-top: 8px;
        }
        .mt-3 {
            margin-top: 16px;
        }
        .mt-4 {
            margin-top: 24px;
        }
        .mb-2 {
            margin-bottom: 8px;
        }
        .mb-3 {
            margin-bottom: 16px;
        }
        .mb-4 {
            margin-bottom: 24px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        @media (max-width:1024px) {
            .hide-tablet {
                display: none !important;
            }
        }

        @media (max-width:640px) {
            .hide-mobile {
                display: none !important;
            }
            .match-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .match-card .match-time {
                min-width: auto;
                padding: 8px 14px;
            }
            .match-card .match-time .day {
                font-size: 1.1rem;
                display: inline;
            }
        }

/* roulang page: category4 */
:root {
            --color-primary: #1a6b3c;
            --color-primary-dark: #0f4d2a;
            --color-primary-light: #2e8b57;
            --color-accent: #e8a817;
            --color-accent-dark: #c48f14;
            --color-bg: #f6f8f5;
            --color-surface: #ffffff;
            --color-text: #1a1a1a;
            --color-text-secondary: #5a5a5a;
            --color-text-muted: #8a8a8a;
            --color-border: #e0e4df;
            --color-border-light: #eef0ec;
            --color-danger: #c0392b;
            --color-success: #27ae60;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 14px 44px rgba(0, 0, 0, 0.12);
            --spacing-xs: 0.5rem;
            --spacing-sm: 0.75rem;
            --spacing-md: 1.25rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-2xl: 4.5rem;
            --font-sans: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --transition-fast: 0.18s ease;
            --transition-base: 0.25s ease;
            --transition-slow: 0.35s ease;
            --max-width: 1200px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.7;
            background: var(--color-bg);
            color: var(--color-text);
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--color-primary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        :focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        .container-wide {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        .container-narrow {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        /* ========== HEADER ========== */
        .site-header {
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border-light);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.7rem 0;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .brand-area {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            flex-shrink: 0;
        }

        .brand-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .brand-name {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--color-text);
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        .brand-name span {
            color: var(--color-primary);
        }

        .header-search {
            display: flex;
            align-items: center;
            gap: 0;
            flex-shrink: 0;
        }

        .header-search input {
            border: 1.5px solid var(--color-border);
            border-right: none;
            border-radius: var(--radius-md) 0 0 var(--radius-md);
            padding: 0.5rem 0.9rem;
            font-size: 0.9rem;
            width: 200px;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
            background: var(--color-bg);
            color: var(--color-text);
        }

        .header-search input:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.08);
        }

        .header-search button {
            border: 1.5px solid var(--color-primary);
            background: var(--color-primary);
            color: #fff;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            padding: 0.5rem 0.85rem;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background var(--transition-fast);
            white-space: nowrap;
        }

        .header-search button:hover {
            background: var(--color-primary-dark);
        }

        /* ========== CHANNEL BAR ========== */
        .channel-bar {
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border-light);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: #ccc transparent;
        }

        .channel-bar::-webkit-scrollbar {
            height: 4px;
        }

        .channel-bar::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 4px;
        }

        .channel-bar-inner {
            display: flex;
            align-items: center;
            gap: 0.15rem;
            padding: 0.35rem 0;
            min-width: max-content;
            flex-wrap: nowrap;
        }

        .channel-link {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.5rem 0.85rem;
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
            cursor: pointer;
            border: 1.5px solid transparent;
            background: transparent;
            text-decoration: none;
        }

        .channel-link:hover {
            color: var(--color-primary);
            background: rgba(26, 107, 60, 0.04);
            border-color: rgba(26, 107, 60, 0.15);
            text-decoration: none;
        }

        .channel-link.active {
            color: #fff;
            background: var(--color-primary);
            border-color: var(--color-primary);
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }

        .channel-link.active:hover {
            color: #fff;
            background: var(--color-primary-dark);
            border-color: var(--color-primary-dark);
        }

        .ch-icon {
            font-size: 0.8rem;
            opacity: 0.85;
        }

        .channel-link.active .ch-icon {
            opacity: 1;
        }

        /* ========== PAGE HERO ========== */
        .page-hero {
            position: relative;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            padding: 4rem 0;
            text-align: center;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 30, 18, 0.82) 0%, rgba(10, 25, 16, 0.9) 100%);
            z-index: 1;
        }

        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .page-hero .hero-badge {
            display: inline-block;
            background: var(--color-accent);
            color: #1a1a1a;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 0.8rem;
        }

        .page-hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 0 0.6rem;
            letter-spacing: -0.01em;
            color: #fff;
        }

        .page-hero .hero-subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.82);
            max-width: 600px;
            margin: 0 auto 1.2rem;
            line-height: 1.6;
        }

        .page-hero .hero-update {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.65);
            background: rgba(255, 255, 255, 0.08);
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
        }

        .page-hero .hero-update i {
            color: var(--color-accent);
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: var(--spacing-2xl) 0;
        }

        .section-alt {
            background: var(--color-surface);
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }

        .section-header h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--color-text);
            margin: 0 0 0.4rem;
            letter-spacing: -0.01em;
        }

        .section-header .section-divider {
            display: inline-block;
            width: 48px;
            height: 3px;
            background: var(--color-primary);
            border-radius: 3px;
            margin: 0.5rem 0;
        }

        .section-header p {
            color: var(--color-text-secondary);
            font-size: 0.95rem;
            max-width: 550px;
            margin: 0 auto;
        }

        /* ========== STANDINGS TABLE ========== */
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            background: var(--color-surface);
            border: 1px solid var(--color-border-light);
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 750px;
            font-size: 0.9rem;
        }

        .standings-table thead th {
            background: var(--color-primary);
            color: #fff;
            padding: 0.8rem 0.7rem;
            font-weight: 600;
            text-align: center;
            font-size: 0.8rem;
            letter-spacing: 0.03em;
            white-space: nowrap;
            position: sticky;
            top: 0;
        }

        .standings-table tbody td {
            padding: 0.7rem 0.7rem;
            text-align: center;
            border-bottom: 1px solid var(--color-border-light);
            vertical-align: middle;
        }

        .standings-table tbody tr {
            transition: background var(--transition-fast);
        }

        .standings-table tbody tr:hover {
            background: rgba(26, 107, 60, 0.04);
        }

        .standings-table tbody tr:last-child td {
            border-bottom: none;
        }

        .standings-table .rank-col {
            font-weight: 700;
            font-size: 1rem;
            width: 50px;
        }

        .standings-table .team-col {
            text-align: left;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .standings-table .team-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .standings-table .pts-col {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--color-primary);
        }

        .standings-table .form-indicator {
            display: inline-flex;
            gap: 3px;
        }

        .standings-table .form-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            display: inline-block;
        }

        .form-dot.win {
            background: #27ae60;
        }
        .form-dot.draw {
            background: #8a8a8a;
        }
        .form-dot.loss {
            background: #c0392b;
        }

        .rank-top4 {
            background: rgba(26, 107, 60, 0.03);
        }

        .standings-note {
            text-align: right;
            font-size: 0.78rem;
            color: var(--color-text-muted);
            margin-top: 0.5rem;
            padding: 0 0.3rem;
        }

        /* ========== SCORER LIST ========== */
        .scorer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: var(--spacing-md);
        }

        .scorer-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 1.1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            cursor: default;
        }

        .scorer-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--color-border);
        }

        .scorer-rank {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
            color: #fff;
        }

        .scorer-rank.r1 {
            background: linear-gradient(135deg, #f39c12, #e8a817);
        }
        .scorer-rank.r2 {
            background: linear-gradient(135deg, #8e9eab, #7f8c8d);
        }
        .scorer-rank.r3 {
            background: linear-gradient(135deg, #cd7f32, #b87333);
        }
        .scorer-rank.rn {
            background: var(--color-primary);
        }

        .scorer-info {
            flex: 1;
            min-width: 0;
        }
        .scorer-info .scorer-name {
            font-weight: 600;
            font-size: 1rem;
            color: var(--color-text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .scorer-info .scorer-team {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-top: 0.1rem;
        }
        .scorer-goals {
            text-align: right;
            flex-shrink: 0;
        }
        .scorer-goals .goals-num {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-primary);
            line-height: 1;
        }
        .scorer-goals .goals-label {
            font-size: 0.72rem;
            color: var(--color-text-muted);
        }

        /* ========== TEAM STATS CARDS ========== */
        .team-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: var(--spacing-md);
        }

        .team-stat-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 1.3rem 1.3rem;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            cursor: default;
        }

        .team-stat-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .team-stat-card .tsc-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.8rem;
        }
        .team-stat-card .tsc-team-name {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--color-text);
        }
        .team-stat-card .tsc-badge {
            font-size: 0.7rem;
            padding: 0.2rem 0.55rem;
            border-radius: 12px;
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        .badge-attack {
            background: #fef3e2;
            color: #c48f14;
        }
        .badge-defense {
            background: #e8f5e9;
            color: #1a6b3c;
        }
        .badge-balanced {
            background: #e3f2fd;
            color: #1565c0;
        }

        .team-stat-card .tsc-stat-row {
            display: flex;
            justify-content: space-between;
            padding: 0.35rem 0;
            border-bottom: 1px dotted var(--color-border-light);
            font-size: 0.85rem;
        }
        .team-stat-card .tsc-stat-row:last-child {
            border-bottom: none;
        }
        .team-stat-card .tsc-stat-val {
            font-weight: 600;
            color: var(--color-text);
        }

        /* ========== TREND SECTION ========== */
        .trend-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: var(--spacing-lg);
        }

        .trend-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 1.4rem;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
        }

        .trend-card:hover {
            box-shadow: var(--shadow-md);
        }

        .trend-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 1rem;
            color: var(--color-text);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .trend-card h3 i {
            color: var(--color-primary);
        }

        .trend-bar-wrap {
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }

        .trend-bar-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .trend-bar-label {
            width: 80px;
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            text-align: right;
            flex-shrink: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .trend-bar-track {
            flex: 1;
            height: 18px;
            background: #eef0ec;
            border-radius: 9px;
            overflow: hidden;
            position: relative;
        }
        .trend-bar-fill {
            height: 100%;
            border-radius: 9px;
            transition: width 0.6s ease;
        }
        .trend-bar-fill.high {
            background: linear-gradient(90deg, #1a6b3c, #2e8b57);
        }
        .trend-bar-fill.medium {
            background: linear-gradient(90deg, #e8a817, #f0c040);
        }
        .trend-bar-fill.low {
            background: linear-gradient(90deg, #c0392b, #e74c3c);
        }
        .trend-bar-val {
            width: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--color-text);
            text-align: left;
            flex-shrink: 0;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
            color: #fff;
            text-align: center;
            padding: var(--spacing-2xl) 0;
        }

        .cta-section h2 {
            font-size: 1.7rem;
            font-weight: 700;
            margin: 0 0 0.5rem;
            color: #fff;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.82);
            max-width: 520px;
            margin: 0 auto 1.5rem;
            font-size: 0.95rem;
        }
        .cta-section .cta-form {
            display: flex;
            gap: 0.5rem;
            max-width: 440px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-section .cta-form input {
            flex: 1;
            min-width: 200px;
            padding: 0.65rem 1rem;
            border-radius: var(--radius-md);
            border: none;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.95);
            color: var(--color-text);
        }
        .cta-section .cta-form input:focus {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
        }
        .cta-section .cta-form button {
            padding: 0.65rem 1.5rem;
            border-radius: var(--radius-md);
            border: none;
            background: var(--color-accent);
            color: #1a1a1a;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .cta-section .cta-form button:hover {
            background: var(--color-accent-dark);
            transform: translateY(-1px);
        }

        /* ========== FAQ ACCORDION ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            margin-bottom: 0.6rem;
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: box-shadow var(--transition-fast);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }
        .faq-item .faq-question {
            padding: 1rem 1.3rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.95rem;
            color: var(--color-text);
            user-select: none;
            transition: background var(--transition-fast);
        }
        .faq-item .faq-question:hover {
            background: rgba(26, 107, 60, 0.03);
        }
        .faq-item .faq-question i {
            transition: transform var(--transition-base);
            color: var(--color-primary);
            font-size: 0.85rem;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }
        .faq-item .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 1.3rem;
            color: var(--color-text-secondary);
            font-size: 0.88rem;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 1.3rem 1rem;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #1a1f1b;
            color: rgba(255, 255, 255, 0.8);
            padding: var(--spacing-2xl) 0 1.5rem;
            font-size: 0.88rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }
        .footer-col h4 {
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            margin: 0 0 0.8rem;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 0.4rem;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.84rem;
            transition: color var(--transition-fast);
            text-decoration: none;
        }
        .footer-col ul li a:hover {
            color: #fff;
            text-decoration: none;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 1.2rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .footer-brand {
            font-weight: 700;
            color: #fff;
        }
        .footer-bottom-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            justify-content: center;
        }
        .footer-bottom-links li a,
        .footer-bottom-links li span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.78rem;
            transition: color var(--transition-fast);
            text-decoration: none;
            cursor: default;
        }
        .footer-bottom-links li a[href] {
            cursor: pointer;
        }
        .footer-bottom-links li a[href]:hover {
            color: #fff;
            text-decoration: none;
        }
        .footer-friendly-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 0.4rem;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-friendly-links span {
            cursor: default;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .page-hero h1 {
                font-size: 2rem;
            }
            .page-hero {
                padding: 3rem 0;
            }
            .section {
                padding: 2.5rem 0;
            }
            .scorer-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
            .team-stats-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            .trend-grid {
                grid-template-columns: 1fr;
            }
            .header-search input {
                width: 150px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                align-items: stretch;
                gap: 0.5rem;
            }
            .brand-area {
                justify-content: center;
            }
            .header-search {
                justify-content: center;
            }
            .header-search input {
                width: 100%;
                flex: 1;
            }
            .page-hero h1 {
                font-size: 1.6rem;
            }
            .page-hero .hero-subtitle {
                font-size: 0.9rem;
            }
            .section-header h2 {
                font-size: 1.4rem;
            }
            .scorer-grid {
                grid-template-columns: 1fr;
                gap: 0.6rem;
            }
            .team-stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }
            .standings-table {
                font-size: 0.78rem;
                min-width: 600px;
            }
            .standings-table thead th {
                padding: 0.55rem 0.4rem;
                font-size: 0.7rem;
            }
            .standings-table tbody td {
                padding: 0.5rem 0.4rem;
                font-size: 0.76rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .cta-section h2 {
                font-size: 1.35rem;
            }
            .channel-link {
                padding: 0.4rem 0.6rem;
                font-size: 0.8rem;
            }
            .trend-bar-label {
                width: 60px;
                font-size: 0.72rem;
            }
        }

        @media (max-width: 520px) {
            .page-hero {
                padding: 2.2rem 0;
            }
            .page-hero h1 {
                font-size: 1.35rem;
            }
            .section {
                padding: 1.8rem 0;
            }
            .team-stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .cta-section .cta-form {
                flex-direction: column;
                align-items: stretch;
            }
            .cta-section .cta-form input,
            .cta-section .cta-form button {
                width: 100%;
                border-radius: var(--radius-md);
            }
            .channel-link {
                padding: 0.35rem 0.5rem;
                font-size: 0.75rem;
                gap: 0.2rem;
            }
            .brand-name {
                font-size: 1.15rem;
            }
            .brand-logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .scorer-card {
                padding: 0.85rem 1rem;
                gap: 0.6rem;
            }
            .scorer-rank {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
            .scorer-goals .goals-num {
                font-size: 1.3rem;
            }
        }

/* roulang page: category5 */
:root {
            --color-primary: #152238;
            --color-primary-light: #1e3355;
            --color-accent: #c8922b;
            --color-accent-light: #e0ad4d;
            --color-accent-glow: #f0c860;
            --color-red: #d94040;
            --color-red-light: #e86060;
            --color-bg: #f7f6f3;
            --color-bg-alt: #eeede9;
            --color-surface: #ffffff;
            --color-surface-hover: #fafaf8;
            --color-text: #1a1a1a;
            --color-text-strong: #0d0d0d;
            --color-text-muted: #6b6b6b;
            --color-text-light: #999999;
            --color-border: #e0ded8;
            --color-border-light: #eeece6;
            --color-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --color-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --color-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.11);
            --color-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);
            --color-overlay: rgba(21, 34, 56, 0.75);
            --color-overlay-light: rgba(21, 34, 56, 0.45);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 9999px;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'STHeiti', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            --spacing-xs: 6px;
            --spacing-sm: 12px;
            --spacing-md: 20px;
            --spacing-lg: 32px;
            --spacing-xl: 48px;
            --spacing-2xl: 64px;
            --spacing-3xl: 80px;
            --max-width: 1240px;
            --nav-height: 56px;
            --channel-height: 50px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--color-accent);
        }

        button {
            font-family: inherit;
            cursor: pointer;
        }

        input {
            font-family: inherit;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.3;
            color: var(--color-text-strong);
            margin: 0 0 0.6em 0;
        }

        h1 {
            font-size: 2.5rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.85rem;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
        }

        p {
            margin: 0 0 1em 0;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        /* ========== HEADER ========== */
        .site-header {
            background: var(--color-primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            gap: var(--spacing-md);
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            color: #ffffff;
            text-decoration: none;
            transition: opacity var(--transition-fast);
        }
        .logo-link:hover {
            opacity: 0.88;
            color: #ffffff;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--color-accent);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--color-primary);
            font-weight: 900;
            flex-shrink: 0;
        }

        .logo-text {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            flex-shrink: 0;
        }

        .btn-search-toggle {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .btn-search-toggle:hover {
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .btn-subscribe {
            background: var(--color-accent);
            color: var(--color-primary);
            border: none;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            cursor: pointer;
            font-family: var(--font-sans);
        }
        .btn-subscribe:hover {
            background: var(--color-accent-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(200, 146, 43, 0.35);
            color: var(--color-primary);
        }

        /* ========== CHANNEL BAR ========== */
        .channel-bar {
            background: var(--color-primary-light);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .channel-bar::-webkit-scrollbar {
            display: none;
        }

        .channel-bar-inner {
            display: flex;
            align-items: center;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            gap: 2px;
            min-width: max-content;
            height: var(--channel-height);
        }

        .channel-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.78);
            white-space: nowrap;
            transition: all var(--transition-fast);
            text-decoration: none;
            letter-spacing: 0.02em;
            position: relative;
        }
        .channel-link:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }
        .channel-link.active {
            background: var(--color-accent);
            color: var(--color-primary);
            font-weight: 700;
            box-shadow: 0 2px 10px rgba(200, 146, 43, 0.3);
        }
        .channel-link.active:hover {
            background: var(--color-accent-light);
            color: var(--color-primary);
        }
        .ch-icon {
            font-size: 0.85rem;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        /* ========== PAGE HERO ========== */
        .page-hero {
            position: relative;
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: var(--color-primary);
            isolation: isolate;
        }

        .page-hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.55;
        }

        .page-hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, rgba(21, 34, 56, 0.65) 0%, rgba(21, 34, 56, 0.82) 60%, var(--color-primary) 100%);
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
            padding: var(--spacing-3xl) var(--spacing-md);
            max-width: 700px;
            color: #ffffff;
        }
        .page-hero-content h1 {
            color: #ffffff;
            font-size: 2.6rem;
            margin-bottom: 0.4em;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .page-hero-content .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 0;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
        }
        .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-top: var(--spacing-md);
        }
        .hero-badge {
            background: rgba(255, 255, 255, 0.13);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #ffffff;
            padding: 5px 14px;
            border-radius: var(--radius-full);
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            backdrop-filter: blur(4px);
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: var(--spacing-2xl) 0;
        }
        .section-alt {
            background: var(--color-bg-alt);
        }
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }
        .section-header h2 {
            margin-bottom: 0.3em;
        }
        .section-header .section-subtitle {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .section-header-left {
            text-align: left;
            margin-bottom: var(--spacing-lg);
        }
        .section-header-left h2 {
            margin-bottom: 0.3em;
        }
        .section-header-left .section-subtitle {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ========== FEATURED VIDEO CARDS ========== */
        .featured-video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-lg);
        }

        .video-card-featured {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--color-shadow-md);
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            border: 1px solid var(--color-border-light);
        }
        .video-card-featured:hover {
            transform: translateY(-4px);
            box-shadow: var(--color-shadow-xl);
            border-color: var(--color-accent);
        }
        .video-card-featured .thumb-wrap {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #1a1a1a;
        }
        .video-card-featured .thumb-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .video-card-featured:hover .thumb-wrap img {
            transform: scale(1.04);
        }
        .play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            transition: background var(--transition-fast);
        }
        .video-card-featured:hover .play-overlay {
            background: rgba(0, 0, 0, 0.45);
        }
        .play-icon-circle {
            width: 56px;
            height: 56px;
            background: var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            transition: all var(--transition-bounce);
            position: relative;
            z-index: 1;
        }
        .video-card-featured:hover .play-icon-circle {
            transform: scale(1.1);
            background: var(--color-accent-light);
            box-shadow: 0 6px 28px rgba(200, 146, 43, 0.5);
        }
        .video-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.78);
            color: #fff;
            padding: 3px 10px;
            border-radius: var(--radius-sm);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            z-index: 2;
        }
        .video-card-featured .card-body {
            padding: var(--spacing-md);
        }
        .video-card-featured .card-body h3 {
            font-size: 1.1rem;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .video-card-featured .card-meta {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        .video-card-featured .card-tag {
            display: inline-block;
            background: #fef3e0;
            color: #b8781a;
            padding: 2px 10px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }

        /* ========== VIDEO LIST ========== */
        .video-list {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }
        .video-list-item {
            display: flex;
            gap: var(--spacing-md);
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: var(--spacing-sm);
            align-items: center;
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .video-list-item:hover {
            box-shadow: var(--color-shadow-md);
            border-color: var(--color-border);
            background: var(--color-surface-hover);
        }
        .video-list-thumb {
            width: 180px;
            aspect-ratio: 16 / 9;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
            background: #1a1a1a;
        }
        .video-list-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .video-list-thumb .play-icon-sm {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.28);
        }
        .play-icon-sm-circle {
            width: 36px;
            height: 36px;
            background: var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.85rem;
        }
        .video-list-info {
            flex: 1;
            min-width: 0;
        }
        .video-list-info h4 {
            font-size: 1rem;
            margin-bottom: 4px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .video-list-info .list-meta {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .video-list-info .list-desc {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-top: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.5;
        }

        /* ========== LEAGUE CATEGORY GRID ========== */
        .league-cat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
        }
        .league-cat-card {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: var(--spacing-lg) var(--spacing-md);
            text-align: center;
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .league-cat-card:hover {
            box-shadow: var(--color-shadow-lg);
            border-color: var(--color-accent);
            transform: translateY(-3px);
        }
        .league-cat-card .cat-icon-big {
            font-size: 2.6rem;
            margin-bottom: var(--spacing-sm);
            display: block;
            color: var(--color-accent);
            transition: transform var(--transition-bounce);
        }
        .league-cat-card:hover .cat-icon-big {
            transform: scale(1.12);
        }
        .league-cat-card h4 {
            font-size: 1.05rem;
            margin-bottom: 4px;
        }
        .league-cat-card .cat-count {
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }

        /* ========== HOT RANKING ========== */
        .hot-ranking-list {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
            counter-reset: rank;
        }
        .rank-item {
            display: flex;
            gap: var(--spacing-md);
            align-items: center;
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: var(--spacing-sm) var(--spacing-md);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .rank-item:hover {
            box-shadow: var(--color-shadow-md);
            border-color: var(--color-border);
        }
        .rank-num {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            flex-shrink: 0;
            color: #fff;
            background: #999;
        }
        .rank-item:nth-child(1) .rank-num {
            background: #e8a820;
        }
        .rank-item:nth-child(2) .rank-num {
            background: #b0b8c0;
        }
        .rank-item:nth-child(3) .rank-num {
            background: #c0814a;
        }
        .rank-info {
            flex: 1;
            min-width: 0;
        }
        .rank-info h4 {
            font-size: 0.95rem;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rank-info .rank-meta {
            font-size: 0.78rem;
            color: var(--color-text-muted);
        }
        .rank-views {
            font-weight: 700;
            color: var(--color-accent);
            font-size: 0.9rem;
            flex-shrink: 0;
            white-space: nowrap;
        }

        /* ========== GALLERY STRIP ========== */
        .gallery-strip {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: var(--spacing-sm);
        }
        .gallery-item {
            aspect-ratio: 4 / 3;
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all var(--transition-smooth);
            background: #ddd;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .gallery-item:hover {
            border-color: var(--color-accent);
            box-shadow: var(--color-shadow-lg);
        }
        .gallery-item:hover img {
            transform: scale(1.06);
        }
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
            color: #fff;
            padding: 12px 10px 8px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            margin-bottom: var(--spacing-sm);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            box-shadow: var(--color-shadow-sm);
        }
        .faq-question {
            padding: var(--spacing-md);
            font-weight: 700;
            font-size: 0.98rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            color: var(--color-text-strong);
            letter-spacing: 0.01em;
        }
        .faq-question .faq-icon {
            transition: transform var(--transition-fast);
            color: var(--color-accent);
            flex-shrink: 0;
            margin-left: 12px;
        }
        .faq-answer {
            padding: 0 var(--spacing-md) var(--spacing-md);
            color: var(--color-text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }
        .faq-item.open {
            border-color: var(--color-accent);
            box-shadow: var(--color-shadow-md);
        }

        /* ========== CTA ========== */
        .cta-section {
            background: var(--color-primary);
            color: #ffffff;
            text-align: center;
            padding: var(--spacing-3xl) var(--spacing-md);
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(200, 146, 43, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
        }
        .cta-inner {
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }
        .cta-inner h2 {
            color: #ffffff;
            margin-bottom: 0.5em;
        }
        .cta-inner p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: var(--spacing-lg);
        }
        .btn-cta-primary {
            display: inline-block;
            background: var(--color-accent);
            color: var(--color-primary);
            padding: 13px 32px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.03em;
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
            font-family: var(--font-sans);
        }
        .btn-cta-primary:hover {
            background: var(--color-accent-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(200, 146, 43, 0.4);
            color: var(--color-primary);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #101820;
            color: rgba(255, 255, 255, 0.72);
            padding: var(--spacing-2xl) 0 var(--spacing-md);
            font-size: 0.88rem;
            line-height: 1.8;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-lg);
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            margin-bottom: var(--spacing-xl);
        }
        .footer-col h4 {
            color: #ffffff;
            font-size: 1rem;
            margin-bottom: var(--spacing-sm);
            letter-spacing: 0.03em;
        }
        .footer-col ul li {
            margin-bottom: 4px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            transition: color var(--transition-fast);
            cursor: default;
        }
        .footer-col ul li a {
            cursor: pointer;
        }
        .footer-col ul li a:hover {
            color: var(--color-accent-light);
        }
        .footer-bottom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: var(--spacing-md) var(--spacing-md) 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-brand {
            color: var(--color-accent-light);
            font-weight: 700;
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-bottom-links li a,
        .footer-bottom-links li span {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.78rem;
            cursor: default;
        }
        .footer-bottom-links li a {
            cursor: pointer;
        }
        .footer-bottom-links li a:hover {
            color: var(--color-accent-light);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .featured-video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .league-cat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-strip {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .page-hero {
                min-height: 280px;
            }
            .page-hero-content h1 {
                font-size: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .featured-video-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-sm);
            }
            .video-list-item {
                flex-direction: column;
                align-items: stretch;
            }
            .video-list-thumb {
                width: 100%;
            }
            .league-cat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-sm);
            }
            .gallery-strip {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-md);
            }
            .page-hero {
                min-height: 240px;
            }
            .page-hero-content h1 {
                font-size: 1.7rem;
            }
            .page-hero-content .hero-subtitle {
                font-size: 0.95rem;
            }
            .header-inner {
                gap: 8px;
            }
            .logo-text {
                font-size: 1.1rem;
            }
            .btn-subscribe {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
            .section {
                padding: var(--spacing-xl) 0;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .rank-item {
                flex-wrap: wrap;
            }
            .rank-views {
                margin-left: auto;
            }
        }

        @media (max-width: 520px) {
            .featured-video-grid {
                grid-template-columns: 1fr;
            }
            .league-cat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .gallery-strip {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                text-align: center;
            }
            .page-hero {
                min-height: 200px;
            }
            .page-hero-content h1 {
                font-size: 1.4rem;
            }
            .page-hero-content .hero-subtitle {
                font-size: 0.85rem;
            }
            .channel-link {
                padding: 6px 10px;
                font-size: 0.78rem;
                gap: 3px;
            }
            .ch-icon {
                font-size: 0.7rem;
                width: 16px;
            }
            .btn-subscribe {
                font-size: 0.75rem;
                padding: 5px 10px;
            }
            .logo-text {
                font-size: 1rem;
            }
            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
            .header-inner {
                padding: 0 8px;
            }
            .video-card-featured .card-body h3 {
                font-size: 0.95rem;
            }
            .section-header h2 {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 10px;
            }
        }

/* roulang page: category6 */
:root {
            --color-primary: #1a7a3a;
            --color-primary-dark: #145e2d;
            --color-primary-light: #28a745;
            --color-secondary: #f0a500;
            --color-accent: #e63946;
            --color-bg: #f5f6f8;
            --color-surface: #ffffff;
            --color-text: #1a1a2e;
            --color-text-secondary: #5a5a7a;
            --color-text-muted: #8888a0;
            --color-border: #e2e4e9;
            --color-border-light: #f0f1f4;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 26px;
            --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.09);
            --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            --header-height: 68px;
            --channel-bar-height: 52px;
            --max-width: 1260px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            min-height: 100vh;
            overflow-x: hidden;
            font-size: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            line-height: 1.3;
            color: var(--color-text);
            margin: 0 0 0.6em;
            font-weight: 700;
        }

        h1 {
            font-size: 2.25rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.75rem;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER ========== */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-xs);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            gap: 24px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--color-primary);
            white-space: nowrap;
            letter-spacing: -0.01em;
            transition: color var(--transition-fast);
        }

        .brand-logo:hover {
            color: var(--color-primary-dark);
        }

        .brand-logo i {
            font-size: 1.5rem;
            color: var(--color-primary);
        }

        .header-search {
            display: flex;
            align-items: center;
            background: #f5f6f8;
            border-radius: 50px;
            padding: 8px 18px;
            gap: 10px;
            flex: 1;
            max-width: 360px;
            border: 2px solid transparent;
            transition: all var(--transition-smooth);
        }

        .header-search:focus-within {
            border-color: var(--color-primary);
            background: #fff;
            box-shadow: var(--shadow-sm);
        }

        .header-search input {
            border: none;
            background: transparent;
            outline: none;
            flex: 1;
            font-size: 0.95rem;
            color: var(--color-text);
            min-width: 0;
        }

        .header-search input::placeholder {
            color: var(--color-text-muted);
        }

        .header-search button {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--color-text-muted);
            padding: 4px;
            transition: color var(--transition-fast);
            font-size: 1rem;
        }

        .header-search button:hover {
            color: var(--color-primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .btn-header {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            cursor: pointer;
            transition: all var(--transition-smooth);
            border: none;
        }

        .btn-header-outline {
            background: transparent;
            border: 2px solid var(--color-primary);
            color: var(--color-primary);
        }

        .btn-header-outline:hover {
            background: var(--color-primary);
            color: #fff;
            box-shadow: var(--shadow-sm);
        }

        .btn-header-solid {
            background: var(--color-primary);
            color: #fff;
            border: 2px solid var(--color-primary);
        }

        .btn-header-solid:hover {
            background: var(--color-primary-dark);
            border-color: var(--color-primary-dark);
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }

        /* ========== CHANNEL BAR ========== */
        .channel-bar {
            background: #ffffff;
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: var(--header-height);
            z-index: 999;
            height: var(--channel-bar-height);
            display: flex;
            align-items: center;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            box-shadow: var(--shadow-xs);
        }

        .channel-bar::-webkit-scrollbar {
            display: none;
        }

        .channel-bar-inner {
            display: flex;
            align-items: center;
            gap: 4px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .channel-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: all var(--transition-smooth);
            white-space: nowrap;
            position: relative;
            cursor: pointer;
            border: 1.5px solid transparent;
            background: transparent;
        }

        .channel-link:hover {
            color: var(--color-primary);
            background: rgba(26, 122, 58, 0.05);
        }

        .channel-link.active {
            color: #fff;
            background: var(--color-primary);
            font-weight: 600;
            border-color: var(--color-primary);
            box-shadow: var(--shadow-sm);
        }

        .channel-link .ch-icon {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .channel-link.active .ch-icon {
            opacity: 1;
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            position: relative;
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center 40%;
            background-repeat: no-repeat;
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%);
            z-index: 1;
        }

        .page-banner-content {
            position: relative;
            z-index: 2;
            padding: 40px 24px;
            max-width: 700px;
        }

        .page-banner-badge {
            display: inline-block;
            background: var(--color-secondary);
            color: #1a1a2e;
            padding: 6px 18px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.03em;
            margin-bottom: 16px;
        }

        .page-banner h1 {
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 12px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .page-banner p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .page-banner-stats {
            display: flex;
            gap: 32px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .page-banner-stat {
            text-align: center;
        }

        .page-banner-stat .stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-secondary);
            line-height: 1;
        }

        .page-banner-stat .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 4px;
        }

        /* ========== SECTION ========== */
        .section {
            padding: 60px 0;
        }

        .section-sm {
            padding: 40px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            margin-bottom: 8px;
        }

        .section-header .section-subtitle {
            color: var(--color-text-secondary);
            font-size: 1rem;
            max-width: 560px;
            margin: 0 auto;
        }

        .section-tag {
            display: inline-block;
            background: rgba(26, 122, 58, 0.08);
            color: var(--color-primary);
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }

        /* ========== CARDS ========== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
        }

        .card-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .card-grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .card {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-xs);
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--color-border);
        }

        .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
        }

        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }

        .card:hover .card-img-wrap img {
            transform: scale(1.04);
        }

        .card-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--color-accent);
            color: #fff;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 2;
        }

        .card-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .card-body h4 {
            margin: 0;
            font-size: 1.05rem;
            line-height: 1.4;
        }

        .card-body h4 a {
            color: var(--color-text);
            transition: color var(--transition-fast);
        }

        .card-body h4 a:hover {
            color: var(--color-primary);
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            flex-wrap: wrap;
        }

        .card-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .card-excerpt {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.55;
            flex: 1;
        }

        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 8px;
            border-top: 1px solid var(--color-border-light);
            font-size: 0.82rem;
            color: var(--color-text-muted);
        }

        /* ========== HOT TOPICS ========== */
        .topic-card {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: 22px 24px;
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-xs);
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .topic-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--color-border);
        }

        .topic-rank {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
            color: #fff;
        }

        .topic-rank.hot {
            background: linear-gradient(135deg, #e63946, #ff6b6b);
        }

        .topic-info h4 {
            margin: 0 0 4px;
            font-size: 1rem;
        }

        .topic-info p {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            margin: 0 0 8px;
            line-height: 1.5;
        }

        .topic-stats {
            display: flex;
            gap: 14px;
            font-size: 0.78rem;
            color: var(--color-text-muted);
        }

        .topic-stats span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* ========== BETTING / QUIZ ========== */
        .quiz-highlight {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            color: #fff;
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
            box-shadow: var(--shadow-lg);
        }

        .quiz-highlight-content {
            flex: 1;
            min-width: 260px;
        }

        .quiz-highlight-content h3 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .quiz-highlight-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .quiz-prize {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--color-secondary);
            color: #1a1a2e;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .quiz-countdown {
            flex-shrink: 0;
            text-align: center;
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .quiz-countdown .cd-num {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--color-secondary);
            line-height: 1;
        }

        .quiz-countdown .cd-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 6px;
        }

        /* ========== POST LIST ========== */
        .post-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .post-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            border: 1px solid var(--color-border-light);
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-xs);
        }

        .post-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-border);
            transform: translateX(3px);
        }

        .post-avatar {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e0e4e9, #c8cdd6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #fff;
            font-size: 1rem;
        }

        .post-content {
            flex: 1;
            min-width: 0;
        }

        .post-content h4 {
            margin: 0 0 6px;
            font-size: 1rem;
        }

        .post-content h4 a {
            color: var(--color-text);
            transition: color var(--transition-fast);
        }

        .post-content h4 a:hover {
            color: var(--color-primary);
        }

        .post-excerpt {
            font-size: 0.88rem;
            color: var(--color-text-secondary);
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .post-meta-row {
            display: flex;
            gap: 16px;
            font-size: 0.78rem;
            color: var(--color-text-muted);
            flex-wrap: wrap;
            align-items: center;
        }

        .post-meta-row span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .post-hot-badge {
            display: inline-block;
            background: #ffe0e0;
            color: #c0392b;
            padding: 2px 10px;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 700;
        }

        /* ========== STATS ROW ========== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-block {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            text-align: center;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-xs);
            transition: all var(--transition-smooth);
        }

        .stat-block:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .stat-block .stat-icon {
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 8px;
        }

        .stat-block .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-text);
            line-height: 1;
        }

        .stat-block .stat-desc {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            margin-top: 6px;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-xs);
        }

        .faq-item summary {
            padding: 18px 24px;
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
            color: var(--color-text);
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: background var(--transition-fast);
            user-select: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
            color: var(--color-primary);
        }

        .faq-item[open] summary {
            background: rgba(26, 122, 58, 0.03);
            color: var(--color-primary);
        }

        .faq-item .faq-answer {
            padding: 0 24px 20px;
            font-size: 0.93rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
            border-radius: var(--radius-lg);
            padding: 48px 36px;
            text-align: center;
            color: #fff;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            pointer-events: none;
        }

        .cta-section h3 {
            color: #fff;
            font-size: 1.7rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto 24px;
            position: relative;
            z-index: 1;
        }

        .btn-cta {
            display: inline-block;
            background: #fff;
            color: var(--color-primary);
            padding: 13px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition-smooth);
            position: relative;
            z-index: 1;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-md);
        }

        .btn-cta:hover {
            background: var(--color-secondary);
            color: #1a1a2e;
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #1a1a2e;
            color: rgba(255, 255, 255, 0.8);
            padding: 48px 0 24px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul li a,
        .footer-col ul li span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            transition: color var(--transition-fast);
            cursor: pointer;
        }

        .footer-col ul li a:hover {
            color: var(--color-secondary);
        }

        .footer-bottom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 20px 24px 0;
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.5);
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        .footer-brand {
            color: #fff;
            font-weight: 700;
        }

        .footer-bottom-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            font-size: 0.8rem;
        }

        .footer-bottom-links a,
        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.45);
            transition: color var(--transition-fast);
            cursor: default;
        }

        .footer-bottom-links a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ========== BUTTONS ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.92rem;
            cursor: pointer;
            transition: all var(--transition-smooth);
            border: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--color-primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--color-primary-dark);
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--color-primary);
            color: var(--color-primary);
        }

        .btn-outline:hover {
            background: var(--color-primary);
            color: #fff;
            box-shadow: var(--shadow-sm);
        }

        .btn-sm {
            padding: 6px 14px;
            font-size: 0.8rem;
            border-radius: 50px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .card-grid-3,
            .card-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .page-banner {
                min-height: 280px;
            }
            .page-banner h1 {
                font-size: 2rem;
            }
            .quiz-highlight {
                flex-direction: column;
                text-align: center;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .header-search {
                display: none;
            }
            .header-inner {
                gap: 12px;
            }
            .btn-header {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
            .brand-logo {
                font-size: 1.15rem;
            }
            .channel-link {
                padding: 7px 11px;
                font-size: 0.8rem;
                gap: 3px;
            }
            .channel-link .ch-icon {
                font-size: 0.75rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .card-grid-3,
            .card-grid-4 {
                grid-template-columns: 1fr;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .section {
                padding: 36px 0;
            }
            .page-banner {
                min-height: 240px;
            }
            .page-banner h1 {
                font-size: 1.6rem;
            }
            .page-banner p {
                font-size: 0.95rem;
            }
            .page-banner-stats {
                gap: 18px;
            }
            .page-banner-stat .stat-num {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .quiz-highlight {
                padding: 24px 20px;
            }
            .quiz-countdown .cd-num {
                font-size: 2rem;
            }
            .post-item {
                flex-direction: column;
                gap: 10px;
            }
            .post-avatar {
                width: 36px;
                height: 36px;
                font-size: 0.85rem;
            }
            .topic-card {
                flex-direction: column;
                gap: 10px;
            }
            .cta-section {
                padding: 32px 20px;
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 520px) {
            .header-inner {
                padding: 0 12px;
                gap: 8px;
            }
            .brand-logo {
                font-size: 1rem;
            }
            .brand-logo i {
                font-size: 1.1rem;
            }
            .btn-header {
                padding: 6px 10px;
                font-size: 0.72rem;
                border-radius: 40px;
            }
            .btn-header-outline {
                display: none;
            }
            .channel-link {
                padding: 6px 9px;
                font-size: 0.72rem;
                border-radius: 40px;
            }
            .channel-link .ch-icon {
                font-size: 0.7rem;
            }
            .page-banner {
                min-height: 200px;
            }
            .page-banner h1 {
                font-size: 1.35rem;
            }
            .page-banner p {
                font-size: 0.85rem;
            }
            .page-banner-stats {
                gap: 10px;
            }
            .page-banner-stat .stat-num {
                font-size: 1.2rem;
            }
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-block {
                padding: 16px 12px;
            }
            .stat-block .stat-value {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .footer-bottom {
                font-size: 0.72rem;
            }
            .footer-bottom-links {
                gap: 8px;
                font-size: 0.7rem;
            }
            .container {
                padding: 0 14px;
            }
            .card-body {
                padding: 14px;
            }
            .faq-item summary {
                padding: 14px 16px;
                font-size: 0.9rem;
            }
            .faq-item .faq-answer {
                padding: 0 16px 16px;
            }
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.2rem;
            }
        }
