/* roulang page: index */
:root {
            --ink: #0B0F14;
            --ink-2: #12181E;
            --acid: #C6FF2E;
            --acid-dark: #B7F04A;
            --live: #FF4D2B;
            --paper: #F4F7EE;
            --card: #FFFFFF;
            --line: #E0E5D6;
            --text: #141A20;
            --text-light: #5A6672;
            --text-dark-bg: #F3F6EF;
            --text-dark-muted: rgba(243, 246, 239, 0.65);
            --shadow-card: 0 8px 24px rgba(20, 26, 32, 0.08);
            --shadow-card-hover: 0 12px 32px rgba(20, 26, 32, 0.12);
            --shadow-dark: 0 8px 28px rgba(0, 0, 0, 0.35);
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-input: 10px;
            --radius-pill: 999px;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-num: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --transition: 0.22s ease;
            --container-max: 1200px;
            --section-pad: 72px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--paper);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--ink);
            line-height: 1.25;
            margin-top: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), opacity var(--transition);
        }

        a:hover {
            color: var(--ink);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        @media (max-width: 991px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* Navbar */
        .navbar-sport {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: rgba(11, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 12px 0;
            transition: background var(--transition);
        }

        .navbar-sport .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .navbar-brand-sport {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .navbar-brand-sport:hover {
            color: var(--acid);
        }

        .brand-mark {
            width: 28px;
            height: 28px;
            background: var(--acid);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink);
            font-size: 14px;
            font-weight: 900;
        }

        .btn-cta {
            background: var(--acid);
            color: var(--ink);
            font-weight: 700;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            font-size: 14px;
            letter-spacing: 0.3px;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-cta:hover {
            background: #fff;
            color: var(--ink);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(198, 255, 46, 0.3);
        }

        .btn-cta:focus,
        .btn-cta:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
            box-shadow: none;
        }

        .btn-cta:active {
            transform: translateY(0);
            background: var(--acid-dark);
        }

        /* Buttons general */
        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }

        .btn-primary {
            background: var(--acid);
            color: var(--ink);
            border-color: var(--acid);
            font-weight: 700;
        }

        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background: #fff;
            color: var(--ink);
            border-color: var(--acid);
            box-shadow: 0 6px 16px rgba(198, 255, 46, 0.25);
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
        }

        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.35);
            color: #fff;
        }

        .btn-outline-light:hover {
            background: #fff;
            color: var(--ink);
            border-color: #fff;
        }

        .btn-outline-dark {
            border-color: var(--ink);
            color: var(--ink);
        }
        .btn-outline-dark:hover {
            background: var(--ink);
            color: #fff;
            border-color: var(--ink);
        }

        /* Hero */
        .hero-score {
            position: relative;
            background-color: var(--ink);
            background-image: linear-gradient(rgba(11, 15, 20, 0.88), rgba(11, 15, 20, 0.92)), url('/assets/images/3d56efe5b6270af6.webp');
            background-size: cover;
            background-position: center;
            padding-top: 140px;
            padding-bottom: 56px;
            overflow: hidden;
            color: var(--text-dark-bg);
        }

        .hero-score::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(198, 255, 46, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(198, 255, 46, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
        }

        .hero-grid-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0.3;
            background-image: radial-gradient(circle at 20% 30%, rgba(198, 255, 46, 0.08) 0%, transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(255, 77, 43, 0.06) 0%, transparent 40%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-h1 {
            font-size: clamp(28px, 4.5vw, 46px);
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            line-height: 1.18;
        }

        .hero-h1 .accent {
            color: var(--acid);
        }

        .hero-sub {
            font-size: clamp(15px, 2vw, 18px);
            color: rgba(243, 246, 239, 0.78);
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .hero-stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin-bottom: 24px;
        }

        @media (max-width: 991px) {
            .hero-stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 520px) {
            .hero-stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }

        .hero-stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-card);
            padding: 18px 16px;
            transition: background var(--transition), border-color var(--transition), transform var(--transition);
        }

        .hero-stat-card:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(198, 255, 46, 0.4);
            transform: translateY(-2px);
        }

        .hero-stat-icon {
            font-size: 22px;
            color: var(--acid);
            margin-bottom: 8px;
        }

        .hero-stat-value {
            font-family: var(--font-num);
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.5px;
        }

        .hero-stat-label {
            font-size: 13px;
            color: rgba(243, 246, 239, 0.6);
            margin-top: 4px;
        }

        /* Ticker */
        .ticker-wrap {
            background: rgba(18, 24, 30, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-card);
            overflow: hidden;
            position: relative;
            z-index: 2;
            margin-top: 4px;
        }

        .ticker-track {
            display: flex;
            width: max-content;
            animation: tickerScroll 36s linear infinite;
        }

        .ticker-group {
            display: flex;
            flex-shrink: 0;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
            white-space: nowrap;
            font-size: 14px;
            color: rgba(243, 246, 239, 0.85);
        }

        .ticker-item .live-dot {
            width: 8px;
            height: 8px;
            background: var(--live);
            border-radius: 50%;
            flex-shrink: 0;
            animation: pulseLive 1.8s ease-in-out infinite;
        }

        .ticker-item .league-name {
            color: rgba(243, 246, 239, 0.5);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        .ticker-item .matchup {
            font-weight: 600;
            color: #fff;
        }

        .ticker-item .score-display {
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 16px;
            color: var(--acid);
            font-variant-numeric: tabular-nums;
        }

        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes pulseLive {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(0.85);
            }
        }

        /* Sections */
        .section-block {
            padding: var(--section-pad) 0;
            position: relative;
        }

        .section-block.bg-light {
            background: #fff;
        }

        .section-block.bg-paper {
            background: var(--paper);
        }

        .section-block.bg-dark {
            background: var(--ink-2);
            color: var(--text-dark-bg);
        }

        .section-header {
            margin-bottom: 36px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 8px;
        }

        .section-tag .tag-line {
            width: 24px;
            height: 2px;
            background: var(--acid);
            display: inline-block;
            border-radius: 2px;
        }

        .section-title {
            font-size: clamp(24px, 3.5vw, 32px);
            font-weight: 700;
            letter-spacing: -0.3px;
            margin-bottom: 12px;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-light);
            max-width: 680px;
            line-height: 1.75;
        }

        .bg-dark .section-title {
            color: #fff;
        }
        .bg-dark .section-desc,
        .bg-dark .section-tag {
            color: rgba(243, 246, 239, 0.65);
        }

        /* Cards */
        .sport-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            height: 100%;
        }

        .sport-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(198, 255, 46, 0.6);
        }

        .sport-card .card-img-wrap {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #f0f0e8;
        }

        .sport-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .sport-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }

        .sport-card .card-body {
            padding: 20px;
        }

        .sport-card .card-title {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .sport-card .card-text {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.65;
            margin-bottom: 0;
        }

        .sport-card .card-top-line {
            height: 4px;
            width: 100%;
            background: var(--acid);
        }

        .sport-card .card-top-line.red {
            background: var(--live);
        }

        /* Category cards */
        .category-card {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--ink-2);
            min-height: 240px;
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow-dark);
            transition: transform var(--transition), box-shadow var(--transition);
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
        }

        .category-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .category-card .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11, 15, 20, 0.92) 10%, rgba(11, 15, 20, 0.35) 60%, rgba(11, 15, 20, 0.05) 100%);
            z-index: 1;
        }

        .category-card .cat-content {
            position: relative;
            z-index: 2;
            padding: 22px;
            width: 100%;
        }

        .category-card .cat-title {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .category-card .cat-desc {
            color: rgba(243, 246, 239, 0.75);
            font-size: 13px;
            margin-bottom: 12px;
        }

        .category-card .cat-link {
            color: var(--acid);
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap var(--transition);
        }
        .category-card .cat-link:hover {
            color: #fff;
            gap: 10px;
        }

        /* Service matrix */
        .service-matrix-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        @media (max-width: 991px) {
            .service-matrix-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-cards-4 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        @media (max-width: 767px) {
            .service-cards-4 {
                grid-template-columns: 1fr;
            }
        }

        .service-side-note {
            background: var(--ink);
            color: var(--text-dark-bg);
            border-radius: var(--radius-card);
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: var(--shadow-dark);
        }

        .service-side-note .big-num {
            font-family: var(--font-num);
            font-size: 56px;
            font-weight: 700;
            color: var(--acid);
            line-height: 1;
            font-variant-numeric: tabular-nums;
            margin-bottom: 8px;
        }

        .service-side-note .label {
            font-size: 15px;
            color: rgba(243, 246, 239, 0.7);
        }

        /* Compare panels */
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        @media (max-width: 767px) {
            .compare-grid {
                grid-template-columns: 1fr;
            }
        }

        .compare-panel {
            border-radius: var(--radius-card);
            padding: 28px;
            border: 1px solid var(--line);
            background: #fff;
            box-shadow: var(--shadow-card);
        }
        .compare-panel.positive {
            border-top: 4px solid var(--acid);
        }
        .compare-panel.negative {
            border-top: 4px solid #bbb;
            opacity: 0.85;
        }
        .compare-panel h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .compare-panel ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .compare-panel li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            border-bottom: 1px solid var(--line);
        }
        .compare-panel li:last-child {
            border-bottom: none;
        }
        .compare-panel li .icon-check {
            color: #22c55e;
            font-weight: 700;
        }
        .compare-panel li .icon-cross {
            color: #ef4444;
            font-weight: 700;
        }

        /* Milestones */
        .milestones-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 991px) {
            .milestones-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .milestones-row {
                grid-template-columns: 1fr;
            }
        }

        .milestone-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 24px;
            text-align: center;
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .milestone-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }
        .milestone-item .milestone-value {
            font-family: var(--font-num);
            font-size: 40px;
            font-weight: 800;
            color: var(--ink);
            font-variant-numeric: tabular-nums;
            line-height: 1.1;
        }
        .milestone-item .milestone-label {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 8px;
        }
        .milestone-item .milestone-arrow {
            color: var(--live);
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 4px;
        }

        /* News list */
        .news-list {
            display: flex;
            flex-direction: column;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 18px;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            margin-bottom: 12px;
            transition: background var(--transition), border-color var(--transition), transform var(--transition);
        }

        .news-item:hover {
            background: #fafbf5;
            border-color: rgba(198, 255, 46, 0.5);
            transform: translateX(4px);
        }

        .news-item:last-child {
            margin-bottom: 0;
        }

        .news-tag {
            flex-shrink: 0;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            display: inline-block;
        }
        .news-tag.tag-live {
            background: rgba(255, 77, 43, 0.12);
            color: var(--live);
        }
        .news-tag.tag-data {
            background: rgba(198, 255, 46, 0.25);
            color: #3d5a00;
        }
        .news-tag.tag-predict {
            background: rgba(100, 130, 200, 0.12);
            color: #3a5a9a;
        }

        .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-body .news-title {
            font-weight: 600;
            font-size: 15px;
            color: var(--ink);
            margin-bottom: 2px;
        }
        .news-body .news-source {
            font-size: 13px;
            color: var(--text-light);
        }
        .news-time {
            flex-shrink: 0;
            font-size: 13px;
            color: var(--text-light);
            white-space: nowrap;
        }

        /* Security / guarantee */
        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 991px) {
            .guarantee-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .guarantee-grid {
                grid-template-columns: 1fr;
            }
        }

        .guarantee-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 24px;
            text-align: center;
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .guarantee-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }
        .guarantee-icon {
            width: 52px;
            height: 52px;
            background: rgba(198, 255, 46, 0.18);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 22px;
            color: #3d5a00;
        }
        .guarantee-title {
            font-weight: 700;
            font-size: 17px;
            margin-bottom: 6px;
        }
        .guarantee-desc {
            font-size: 13.5px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Brand intro */
        .brand-intro-content {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 36px;
            box-shadow: var(--shadow-card);
        }
        .brand-intro-content p {
            color: #3a444d;
            font-size: 16px;
            line-height: 1.85;
            margin-bottom: 16px;
        }
        .brand-intro-content p:last-child {
            margin-bottom: 0;
        }

        /* Quick FAQ */
        .quick-faq-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media (max-width: 991px) {
            .quick-faq-grid {
                grid-template-columns: 1fr;
            }
        }
        .quick-faq-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
        }
        .quick-faq-item .q-icon {
            font-size: 18px;
            color: var(--acid-dark);
            margin-bottom: 8px;
        }
        .quick-faq-item .q-title {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 6px;
        }
        .quick-faq-item .q-answer {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* FAQ Accordion */
        .accordion-sport {
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--line);
        }
        .accordion-sport .accordion-item {
            border: none;
            border-bottom: 1px solid var(--line);
            background: #fff;
            border-radius: 0 !important;
        }
        .accordion-sport .accordion-item:last-child {
            border-bottom: none;
        }
        .accordion-sport .accordion-header {
            margin: 0;
        }
        .accordion-sport .accordion-button {
            background: #fff;
            color: var(--ink);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 24px;
            border: none;
            box-shadow: none;
            transition: background var(--transition);
        }
        .accordion-sport .accordion-button:not(.collapsed) {
            background: #f8fbef;
            color: var(--ink);
            border-bottom: 1px solid var(--acid);
            box-shadow: none;
        }
        .accordion-sport .accordion-button:focus {
            box-shadow: none;
            outline: 2px solid var(--acid);
            outline-offset: -2px;
        }
        .accordion-sport .accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B0F14'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        }
        .accordion-sport .accordion-body {
            padding: 18px 24px;
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.75;
        }

        /* Convert / CTA form */
        .convert-card {
            background: var(--ink);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-dark);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        @media (max-width: 767px) {
            .convert-card {
                grid-template-columns: 1fr;
            }
        }
        .convert-left {
            padding: 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .convert-left h3 {
            color: #fff;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .convert-left p {
            color: rgba(243, 246, 239, 0.7);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .convert-right {
            background: rgba(255, 255, 255, 0.04);
            padding: 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .convert-form .form-control {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-input);
            color: #fff;
            padding: 12px 16px;
            font-size: 15px;
            transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
        }
        .convert-form .form-control::placeholder {
            color: rgba(243, 246, 239, 0.4);
        }
        .convert-form .form-control:focus {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--acid);
            box-shadow: 0 0 0 3px rgba(198, 255, 46, 0.15);
            outline: none;
        }
        .convert-form .form-label {
            color: rgba(243, 246, 239, 0.7);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .form-hint {
            font-size: 12px;
            color: rgba(243, 246, 239, 0.45);
            margin-top: 8px;
        }

        /* Footer */
        .footer-sport {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.65);
            padding: 28px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
        }
        .footer-sport::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--acid);
        }
        .footer-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
        }
        .footer-brand .brand-mark {
            width: 20px;
            height: 20px;
            background: var(--acid);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 900;
            color: var(--ink);
        }
        .footer-copy {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-home {
            color: rgba(255, 255, 255, 0.65);
            font-weight: 500;
            transition: color var(--transition);
        }
        .footer-home:hover {
            color: var(--acid);
        }

        /* Responsive helpers */
        @media (max-width: 767px) {
            :root {
                --section-pad: 48px;
            }
            .hero-score {
                padding-top: 110px;
                padding-bottom: 40px;
            }
            .hero-h1 {
                font-size: 26px;
            }
            .ticker-item {
                font-size: 12px;
                padding: 10px 14px;
            }
            .section-title {
                font-size: 22px;
            }
        }

        @media (max-width: 520px) {
            .btn-cta {
                padding: 8px 14px;
                font-size: 13px;
            }
            .navbar-brand-sport {
                font-size: 17px;
            }
            .hero-stat-card {
                padding: 12px;
            }
            .hero-stat-value {
                font-size: 24px;
            }
            .section-block {
                padding: 36px 0;
            }
            .compare-panel,
            .convert-left,
            .convert-right {
                padding: 20px;
            }
            .brand-intro-content {
                padding: 24px;
            }
        }

/* roulang page: category2 */
:root {
            --ink: #0B0F14;
            --ink-2: #12181E;
            --acid: #C6FF2E;
            --acid-dark: #B7F04A;
            --live: #FF4D2B;
            --paper: #F4F7EE;
            --card: #FFFFFF;
            --line: #E0E5D6;
            --text: #141A20;
            --text-light: #5A6672;
            --text-dark-bg: #F3F6EF;
            --text-dark-muted: rgba(243, 246, 239, 0.65);
            --shadow-card: 0 8px 24px rgba(20, 26, 32, 0.08);
            --shadow-card-hover: 0 12px 32px rgba(20, 26, 32, 0.12);
            --shadow-dark: 0 8px 28px rgba(0, 0, 0, 0.35);
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-input: 10px;
            --radius-pill: 999px;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-num: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --transition: 0.22s ease;
            --container-max: 1200px;
            --section-pad: 72px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--paper);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 72px;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), opacity var(--transition);
        }

        a:hover {
            color: var(--ink);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .navbar-sport {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: rgba(11, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 12px 0;
            transition: background var(--transition);
        }

        .navbar-sport .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .navbar-brand-sport {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .navbar-brand-sport:hover {
            color: var(--acid);
        }

        .brand-mark {
            width: 28px;
            height: 28px;
            background: var(--acid);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink);
            font-size: 14px;
            font-weight: 900;
        }

        .btn-cta {
            background: var(--acid);
            color: var(--ink);
            font-weight: 700;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            font-size: 14px;
            letter-spacing: 0.3px;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-cta:hover {
            background: #fff;
            color: var(--ink);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(198, 255, 46, 0.3);
        }

        .btn-cta:focus,
        .btn-cta:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
            box-shadow: none;
        }

        .btn-cta:active {
            transform: translateY(0);
            background: var(--acid-dark);
        }

        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }

        .btn-primary {
            background: var(--acid);
            color: var(--ink);
            border-color: var(--acid);
            font-weight: 700;
        }

        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background: #fff;
            color: var(--ink);
            border-color: var(--acid);
            box-shadow: 0 6px 16px rgba(198, 255, 46, 0.25);
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
        }

        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.35);
            color: #fff;
        }

        .btn-outline-light:hover {
            background: #fff;
            color: var(--ink);
            border-color: #fff;
        }

        .btn-outline-dark {
            border-color: var(--ink);
            color: var(--ink);
        }

        .btn-outline-dark:hover {
            background: var(--ink);
            color: #fff;
            border-color: var(--ink);
        }

        .breadcrumb-sport {
            background: transparent;
            margin: 0;
            padding: 16px 0;
            font-size: 14px;
            color: var(--text-light);
        }

        .breadcrumb-sport a {
            color: var(--text-light);
        }

        .breadcrumb-sport a:hover {
            color: var(--ink);
        }

        .breadcrumb-sport .breadcrumb-item+.breadcrumb-item::before {
            content: '/';
            color: var(--text-light);
            margin: 0 8px;
        }

        .breadcrumb-sport .breadcrumb-item.active {
            color: var(--ink);
            font-weight: 600;
        }

        .hero-category {
            background-color: var(--ink);
            background-image: linear-gradient(rgba(11, 15, 20, 0.85), rgba(11, 15, 20, 0.92)), url('/assets/images/3d56efe5b6270af6.webp');
            background-size: cover;
            background-position: center;
            min-height: 36vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 40px 0;
            border-bottom: 4px solid var(--acid);
        }

        .hero-category::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: linear-gradient(rgba(198, 255, 46, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(198, 255, 46, 0.03) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
        }

        .hero-category .container-custom {
            position: relative;
            z-index: 1;
        }

        .hero-category h1 {
            color: #fff;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .hero-category h1 span {
            color: var(--acid);
        }

        .hero-category .hero-sub {
            color: var(--text-dark-muted);
            font-size: 16px;
            max-width: 560px;
            line-height: 1.7;
        }

        .hero-category .hero-date-filter {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-btn);
            padding: 8px 16px;
            color: #fff;
            font-size: 14px;
            margin-top: 20px;
        }

        .hero-category .hero-date-filter i {
            color: var(--acid);
        }

        .section-pad {
            padding: var(--section-pad) 0;
        }

        .section-pad.section-muted {
            background: #fff;
        }

        .section-title-wrap {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .section-title-wrap h2 {
            font-size: clamp(24px, 3vw, 30px);
            font-weight: 800;
            margin: 0;
            letter-spacing: 0.3px;
            color: var(--ink);
        }

        .section-title-wrap h2 i {
            color: var(--acid-dark);
            margin-right: 8px;
        }

        .section-title-wrap .section-meta {
            font-size: 14px;
            color: var(--text-light);
        }

        .filter-tag-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

        .filter-tag {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-pill);
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            cursor: pointer;
            transition: background var(--transition), border-color var(--transition), color var(--transition);
        }

        .filter-tag:hover {
            border-color: var(--acid-dark);
            color: var(--ink);
            background: rgba(198, 255, 46, 0.1);
        }

        .filter-tag.active {
            background: var(--ink);
            color: #fff;
            border-color: var(--ink);
        }

        .filter-tag.filter-live-tag {
            border-color: var(--live);
            color: var(--live);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .filter-tag.filter-live-tag:hover,
        .filter-tag.filter-live-tag.active {
            background: var(--live);
            color: #fff;
            border-color: var(--live);
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--live);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-live 1.4s ease-in-out infinite;
            vertical-align: middle;
            margin-right: 4px;
        }

        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(255, 77, 43, 0.5);
            }
            50% {
                opacity: 0.6;
                box-shadow: 0 0 0 6px rgba(255, 77, 43, 0);
            }
        }

        .score-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: var(--shadow-card);
            transition: box-shadow var(--transition), transform var(--transition);
            border-left: 4px solid var(--acid);
        }

        .score-card.live-card {
            border-left-color: var(--live);
        }

        .score-card.finished-card {
            border-left-color: var(--text-light);
        }

        .score-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .score-card .score-league {
            font-size: 13px;
            color: var(--text-light);
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .score-card .score-league .badge-live {
            background: var(--live);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.5px;
        }

        .score-card .score-league .badge-status {
            background: var(--ink);
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
        }

        .score-team-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            margin: 8px 0;
        }

        .score-team {
            font-weight: 700;
            font-size: 17px;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .score-team .team-badge {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--ink);
            color: var(--acid);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .score-value {
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
            font-size: 32px;
            font-weight: 800;
            color: var(--ink);
            line-height: 1.1;
            letter-spacing: 1px;
        }

        .score-value.live-score {
            color: var(--live);
        }

        .score-quarter {
            font-size: 13px;
            color: var(--text-light);
            text-align: center;
            margin-top: 4px;
            font-variant-numeric: tabular-nums;
        }

        .score-detail-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--line);
        }

        .score-detail-item {
            text-align: center;
        }

        .score-detail-item .detail-label {
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 2px;
        }

        .score-detail-item .detail-value {
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
        }

        .player-highlight-section {
            background: var(--ink);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .player-highlight-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(198, 255, 46, 0.1), transparent 70%);
            pointer-events: none;
        }

        .player-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-card);
            padding: 20px;
            height: 100%;
            transition: background var(--transition), transform var(--transition);
        }

        .player-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-3px);
        }

        .player-card .player-name {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .player-card .player-team {
            font-size: 13px;
            color: var(--text-dark-muted);
            margin-bottom: 12px;
        }

        .player-card .player-stats {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .player-card .player-stat {
            background: rgba(198, 255, 46, 0.12);
            border: 1px solid rgba(198, 255, 46, 0.2);
            border-radius: 8px;
            padding: 6px 12px;
            font-size: 14px;
            font-weight: 600;
            color: var(--acid);
            font-variant-numeric: tabular-nums;
        }

        .player-card .player-stat span {
            font-weight: 400;
            color: var(--text-dark-muted);
            font-size: 12px;
            margin-right: 4px;
        }

        .standings-table-wrap {
            overflow-x: auto;
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 8px;
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 640px;
        }

        .standings-table th {
            background: var(--ink);
            color: #fff;
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 600;
            text-align: left;
            letter-spacing: 0.5px;
        }

        .standings-table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--line);
            font-size: 14px;
            color: var(--text);
            font-variant-numeric: tabular-nums;
        }

        .standings-table tr:last-child td {
            border-bottom: none;
        }

        .standings-table tr:hover td {
            background: rgba(198, 255, 46, 0.06);
        }

        .standings-table .team-cell {
            font-weight: 600;
            color: var(--ink);
        }

        .standings-table .win-loss {
            font-weight: 700;
            color: var(--ink);
        }

        .standings-table .top-seed {
            color: var(--live);
            font-weight: 700;
        }

        .news-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 16px;
            margin-bottom: 12px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .news-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .news-tag {
            flex-shrink: 0;
            background: var(--acid);
            color: var(--ink);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.3px;
        }

        .news-tag.news-tag-data {
            background: var(--ink);
            color: #fff;
        }

        .news-tag.news-tag-predict {
            background: var(--live);
            color: #fff;
        }

        .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-content .news-title {
            font-weight: 600;
            color: var(--ink);
            font-size: 15px;
            margin-bottom: 4px;
            line-height: 1.5;
        }

        .news-content .news-meta {
            font-size: 13px;
            color: var(--text-light);
        }

        .news-content .news-meta i {
            margin-right: 6px;
        }

        .cta-card {
            background: var(--ink);
            border-radius: var(--radius-card);
            padding: 36px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-dark);
            position: relative;
            overflow: hidden;
        }

        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -40%;
            right: -10%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(198, 255, 46, 0.15), transparent 70%);
            pointer-events: none;
        }

        .cta-card .cta-content {
            flex: 1;
            min-width: 280px;
            position: relative;
            z-index: 1;
        }

        .cta-card .cta-content h2 {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .cta-card .cta-content p {
            color: var(--text-dark-muted);
            font-size: 15px;
            margin: 0;
        }

        .cta-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .cta-form input {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-input);
            padding: 10px 16px;
            color: #fff;
            font-size: 14px;
            min-width: 220px;
            transition: border-color var(--transition), background var(--transition);
        }

        .cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .cta-form input:focus {
            outline: none;
            border-color: var(--acid);
            background: rgba(255, 255, 255, 0.12);
        }

        .cta-form .btn-primary {
            padding: 10px 24px;
            font-size: 14px;
        }

        .faq-section {
            background: #fff;
        }

        .accordion-sport .accordion-item {
            border: 1px solid var(--line);
            border-radius: var(--radius-card) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .accordion-sport .accordion-button {
            background: var(--card);
            color: var(--ink);
            font-weight: 600;
            font-size: 15px;
            padding: 18px 20px;
            border-radius: var(--radius-card) !important;
            transition: background var(--transition), color var(--transition);
            box-shadow: none;
        }

        .accordion-sport .accordion-button:not(.collapsed) {
            background: rgba(198, 255, 46, 0.1);
            color: var(--ink);
            box-shadow: none;
            border-bottom: 1px solid var(--acid);
        }

        .accordion-sport .accordion-button:focus {
            box-shadow: 0 0 0 2px rgba(198, 255, 46, 0.4);
            border-color: var(--acid);
        }

        .accordion-sport .accordion-button::after {
            background-image: none;
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 14px;
            color: var(--text-light);
            transition: transform var(--transition);
        }

        .accordion-sport .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: var(--ink);
        }

        .accordion-sport .accordion-body {
            background: var(--card);
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.8;
            padding: 18px 20px;
        }

        .accordion-sport .accordion-collapse {
            border-radius: 0 0 var(--radius-card) var(--radius-card);
        }

        .footer-sport {
            background: var(--ink);
            color: var(--text-dark-muted);
            padding: 32px 0;
            border-top: 3px solid var(--acid);
            margin-top: 40px;
        }

        .footer-sport .footer-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-sport .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 16px;
            color: #fff;
        }

        .footer-sport .footer-copy {
            font-size: 13px;
        }

        .footer-sport .footer-home {
            font-size: 14px;
            color: var(--text-dark-muted);
            transition: color var(--transition);
        }

        .footer-sport .footer-home:hover {
            color: var(--acid);
        }

        .more-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--ink);
            font-size: 14px;
            transition: color var(--transition), gap var(--transition);
        }

        .more-link:hover {
            color: var(--live);
            gap: 12px;
        }

        .more-link i {
            font-size: 13px;
        }

        @media (max-width: 991px) {
            .score-detail-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .score-value {
                font-size: 26px;
            }

            .score-team {
                font-size: 15px;
            }

            .cta-card {
                padding: 28px 24px;
                flex-direction: column;
                align-items: stretch;
            }

            .cta-form {
                flex-direction: column;
            }

            .cta-form input {
                min-width: unset;
                width: 100%;
            }

            .cta-form .btn-primary {
                width: 100%;
            }
        }

        @media (max-width: 767px) {
            :root {
                --section-pad: 40px;
            }

            body {
                padding-top: 64px;
            }

            .navbar-sport {
                padding: 10px 0;
            }

            .navbar-brand-sport {
                font-size: 17px;
            }

            .brand-mark {
                width: 24px;
                height: 24px;
                font-size: 12px;
            }

            .btn-cta {
                padding: 8px 14px;
                font-size: 12px;
                gap: 6px;
            }

            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }

            .hero-category {
                min-height: 28vh;
                padding: 24px 0;
            }

            .hero-category h1 {
                font-size: 24px;
            }

            .hero-category .hero-sub {
                font-size: 14px;
            }

            .section-title-wrap h2 {
                font-size: 22px;
            }

            .score-card {
                padding: 14px;
            }

            .score-team-row {
                gap: 8px;
            }

            .score-team {
                font-size: 14px;
            }

            .score-value {
                font-size: 22px;
            }

            .score-detail-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .player-card {
                padding: 16px;
            }

            .footer-sport .footer-wrap {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }

        @media (max-width: 520px) {
            .score-card .score-league {
                font-size: 11px;
            }

            .score-team {
                font-size: 13px;
            }

            .score-value {
                font-size: 20px;
            }

            .filter-tag-row {
                gap: 6px;
            }

            .filter-tag {
                padding: 6px 12px;
                font-size: 12px;
            }

            .cta-card {
                padding: 20px 16px;
            }

            .cta-card .cta-content h2 {
                font-size: 20px;
            }
        }

/* roulang page: category1 */
:root {
            --ink: #0B0F14;
            --ink-2: #12181E;
            --acid: #C6FF2E;
            --acid-dark: #B7F04A;
            --live: #FF4D2B;
            --paper: #F4F7EE;
            --card: #FFFFFF;
            --line: #E0E5D6;
            --text: #141A20;
            --text-light: #5A6672;
            --text-dark-bg: #F3F6EF;
            --text-dark-muted: rgba(243, 246, 239, 0.65);
            --shadow-card: 0 8px 24px rgba(20, 26, 32, 0.08);
            --shadow-card-hover: 0 12px 32px rgba(20, 26, 32, 0.12);
            --shadow-dark: 0 8px 28px rgba(0, 0, 0, 0.35);
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-input: 10px;
            --radius-pill: 999px;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-num: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --transition: 0.22s ease;
            --container-max: 1200px;
            --section-pad: 72px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--paper);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), opacity var(--transition);
        }
        a:hover {
            color: var(--ink);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }
        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        /* Navbar */
        .navbar-sport {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: rgba(11, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 12px 0;
            transition: background var(--transition);
        }
        .navbar-sport .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .navbar-brand-sport {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .navbar-brand-sport:hover {
            color: var(--acid);
        }
        .brand-mark {
            width: 28px;
            height: 28px;
            background: var(--acid);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink);
            font-size: 14px;
            font-weight: 900;
        }
        .btn-cta {
            background: var(--acid);
            color: var(--ink);
            font-weight: 700;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            font-size: 14px;
            letter-spacing: 0.3px;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-cta:hover {
            background: #fff;
            color: var(--ink);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(198, 255, 46, 0.3);
        }
        .btn-cta:focus,
        .btn-cta:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
            box-shadow: none;
        }
        .btn-cta:active {
            transform: translateY(0);
            background: var(--acid-dark);
        }
        /* Buttons */
        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }
        .btn-primary {
            background: var(--acid);
            color: var(--ink);
            border-color: var(--acid);
            font-weight: 700;
        }
        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background: #fff;
            color: var(--ink);
            border-color: var(--acid);
            box-shadow: 0 6px 16px rgba(198, 255, 46, 0.25);
        }
        .btn-primary:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
        }
        .btn-outline-dark {
            border-color: var(--ink);
            color: var(--ink);
        }
        .btn-outline-dark:hover {
            background: var(--ink);
            color: #fff;
            border-color: var(--ink);
        }
        .btn-outline-acid {
            border-color: var(--acid);
            color: var(--acid);
            background: transparent;
        }
        .btn-outline-acid:hover {
            background: var(--acid);
            color: var(--ink);
            border-color: var(--acid);
        }
        /* Breadcrumb */
        .breadcrumb-sport {
            margin: 0;
            padding: 10px 0;
            font-size: 13px;
            color: var(--text-dark-muted);
            background: transparent;
        }
        .breadcrumb-sport .breadcrumb-item a {
            color: var(--text-dark-muted);
            transition: color var(--transition);
        }
        .breadcrumb-sport .breadcrumb-item a:hover {
            color: var(--acid);
        }
        .breadcrumb-sport .breadcrumb-item.active {
            color: #fff;
        }
        .breadcrumb-sport .breadcrumb-item+.breadcrumb-item::before {
            content: "›";
            color: rgba(243, 246, 239, 0.35);
            padding: 0 6px;
        }
        /* Category Hero */
        .category-hero {
            position: relative;
            background-color: var(--ink);
            background-image: linear-gradient(rgba(11, 15, 20, 0.88), rgba(11, 15, 20, 0.94)), url('/assets/images/3d56efe5b6270af6.webp');
            background-size: cover;
            background-position: center;
            padding: 72px 0 40px;
            margin-top: 52px;
            position: relative;
            overflow: hidden;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--acid), transparent);
            opacity: 0.5;
        }
        .category-hero .grid-lines {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(198, 255, 46, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(198, 255, 46, 0.06) 1px, transparent 1px);
            background-size: 42px 42px;
            pointer-events: none;
        }
        .category-hero .container-custom {
            position: relative;
            z-index: 2;
        }
        .category-hero-inner {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }
        .category-hero-left {
            flex: 1 1 55%;
            min-width: 0;
        }
        .category-hero-left h1 {
            font-size: 38px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
            margin: 0 0 12px;
            line-height: 1.25;
        }
        .category-hero-left h1 .text-acid {
            color: var(--acid);
        }
        .category-hero-left p {
            color: var(--text-dark-muted);
            font-size: 15px;
            max-width: 520px;
            margin: 0;
            line-height: 1.7;
        }
        .category-hero-right {
            flex: 0 0 280px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .category-hero-right .date-badge {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-card);
            padding: 14px 18px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        .category-hero-right .date-badge i {
            color: var(--acid);
            font-size: 16px;
        }
        .category-hero-right .mini-stat {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-card);
            padding: 14px 18px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
        }
        .category-hero-right .mini-stat strong {
            color: var(--acid);
            font-family: var(--font-num);
            font-size: 22px;
            font-weight: 600;
        }
        /* Section */
        .section-sport {
            padding: var(--section-pad) 0;
        }
        .section-sport.alt {
            background: #fff;
        }
        .section-head {
            margin-bottom: 32px;
        }
        .section-head h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--ink);
            margin: 0 0 8px;
            letter-spacing: 0.3px;
        }
        .section-head p {
            color: var(--text-light);
            font-size: 15px;
            margin: 0;
            max-width: 640px;
        }
        .section-head .head-tag {
            display: inline-block;
            background: rgba(198, 255, 46, 0.15);
            color: var(--ink);
            font-weight: 700;
            font-size: 12px;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            border: 1px solid rgba(198, 255, 46, 0.4);
        }
        /* Filter Tags */
        .filter-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .filter-tag {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-pill);
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            user-select: none;
        }
        .filter-tag:hover {
            border-color: var(--ink);
            color: var(--ink);
        }
        .filter-tag.active {
            background: var(--ink);
            border-color: var(--ink);
            color: var(--acid);
        }
        .filter-tag:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
        }
        /* Score List */
        .score-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .score-row {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            transition: all var(--transition);
            box-shadow: 0 2px 8px rgba(20, 26, 32, 0.04);
        }
        .score-row:hover {
            border-color: rgba(198, 255, 46, 0.6);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }
        .score-row .league-info {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 0 0 auto;
            min-width: 120px;
        }
        .score-row .league-info .league-name {
            font-weight: 700;
            font-size: 13px;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .score-row .match-info {
            flex: 1 1 auto;
            min-width: 180px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .score-row .team {
            font-weight: 600;
            font-size: 15px;
            color: var(--text);
        }
        .score-row .team.win {
            color: var(--ink);
            font-weight: 800;
        }
        .score-row .score {
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 30px;
            line-height: 1;
            color: var(--ink);
            letter-spacing: 1px;
            font-variant-numeric: tabular-nums;
        }
        .score-row .score .score-sep {
            color: var(--text-light);
            font-size: 22px;
            margin: 0 4px;
            font-weight: 400;
        }
        .score-row .stat-badge {
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.3px;
            flex: 0 0 auto;
        }
        .stat-badge.live {
            background: var(--live);
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .stat-badge.live .dot {
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: pulse-dot 1.2s ease-in-out infinite;
        }
        .stat-badge.upcoming {
            background: rgba(90, 102, 114, 0.12);
            color: var(--text-light);
        }
        .stat-badge.finished {
            background: rgba(90, 102, 114, 0.08);
            color: var(--text-light);
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.5); }
        }
        .score-row .time-min {
            font-family: var(--font-num);
            font-size: 13px;
            color: var(--text-light);
            font-weight: 500;
            flex: 0 0 auto;
        }
        /* Focus Match Comparison */
        .comparison-card {
            background: var(--ink);
            border-radius: var(--radius-card);
            padding: 28px 32px;
            color: #fff;
            box-shadow: var(--shadow-dark);
            position: relative;
            overflow: hidden;
        }
        .comparison-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--acid), var(--live));
        }
        .comparison-card .comparison-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 24px;
        }
        .comparison-card .comparison-header .match-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 77, 43, 0.15);
            border: 1px solid rgba(255, 77, 43, 0.4);
            color: var(--live);
            font-weight: 700;
            font-size: 12px;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.3px;
        }
        .comparison-card .comparison-header h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            color: #fff;
            letter-spacing: 0.3px;
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 24px;
            align-items: center;
        }
        .comparison-team {
            text-align: center;
        }
        .comparison-team .team-name {
            font-weight: 700;
            font-size: 18px;
            color: #fff;
            margin-bottom: 12px;
        }
        .comparison-team .metric-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .comparison-team .metric-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 13px;
            color: var(--text-dark-muted);
        }
        .comparison-team .metric-item .metric-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            min-width: 60px;
        }
        .comparison-team .metric-item .metric-bar .bar-fill {
            height: 100%;
            background: var(--acid);
            border-radius: 3px;
            transition: width 0.6s ease;
        }
        .comparison-team .metric-item .metric-bar .bar-fill.red {
            background: var(--live);
        }
        .comparison-team .metric-item .metric-value {
            font-family: var(--font-num);
            font-weight: 600;
            font-size: 14px;
            color: #fff;
            min-width: 30px;
            text-align: right;
        }
        .comparison-vs {
            font-family: var(--font-num);
            font-weight: 800;
            font-size: 42px;
            color: var(--acid);
            letter-spacing: 2px;
            text-align: center;
        }
        /* Standings Table */
        .standings-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .standings-card .standings-header {
            background: var(--ink);
            color: #fff;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .standings-card .standings-header h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 0;
            letter-spacing: 0.3px;
        }
        .standings-card .standings-header .round-badge {
            background: rgba(198, 255, 46, 0.15);
            border: 1px solid rgba(198, 255, 46, 0.4);
            color: var(--acid);
            font-weight: 700;
            font-size: 12px;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
        }
        .standings-table-wrap {
            overflow-x: auto;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 560px;
        }
        .standings-table thead th {
            background: #FAFBF7;
            color: var(--text-light);
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 10px 16px;
            text-align: left;
            border-bottom: 1px solid var(--line);
            white-space: nowrap;
        }
        .standings-table tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--line);
            white-space: nowrap;
        }
        .standings-table tbody tr:last-child td {
            border-bottom: none;
        }
        .standings-table tbody tr:hover {
            background: rgba(198, 255, 46, 0.06);
        }
        .standings-table .rank {
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 16px;
            color: var(--ink);
            width: 36px;
        }
        .standings-table .rank.top-1 { color: var(--live); }
        .standings-table .rank.top-2 { color: #E8A33D; }
        .standings-table .rank.top-3 { color: #6B8E23; }
        .standings-table .team-cell {
            font-weight: 600;
            color: var(--text);
        }
        .standings-table .pts {
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 16px;
            color: var(--ink);
        }
        /* News List */
        .news-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: 0 2px 8px rgba(20, 26, 32, 0.04);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .news-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .news-card .news-img-wrap {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        .news-card .news-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .news-card:hover .news-img-wrap img {
            transform: scale(1.03);
        }
        .news-card .news-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--ink);
            color: var(--acid);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.3px;
            z-index: 2;
        }
        .news-card .news-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-card .news-body h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            margin: 0 0 8px;
            line-height: 1.5;
        }
        .news-card .news-body p {
            font-size: 13px;
            color: var(--text-light);
            margin: 0 0 12px;
            line-height: 1.6;
            flex: 1;
        }
        .news-card .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-light);
            border-top: 1px solid var(--line);
            padding-top: 12px;
        }
        /* Subscribe CTA */
        .subscribe-cta {
            background: var(--ink);
            border-radius: var(--radius-card);
            padding: 40px 48px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-dark);
        }
        .subscribe-cta::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(198, 255, 46, 0.12), transparent 70%);
            pointer-events: none;
        }
        .subscribe-cta .cta-info {
            flex: 1 1 380px;
            z-index: 1;
        }
        .subscribe-cta .cta-info h2 {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            margin: 0 0 10px;
            letter-spacing: 0.3px;
        }
        .subscribe-cta .cta-info p {
            color: var(--text-dark-muted);
            font-size: 14px;
            margin: 0;
            max-width: 420px;
            line-height: 1.7;
        }
        .subscribe-cta .cta-form {
            flex: 1 1 320px;
            display: flex;
            gap: 12px;
            z-index: 1;
        }
        .subscribe-cta .cta-form input {
            flex: 1;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--radius-input);
            padding: 12px 16px;
            color: #fff;
            font-size: 14px;
            transition: border-color var(--transition);
            min-width: 0;
        }
        .subscribe-cta .cta-form input::placeholder {
            color: rgba(243, 246, 239, 0.4);
        }
        .subscribe-cta .cta-form input:focus {
            outline: none;
            border-color: var(--acid);
            box-shadow: 0 0 0 3px rgba(198, 255, 46, 0.15);
        }
        .subscribe-cta .cta-form .btn-primary {
            white-space: nowrap;
            padding: 12px 24px;
            font-size: 14px;
        }
        .form-tip {
            font-size: 12px;
            color: var(--text-dark-muted);
            margin-top: 8px;
        }
        .form-success-tip {
            display: none;
            font-size: 14px;
            color: var(--acid);
            margin-top: 10px;
            font-weight: 600;
        }
        /* FAQ */
        .accordion-sport .accordion-item {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(20, 26, 32, 0.04);
        }
        .accordion-sport .accordion-button {
            background: var(--card);
            color: var(--ink);
            font-weight: 700;
            font-size: 15px;
            padding: 18px 24px;
            border: none;
            box-shadow: none;
            border-radius: var(--radius-card) !important;
        }
        .accordion-sport .accordion-button:not(.collapsed) {
            background: var(--card);
            color: var(--ink);
            border-bottom: 1px solid var(--acid);
            border-radius: var(--radius-card) var(--radius-card) 0 0 !important;
        }
        .accordion-sport .accordion-button:focus {
            box-shadow: 0 0 0 2px rgba(198, 255, 46, 0.4);
            border-color: var(--acid);
        }
        .accordion-sport .accordion-button::after {
            filter: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B0F14'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        .accordion-sport .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B0F14'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        .accordion-sport .accordion-body {
            padding: 18px 24px;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            background: #FAFBF7;
        }
        /* Footer */
        .footer-sport {
            background: var(--ink);
            color: var(--text-dark-muted);
            padding: 24px 0;
            border-top: 2px solid var(--acid);
        }
        .footer-sport .footer-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-sport .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 16px;
            color: #fff;
        }
        .footer-sport .footer-copy {
            font-size: 13px;
            color: var(--text-dark-muted);
        }
        .footer-sport .footer-home {
            font-size: 13px;
            color: var(--text-dark-muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition);
        }
        .footer-sport .footer-home:hover {
            color: var(--acid);
        }
        /* Responsive */
        @media (max-width: 991px) {
            .category-hero {
                padding: 64px 0 32px;
                margin-top: 48px;
            }
            .category-hero-left h1 {
                font-size: 30px;
            }
            .category-hero-right {
                flex: 1 1 100%;
                flex-direction: row;
                flex-wrap: wrap;
            }
            .category-hero-right .date-badge,
            .category-hero-right .mini-stat {
                flex: 1 1 auto;
                min-width: 180px;
            }
            .comparison-card {
                padding: 20px;
            }
            .subscribe-cta {
                padding: 32px 28px;
            }
            .subscribe-cta .cta-info h2 {
                font-size: 22px;
            }
        }
        @media (max-width: 767px) {
            :root {
                --section-pad: 48px;
            }
            .category-hero {
                padding: 56px 0 28px;
                margin-top: 44px;
            }
            .category-hero-left h1 {
                font-size: 26px;
            }
            .category-hero-left p {
                font-size: 14px;
            }
            .category-hero-right .date-badge,
            .category-hero-right .mini-stat {
                min-width: 100%;
            }
            .score-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px;
            }
            .score-row .match-info {
                min-width: 100%;
                flex-wrap: wrap;
            }
            .score-row .league-info {
                min-width: auto;
            }
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .comparison-vs {
                font-size: 28px;
                order: -1;
            }
            .subscribe-cta {
                flex-direction: column;
                padding: 28px 20px;
            }
            .subscribe-cta .cta-form {
                flex-direction: column;
            }
            .subscribe-cta .cta-form .btn-primary {
                width: 100%;
            }
            .footer-sport .footer-wrap {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            .section-head h2 {
                font-size: 22px;
            }
            .filter-tags {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 6px;
                gap: 8px;
                -webkit-overflow-scrolling: touch;
            }
            .filter-tag {
                flex: 0 0 auto;
                padding: 6px 14px;
                font-size: 13px;
            }
        }
        @media (max-width: 575px) {
            .navbar-sport .nav-wrap {
                gap: 10px;
            }
            .navbar-brand-sport {
                font-size: 17px;
            }
            .navbar-brand-sport .brand-mark {
                width: 24px;
                height: 24px;
                font-size: 12px;
            }
            .btn-cta {
                padding: 8px 14px;
                font-size: 12px;
                gap: 6px;
            }
            .category-hero-left h1 {
                font-size: 23px;
            }
            .comparison-card {
                padding: 16px;
            }
            .comparison-card .comparison-header h3 {
                font-size: 16px;
            }
            .comparison-team .team-name {
                font-size: 15px;
            }
            .standings-card .standings-header {
                padding: 12px 16px;
            }
            .standings-table thead th,
            .standings-table tbody td {
                padding: 8px 12px;
                font-size: 12px;
            }
            .accordion-sport .accordion-button {
                padding: 14px 18px;
                font-size: 14px;
            }
            .accordion-sport .accordion-body {
                padding: 14px 18px;
                font-size: 13px;
            }
        }

/* roulang page: category4 */
:root {
            --ink: #0B0F14;
            --ink-2: #12181E;
            --acid: #C6FF2E;
            --acid-dark: #B7F04A;
            --live: #FF4D2B;
            --paper: #F4F7EE;
            --card: #FFFFFF;
            --line: #E0E5D6;
            --text: #141A20;
            --text-light: #5A6672;
            --text-dark-bg: #F3F6EF;
            --text-dark-muted: rgba(243, 246, 239, 0.65);
            --shadow-card: 0 8px 24px rgba(20, 26, 32, 0.08);
            --shadow-card-hover: 0 12px 32px rgba(20, 26, 32, 0.12);
            --shadow-dark: 0 8px 28px rgba(0, 0, 0, 0.35);
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-input: 10px;
            --radius-pill: 999px;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-num: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --transition: 0.22s ease;
            --container-max: 1200px;
            --section-pad: 48px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--paper);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), opacity var(--transition);
        }
        a:hover {
            color: var(--ink);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }
        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        @media (max-width: 575.98px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }
        /* Navbar */
        .navbar-sport {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: rgba(11, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 12px 0;
            transition: background var(--transition);
        }
        .navbar-sport .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .navbar-brand-sport {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .navbar-brand-sport:hover {
            color: var(--acid);
        }
        .brand-mark {
            width: 28px;
            height: 28px;
            background: var(--acid);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink);
            font-size: 14px;
            font-weight: 900;
            flex-shrink: 0;
        }
        .btn-cta {
            background: var(--acid);
            color: var(--ink);
            font-weight: 700;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            font-size: 14px;
            letter-spacing: 0.3px;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-cta:hover {
            background: #fff;
            color: var(--ink);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(198, 255, 46, 0.3);
        }
        .btn-cta:focus,
        .btn-cta:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
            box-shadow: none;
        }
        .btn-cta:active {
            transform: translateY(0);
            background: var(--acid-dark);
        }
        /* Buttons general */
        .btn {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }
        .btn-primary {
            background: var(--acid);
            color: var(--ink);
            border-color: var(--acid);
            font-weight: 700;
        }
        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background: #fff;
            color: var(--ink);
            border-color: var(--acid);
            box-shadow: 0 6px 16px rgba(198, 255, 46, 0.25);
        }
        .btn-primary:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
        }
        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.35);
            color: #fff;
        }
        .btn-outline-light:hover {
            background: #fff;
            color: var(--ink);
            border-color: #fff;
        }
        .btn-outline-dark {
            border-color: var(--ink);
            color: var(--ink);
        }
        .btn-outline-dark:hover {
            background: var(--ink);
            color: #fff;
            border-color: var(--ink);
        }
        /* Breadcrumb custom */
        .breadcrumb-sport {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-light);
            padding: 16px 0 0;
            margin-bottom: 0;
            flex-wrap: wrap;
        }
        .breadcrumb-sport a {
            color: var(--text-light);
            transition: color var(--transition);
        }
        .breadcrumb-sport a:hover {
            color: var(--ink);
        }
        .breadcrumb-sport .separator {
            color: #B0B8A4;
            font-size: 11px;
        }
        .breadcrumb-sport .current {
            color: var(--ink);
            font-weight: 600;
        }
        /* Hero category banner - narrower than home */
        .hero-category {
            position: relative;
            background-color: var(--ink);
            background-image: linear-gradient(rgba(11, 15, 20, 0.82), rgba(11, 15, 20, 0.9)), url('/assets/images/11d8608389129185.webp');
            background-size: cover;
            background-position: center;
            min-height: 36vh;
            display: flex;
            align-items: center;
            padding: 80px 0 40px;
            margin-top: 0;
            position: relative;
            overflow: hidden;
        }
        .hero-category::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(198, 255, 46, 0.05) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
        }
        .hero-category .container-custom {
            position: relative;
            z-index: 1;
        }
        .hero-category .hero-cat-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }
        .hero-category .hero-cat-title {
            flex: 1 1 55%;
        }
        .hero-category .hero-cat-title h1 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
            line-height: 1.3;
        }
        .hero-category .hero-cat-title h1 span {
            color: var(--acid);
        }
        .hero-category .hero-cat-title p {
            color: var(--text-dark-muted);
            font-size: 15px;
            max-width: 480px;
            margin-bottom: 0;
        }
        .hero-category .hero-date-filter {
            flex: 1 1 35%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            backdrop-filter: blur(8px);
            min-width: 260px;
        }
        .hero-date-filter .filter-label {
            color: var(--text-dark-muted);
            font-size: 13px;
            margin-bottom: 8px;
        }
        .hero-date-filter .match-date {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
        }
        .hero-date-filter .surface-tags {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .hero-date-filter .surface-tag {
            background: rgba(198, 255, 46, 0.12);
            color: var(--acid);
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            border: 1px solid rgba(198, 255, 46, 0.25);
        }
        /* Section general */
        .section-sport {
            padding: var(--section-pad) 0;
        }
        .section-sport .section-header {
            margin-bottom: 28px;
        }
        .section-sport .section-title {
            font-size: clamp(22px, 2.5vw, 30px);
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .section-sport .section-subtitle {
            color: var(--text-light);
            font-size: 15px;
            max-width: 640px;
            margin-bottom: 0;
        }
        /* Filter tabs bar */
        .filter-tabs-bar {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        .filter-tabs-bar .filter-tab {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-pill);
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-light);
            transition: all var(--transition);
            cursor: pointer;
            white-space: nowrap;
        }
        .filter-tabs-bar .filter-tab:hover {
            border-color: var(--ink);
            color: var(--ink);
        }
        .filter-tabs-bar .filter-tab.active {
            background: var(--ink);
            color: var(--acid);
            border-color: var(--ink);
        }
        /* Sport card */
        .sport-card {
            background: var(--card);
            border-radius: var(--radius-card);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            height: 100%;
        }
        .sport-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(198, 255, 46, 0.4);
        }
        .sport-card .card-top-strip {
            height: 4px;
            background: var(--acid);
        }
        .sport-card .card-top-strip.live-strip {
            background: var(--live);
        }
        .sport-card .card-body {
            padding: 18px 20px;
        }
        .sport-card .card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 6px;
        }
        .sport-card .card-text {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.65;
            margin-bottom: 0;
        }
        /* Tennis score card */
        .tennis-match-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition);
            margin-bottom: 16px;
        }
        .tennis-match-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(198, 255, 46, 0.5);
            transform: translateY(-2px);
        }
        .tennis-match-card .match-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 18px;
            background: var(--paper);
            border-bottom: 1px solid var(--line);
            gap: 12px;
            flex-wrap: wrap;
        }
        .tennis-match-card .match-tour {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .tennis-match-card .match-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
        }
        .live-badge {
            background: var(--live);
            color: #fff;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            animation: livePulse 1.8s infinite;
        }
        .live-badge .dot {
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: dotPulse 1.8s infinite;
        }
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.65;
            }
        }
        @keyframes dotPulse {
            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.6);
                opacity: 0.6;
            }
        }
        .tennis-match-card .match-body {
            padding: 16px 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
        }
        .tennis-match-card .player-block {
            flex: 1 1 30%;
            min-width: 140px;
        }
        .tennis-match-card .player-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 2px;
        }
        .tennis-match-card .player-country {
            font-size: 12px;
            color: var(--text-light);
        }
        .tennis-match-card .player-serve-stats {
            display: flex;
            gap: 12px;
            margin-top: 6px;
            flex-wrap: wrap;
        }
        .tennis-match-card .player-serve-stats .stat-item {
            font-size: 12px;
            color: var(--text-light);
        }
        .tennis-match-card .player-serve-stats .stat-item strong {
            color: var(--ink);
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
            font-size: 14px;
        }
        .tennis-match-card .score-center {
            flex: 0 0 auto;
            text-align: center;
            min-width: 100px;
        }
        .tennis-match-card .score-set {
            font-size: 32px;
            font-weight: 800;
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
            color: var(--ink);
            line-height: 1.1;
            letter-spacing: 2px;
        }
        .tennis-match-card .score-set .live-indicator {
            color: var(--live);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0;
        }
        .tennis-match-card .score-detail {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 4px;
        }
        .tennis-match-card .match-footer {
            padding: 10px 18px;
            border-top: 1px solid var(--line);
            background: rgba(244, 247, 238, 0.5);
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--text-light);
        }
        .tennis-match-card .match-footer span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .tennis-match-card .match-footer i {
            color: var(--text-light);
            font-size: 11px;
        }
        /* Key stats section */
        .key-stat-block {
            background: var(--ink-2);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            color: var(--text-dark-bg);
            border: 1px solid rgba(255, 255, 255, 0.08);
            height: 100%;
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .key-stat-block:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-dark);
        }
        .key-stat-block .key-stat-icon {
            width: 40px;
            height: 40px;
            background: rgba(198, 255, 46, 0.12);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--acid);
            font-size: 18px;
            margin-bottom: 12px;
        }
        .key-stat-block .key-stat-value {
            font-size: 28px;
            font-weight: 800;
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
            color: #fff;
            line-height: 1.2;
        }
        .key-stat-block .key-stat-label {
            font-size: 13px;
            color: var(--text-dark-muted);
            margin-top: 4px;
        }
        /* Ranking list */
        .ranking-list {
            background: var(--card);
            border-radius: var(--radius-card);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }
        .ranking-list .rank-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            background: var(--ink);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
        }
        .ranking-list .rank-header .rank-badge {
            background: var(--acid);
            color: var(--ink);
            padding: 3px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 700;
        }
        .ranking-list .rank-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            border-bottom: 1px solid var(--line);
            transition: background var(--transition);
        }
        .ranking-list .rank-item:last-child {
            border-bottom: none;
        }
        .ranking-list .rank-item:hover {
            background: rgba(198, 255, 46, 0.08);
        }
        .ranking-list .rank-number {
            width: 28px;
            height: 28px;
            background: var(--paper);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 13px;
            color: var(--text-light);
            flex-shrink: 0;
        }
        .ranking-list .rank-number.top3 {
            background: var(--acid);
            color: var(--ink);
        }
        .ranking-list .rank-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--ink);
            flex: 1;
        }
        .ranking-list .rank-points {
            font-size: 13px;
            color: var(--text-light);
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
        }
        .ranking-list .rank-trend {
            font-size: 12px;
            font-weight: 600;
        }
        .ranking-list .rank-trend.up {
            color: #2E8B57;
        }
        .ranking-list .rank-trend.down {
            color: var(--live);
        }
        /* News list */
        .news-list-sport {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .news-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 14px 18px;
            transition: all var(--transition);
            cursor: pointer;
        }
        .news-item:hover {
            border-color: rgba(198, 255, 46, 0.6);
            box-shadow: var(--shadow-card);
            transform: translateX(3px);
        }
        .news-item .news-tag {
            flex-shrink: 0;
            padding: 3px 12px;
            border-radius: var(--radius-pill);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.3px;
            background: var(--paper);
            color: var(--text-light);
        }
        .news-item .news-tag.tag-news {
            background: rgba(198, 255, 46, 0.15);
            color: var(--ink);
        }
        .news-item .news-tag.tag-data {
            background: rgba(255, 77, 43, 0.1);
            color: var(--live);
        }
        .news-item .news-tag.tag-predict {
            background: rgba(11, 15, 20, 0.08);
            color: var(--ink);
        }
        .news-item .news-content {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
        }
        .news-item .news-meta {
            flex-shrink: 0;
            font-size: 12px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        /* CTA section */
        .cta-section {
            background: var(--ink);
            border-radius: var(--radius-card);
            padding: 40px 36px;
            color: var(--text-dark-bg);
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            right: -60px;
            top: -60px;
            width: 200px;
            height: 200px;
            background: rgba(198, 255, 46, 0.06);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section .cta-info {
            flex: 1 1 45%;
            min-width: 280px;
            position: relative;
            z-index: 1;
        }
        .cta-section .cta-info h3 {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }
        .cta-section .cta-info p {
            color: var(--text-dark-muted);
            font-size: 14px;
            margin-bottom: 0;
        }
        .cta-section .cta-form {
            flex: 1 1 40%;
            min-width: 260px;
            position: relative;
            z-index: 1;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .cta-section .cta-form input {
            flex: 1;
            min-width: 160px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-input);
            padding: 10px 16px;
            color: #fff;
            font-size: 14px;
            outline: none;
            transition: border-color var(--transition), background var(--transition);
        }
        .cta-section .cta-form input::placeholder {
            color: rgba(243, 246, 239, 0.4);
        }
        .cta-section .cta-form input:focus {
            border-color: var(--acid);
            background: rgba(255, 255, 255, 0.1);
            outline: 2px solid rgba(198, 255, 46, 0.3);
            outline-offset: 1px;
        }
        /* FAQ accordion custom */
        .accordion-sport .accordion-item {
            border: 1px solid var(--line);
            border-radius: var(--radius-card) !important;
            margin-bottom: 10px;
            overflow: hidden;
            background: var(--card);
        }
        .accordion-sport .accordion-button {
            background: var(--card);
            color: var(--ink);
            font-weight: 600;
            font-size: 15px;
            padding: 16px 20px;
            border: none;
            box-shadow: none;
            transition: background var(--transition), color var(--transition);
        }
        .accordion-sport .accordion-button:not(.collapsed) {
            background: var(--ink);
            color: var(--acid);
            box-shadow: none;
            border-bottom: 1px solid rgba(198, 255, 46, 0.3);
        }
        .accordion-sport .accordion-button::after {
            filter: invert(20%) sepia(10%) saturate(300%) hue-rotate(90deg);
        }
        .accordion-sport .accordion-button:not(.collapsed)::after {
            filter: invert(90%) sepia(20%) saturate(600%) hue-rotate(40deg);
        }
        .accordion-sport .accordion-button:focus {
            box-shadow: 0 0 0 2px rgba(198, 255, 46, 0.5);
            border-color: var(--acid);
        }
        .accordion-sport .accordion-body {
            padding: 16px 20px;
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
        }
        /* Footer */
        .footer-sport {
            background: var(--ink);
            padding: 32px 0;
            border-top: 2px solid var(--acid);
            margin-top: 40px;
        }
        .footer-sport .footer-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .footer-sport .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            color: #fff;
        }
        .footer-sport .footer-brand .brand-mark {
            width: 26px;
            height: 26px;
            font-size: 13px;
        }
        .footer-sport .footer-copy {
            color: var(--text-dark-muted);
            font-size: 13px;
        }
        .footer-sport .footer-home {
            color: var(--text-dark-muted);
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition);
        }
        .footer-sport .footer-home:hover {
            color: var(--acid);
        }
        /* Utilities */
        .font-num {
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
        }
        .text-acid {
            color: var(--acid);
        }
        .text-live {
            color: var(--live);
        }
        .bg-ink-2 {
            background: var(--ink-2);
        }
        /* Responsive */
        @media (max-width: 991.98px) {
            .hero-category {
                min-height: 32vh;
                padding-top: 76px;
            }
            .hero-category .hero-cat-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .hero-category .hero-date-filter {
                width: 100%;
            }
            .cta-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                padding: 30px 24px;
            }
            .cta-section .cta-form {
                width: 100%;
            }
        }
        @media (max-width: 767.98px) {
            .section-sport {
                padding: 36px 0;
            }
            .tennis-match-card .match-body {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }
            .tennis-match-card .score-center {
                width: 100%;
                text-align: center;
                padding: 8px 0;
                border-top: 1px solid var(--line);
                border-bottom: 1px solid var(--line);
            }
            .tennis-match-card .player-block {
                min-width: 100%;
            }
            .filter-tabs-bar {
                gap: 6px;
            }
            .filter-tabs-bar .filter-tab {
                padding: 6px 12px;
                font-size: 12px;
            }
            .news-item {
                flex-wrap: wrap;
                gap: 8px;
            }
            .news-item .news-meta {
                width: 100%;
                justify-content: flex-start;
            }
            .footer-sport .footer-wrap {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
        }
        @media (max-width: 575.98px) {
            .navbar-sport {
                padding: 8px 0;
            }
            .navbar-brand-sport {
                font-size: 17px;
                gap: 8px;
            }
            .btn-cta {
                padding: 8px 14px;
                font-size: 12px;
                gap: 6px;
            }
            .hero-category {
                min-height: 28vh;
                padding-top: 68px;
                padding-bottom: 24px;
            }
            .hero-category .hero-cat-title h1 {
                font-size: 26px;
            }
            .hero-category .hero-date-filter {
                padding: 16px;
            }
            .hero-category .hero-date-filter .match-date {
                font-size: 20px;
            }
            .tennis-match-card .score-set {
                font-size: 26px;
            }
            .cta-section .cta-form input {
                width: 100%;
                min-width: 100%;
            }
            .cta-section .cta-form .btn-primary {
                width: 100%;
            }
        }

/* roulang page: category3 */
:root {
            --ink: #0B0F14;
            --ink-2: #12181E;
            --acid: #C6FF2E;
            --acid-dark: #B7F04A;
            --live: #FF4D2B;
            --paper: #F4F7EE;
            --card: #FFFFFF;
            --line: #E0E5D6;
            --text: #141A20;
            --text-light: #5A6672;
            --text-dark-bg: #F3F6EF;
            --text-dark-muted: rgba(243, 246, 239, 0.65);
            --shadow-card: 0 8px 24px rgba(20, 26, 32, 0.08);
            --shadow-card-hover: 0 12px 32px rgba(20, 26, 32, 0.12);
            --shadow-dark: 0 8px 28px rgba(0, 0, 0, 0.35);
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-input: 10px;
            --radius-pill: 999px;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-num: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --transition: 0.22s ease;
            --container-max: 1200px;
            --section-pad: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--paper);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 64px;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), opacity var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
        }

        a:hover {
            color: var(--ink);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        @media (max-width: 576px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ========== Navbar ========== */
        .navbar-sport {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background: rgba(11, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 12px 0;
            transition: background var(--transition);
        }

        .navbar-sport .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .navbar-brand-sport {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .navbar-brand-sport:hover {
            color: var(--acid);
        }

        .brand-mark {
            width: 28px;
            height: 28px;
            background: var(--acid);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink);
            font-size: 14px;
            font-weight: 900;
            flex-shrink: 0;
        }

        .btn-cta {
            background: var(--acid);
            color: var(--ink);
            font-weight: 700;
            padding: 10px 20px;
            border-radius: var(--radius-btn);
            border: none;
            font-size: 14px;
            letter-spacing: 0.3px;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-cta:hover {
            background: #fff;
            color: var(--ink);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(198, 255, 46, 0.3);
        }

        .btn-cta:focus,
        .btn-cta:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
            box-shadow: none;
        }

        .btn-cta:active {
            transform: translateY(0);
            background: var(--acid-dark);
        }

        /* ========== Breadcrumb ========== */
        .breadcrumb-sport {
            background: transparent;
            padding: 20px 0 0;
            margin: 0;
            font-size: 13px;
            color: var(--text-light);
        }

        .breadcrumb-sport a {
            color: var(--text-light);
            transition: color var(--transition);
        }

        .breadcrumb-sport a:hover {
            color: var(--ink);
        }

        .breadcrumb-sport .separator {
            margin: 0 8px;
            color: var(--line);
        }

        .breadcrumb-sport .current {
            color: var(--text);
            font-weight: 600;
        }

        /* ========== Category Hero Banner ========== */
        .category-hero {
            position: relative;
            background-color: var(--ink);
            background-image: linear-gradient(rgba(11, 15, 20, 0.85), rgba(11, 15, 20, 0.9)), url('/assets/images/14e7fb1a8025c71d.webp');
            background-size: cover;
            background-position: center;
            min-height: 36vh;
            display: flex;
            align-items: center;
            border-radius: 0 0 var(--radius-card) var(--radius-card);
            margin-top: 12px;
            overflow: hidden;
            border: 1px solid rgba(198, 255, 46, 0.12);
        }

        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(198, 255, 46, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(198, 255, 46, 0.04) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        .category-hero .hero-content {
            position: relative;
            z-index: 1;
            padding: 48px 0;
            width: 100%;
        }

        .category-hero .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(198, 255, 46, 0.12);
            color: var(--acid);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            margin-bottom: 16px;
            border: 1px solid rgba(198, 255, 46, 0.2);
        }

        .category-hero h1 {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .category-hero h1 .highlight {
            color: var(--acid);
        }

        .category-hero .hero-subtitle {
            font-size: 16px;
            color: var(--text-dark-muted);
            max-width: 620px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .category-hero .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

        .category-hero .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-dark-muted);
            background: rgba(255, 255, 255, 0.06);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .category-hero .meta-item i {
            color: var(--acid);
            font-size: 12px;
        }

        /* ========== Section Common ========== */
        .sport-section {
            padding: var(--section-pad) 0;
        }

        .sport-section .section-heading {
            margin-bottom: 32px;
        }

        .sport-section .section-title {
            font-size: 26px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: 0.4px;
            margin-bottom: 8px;
            line-height: 1.35;
        }

        .sport-section .section-subtitle {
            font-size: 15px;
            color: var(--text-light);
            max-width: 680px;
            line-height: 1.7;
        }

        .section-divider {
            height: 1px;
            background: var(--line);
            margin: 0;
            opacity: 0.7;
        }

        /* ========== Badge / Tag ========== */
        .badge-sport {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            text-transform: uppercase;
        }

        .badge-live {
            background: var(--live);
            color: #fff;
            animation: pulseLive 1.6s ease-in-out infinite;
        }

        @keyframes pulseLive {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }

        .badge-finished {
            background: #E8ECE1;
            color: var(--text-light);
        }

        .badge-upcoming {
            background: rgba(198, 255, 46, 0.2);
            color: #4A6A00;
            border: 1px solid rgba(198, 255, 46, 0.4);
        }

        .badge-bo {
            background: var(--ink);
            color: var(--acid);
            font-family: var(--font-num);
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* ========== Game Filter Tabs ========== */
        .game-filter-bar {
            display: flex;
            flex-wrap: nowrap;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 6px;
            scrollbar-width: thin;
            scrollbar-color: var(--line) transparent;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 28px;
        }

        .game-filter-bar::-webkit-scrollbar {
            height: 4px;
        }

        .game-filter-bar::-webkit-scrollbar-track {
            background: transparent;
        }

        .game-filter-bar::-webkit-scrollbar-thumb {
            background: var(--line);
            border-radius: 6px;
        }

        .game-filter-btn {
            flex-shrink: 0;
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            border: 1px solid var(--line);
            background: var(--card);
            color: var(--text);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .game-filter-btn i {
            font-size: 13px;
            color: var(--text-light);
            transition: color var(--transition);
        }

        .game-filter-btn:hover {
            border-color: var(--acid);
            background: #FAFCE8;
            color: var(--ink);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(20, 26, 32, 0.06);
        }

        .game-filter-btn:hover i {
            color: #6B8F00;
        }

        .game-filter-btn.active {
            background: var(--ink);
            color: var(--acid);
            border-color: var(--ink);
        }

        .game-filter-btn.active i {
            color: var(--acid);
        }

        .game-filter-btn:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
        }

        /* ========== Match Card List ========== */
        .match-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            margin-bottom: 16px;
            overflow: hidden;
            transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
        }

        .match-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: rgba(198, 255, 46, 0.4);
        }

        .match-card .match-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 18px;
            background: #FAFBF7;
            border-bottom: 1px solid var(--line);
            font-size: 12px;
            color: var(--text-light);
        }

        .match-card .match-header .match-league {
            font-weight: 600;
            color: var(--text);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .match-card .match-header .match-league i {
            color: var(--acid-dark);
            font-size: 12px;
        }

        .match-card .match-header .match-time {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: var(--font-num);
            font-size: 12px;
        }

        .match-card .match-body {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 18px;
            gap: 16px;
            flex-wrap: wrap;
        }

        .match-card .team {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 15px;
            min-width: 0;
            flex: 1;
        }

        .match-card .team.team-right {
            justify-content: flex-end;
            text-align: right;
        }

        .match-card .team .team-logo {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--ink-2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--acid);
            font-size: 13px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .match-card .team-name {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .match-card .score-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            min-width: 90px;
        }

        .match-card .score-main {
            font-family: var(--font-num);
            font-size: 28px;
            font-weight: 800;
            line-height: 1;
            color: var(--ink);
            letter-spacing: 2px;
            font-variant-numeric: tabular-nums;
        }

        .match-card .score-main .colon {
            color: var(--text-light);
            margin: 0 4px;
        }

        .match-card .score-sub {
            font-size: 11px;
            color: var(--text-light);
            font-family: var(--font-num);
            letter-spacing: 0.5px;
        }

        .match-card .match-status {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            min-width: 70px;
        }

        .match-card .bo-tag {
            font-size: 10px;
            font-weight: 700;
            font-family: var(--font-num);
            color: var(--ink);
            background: rgba(198, 255, 46, 0.3);
            padding: 2px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        @media (max-width: 576px) {
            .match-card .match-body {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            .match-card .team {
                flex: 1;
            }
            .match-card .team.team-right {
                justify-content: flex-start;
                text-align: left;
            }
            .match-card .score-center {
                align-items: center;
                flex-direction: row;
                justify-content: center;
                gap: 10px;
            }
            .match-card .score-main {
                font-size: 24px;
            }
            .match-card .match-status {
                flex-direction: row;
                justify-content: center;
                gap: 8px;
            }
        }

        /* ========== Button More ========== */
        .btn-more-wrap {
            text-align: center;
            margin-top: 8px;
        }

        .btn-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--line);
            background: var(--card);
            color: var(--text);
            font-weight: 600;
            font-size: 14px;
            transition: all var(--transition);
        }

        .btn-more:hover {
            background: var(--ink);
            color: var(--acid);
            border-color: var(--ink);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(20, 26, 32, 0.12);
        }

        .btn-more:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
        }

        /* ========== Win Rate Comparison ========== */
        .winrate-block {
            background: var(--ink-2);
            border-radius: var(--radius-card);
            padding: 28px;
            color: var(--text-dark-bg);
            box-shadow: var(--shadow-dark);
            border: 1px solid rgba(198, 255, 46, 0.1);
            height: 100%;
        }

        .winrate-block .winrate-title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
        }

        .winrate-block .winrate-title i {
            color: var(--acid);
            font-size: 16px;
        }

        .winrate-item {
            margin-bottom: 14px;
        }

        .winrate-item .winrate-label {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            margin-bottom: 5px;
            color: var(--text-dark-muted);
        }

        .winrate-item .winrate-label .value {
            font-family: var(--font-num);
            font-weight: 700;
            color: var(--acid);
            font-size: 14px;
        }

        .winrate-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            overflow: hidden;
        }

        .winrate-bar .bar-fill {
            height: 100%;
            background: var(--acid);
            border-radius: 6px;
            transition: width 0.6s ease;
        }

        .winrate-bar .bar-fill.red {
            background: var(--live);
        }

        /* ========== Ranking Table ========== */
        .ranking-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            height: 100%;
        }

        .ranking-card .ranking-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid var(--line);
            font-weight: 700;
            font-size: 16px;
            color: var(--ink);
            background: #FAFBF7;
        }

        .ranking-card .ranking-header i {
            color: var(--acid-dark);
        }

        .ranking-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .ranking-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            border-bottom: 1px solid #F0F3EA;
            font-size: 14px;
            transition: background var(--transition);
        }

        .ranking-item:last-child {
            border-bottom: none;
        }

        .ranking-item:hover {
            background: #FAFBF7;
        }

        .ranking-item .rank-num {
            font-family: var(--font-num);
            font-weight: 800;
            font-size: 16px;
            width: 28px;
            text-align: center;
            color: var(--text-light);
            flex-shrink: 0;
        }

        .ranking-item .rank-num.top1 {
            color: #D4A017;
        }
        .ranking-item .rank-num.top2 {
            color: #6B7B8D;
        }
        .ranking-item .rank-num.top3 {
            color: #B85C3B;
        }

        .ranking-item .rank-team {
            font-weight: 600;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ranking-item .rank-stats {
            font-family: var(--font-num);
            font-size: 13px;
            color: var(--text-light);
            white-space: nowrap;
        }

        .ranking-item .rank-win {
            font-family: var(--font-num);
            font-weight: 700;
            color: #4A6A00;
            margin-left: 6px;
        }
        .ranking-item .rank-loss {
            font-family: var(--font-num);
            color: #B85C3B;
            margin-left: 4px;
        }

        /* ========== News List ========== */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 10px;
            transition: all var(--transition);
            flex-wrap: wrap;
        }

        .news-item:hover {
            border-color: rgba(198, 255, 46, 0.4);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }

        .news-item .news-tag {
            flex-shrink: 0;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.4px;
        }

        .news-item .tag-data {
            background: rgba(198, 255, 46, 0.2);
            color: #4A6A00;
        }

        .news-item .tag-news {
            background: rgba(255, 77, 43, 0.12);
            color: var(--live);
        }

        .news-item .tag-predict {
            background: rgba(91, 107, 125, 0.12);
            color: #5B6B7D;
        }

        .news-item .news-text {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            min-width: 0;
        }

        .news-item .news-meta {
            font-size: 12px;
            color: var(--text-light);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        @media (max-width: 576px) {
            .news-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .news-item .news-meta {
                white-space: normal;
            }
        }

        /* ========== Subscribe CTA ========== */
        .subscribe-cta {
            background: var(--ink);
            border-radius: var(--radius-card);
            padding: 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-dark);
            border: 1px solid rgba(198, 255, 46, 0.12);
            position: relative;
            overflow: hidden;
        }

        .subscribe-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(198, 255, 46, 0.08), transparent 70%);
            pointer-events: none;
        }

        .subscribe-cta .cta-text {
            flex: 1;
            min-width: 260px;
            position: relative;
            z-index: 1;
        }

        .subscribe-cta .cta-title {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 6px;
        }

        .subscribe-cta .cta-subtitle {
            font-size: 14px;
            color: var(--text-dark-muted);
            line-height: 1.6;
        }

        .subscribe-cta .cta-form {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .subscribe-cta .cta-form input {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            border-radius: var(--radius-input);
            padding: 10px 16px;
            font-size: 14px;
            min-width: 220px;
            transition: border-color var(--transition), background var(--transition);
        }

        .subscribe-cta .cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

        .subscribe-cta .cta-form input:focus {
            outline: none;
            border-color: var(--acid);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 3px rgba(198, 255, 46, 0.15);
        }

        .subscribe-cta .btn-subscribe {
            background: var(--acid);
            color: var(--ink);
            font-weight: 700;
            border: none;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 14px;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .subscribe-cta .btn-subscribe:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(198, 255, 46, 0.3);
        }

        .subscribe-cta .btn-subscribe:focus-visible {
            outline: 2px solid var(--acid);
            outline-offset: 2px;
        }

        @media (max-width: 576px) {
            .subscribe-cta {
                padding: 24px 20px;
                flex-direction: column;
                align-items: stretch;
            }
            .subscribe-cta .cta-form input {
                min-width: 100%;
                width: 100%;
            }
            .subscribe-cta .btn-subscribe {
                width: 100%;
                justify-content: center;
            }
        }

        /* ========== FAQ Accordion ========== */
        .accordion-sport .accordion-item {
            border: 1px solid var(--line);
            border-radius: var(--radius-card) !important;
            margin-bottom: 10px;
            overflow: hidden;
            background: var(--card);
            box-shadow: none;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .accordion-sport .accordion-item:hover {
            border-color: rgba(198, 255, 46, 0.4);
            box-shadow: var(--shadow-card);
        }

        .accordion-sport .accordion-button {
            background: var(--card);
            color: var(--text);
            font-weight: 700;
            font-size: 15px;
            padding: 16px 20px;
            border: none;
            box-shadow: none;
            transition: background var(--transition), color var(--transition);
        }

        .accordion-sport .accordion-button:not(.collapsed) {
            background: #FAFBF7;
            color: var(--ink);
            box-shadow: none;
            border-bottom: 1px solid rgba(198, 255, 46, 0.3);
        }

        .accordion-sport .accordion-button:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(198, 255, 46, 0.4);
        }

        .accordion-sport .accordion-button::after {
            background-image: none;
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            color: var(--text-light);
            transition: transform var(--transition);
        }

        .accordion-sport .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: #6B8F00;
        }

        .accordion-sport .accordion-body {
            padding: 16px 20px;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            background: var(--card);
        }

        /* ========== Footer ========== */
        .footer-sport {
            background: var(--ink);
            padding: 28px 0;
            border-top: 2px solid var(--acid);
            margin-top: var(--section-pad);
        }

        .footer-sport .footer-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-sport .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 16px;
            color: #fff;
        }

        .footer-sport .footer-brand .brand-mark {
            width: 22px;
            height: 22px;
            font-size: 11px;
            border-radius: 5px;
        }

        .footer-sport .footer-copy {
            font-size: 12px;
            color: var(--text-dark-muted);
        }

        .footer-sport .footer-home {
            font-size: 13px;
            color: var(--text-dark-muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition);
        }

        .footer-sport .footer-home:hover {
            color: var(--acid);
        }

        @media (max-width: 576px) {
            .footer-sport .footer-wrap {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        /* ========== Responsive Adjustments ========== */
        @media (max-width: 992px) {
            :root {
                --section-pad: 48px;
            }
            .category-hero h1 {
                font-size: 28px;
            }
            .sport-section .section-title {
                font-size: 22px;
            }
        }

        @media (max-width: 768px) {
            .category-hero {
                min-height: 30vh;
            }
            .category-hero h1 {
                font-size: 24px;
            }
            .category-hero .hero-subtitle {
                font-size: 14px;
            }
            .sport-section .section-title {
                font-size: 19px;
            }
            .navbar-brand-sport {
                font-size: 17px;
            }
            .btn-cta {
                padding: 8px 14px;
                font-size: 12px;
                gap: 4px;
            }
            .btn-cta i {
                display: none;
            }
            .subscribe-cta .cta-form {
                flex-direction: column;
                width: 100%;
            }
            .subscribe-cta .cta-form input {
                width: 100%;
                min-width: auto;
            }
            .subscribe-cta .btn-subscribe {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 520px) {
            body {
                font-size: 14px;
                padding-top: 56px;
            }
            .navbar-sport {
                padding: 8px 0;
            }
            .navbar-brand-sport {
                font-size: 15px;
                gap: 6px;
            }
            .brand-mark {
                width: 22px;
                height: 22px;
                font-size: 11px;
                border-radius: 5px;
            }
            .btn-cta {
                padding: 7px 12px;
                font-size: 11px;
                border-radius: 8px;
            }
            .category-hero {
                min-height: auto;
                padding: 32px 0;
                border-radius: 0 0 12px 12px;
                margin-top: 8px;
            }
            .category-hero .hero-content {
                padding: 20px 0;
            }
            .category-hero h1 {
                font-size: 21px;
                margin-bottom: 10px;
            }
            .category-hero .hero-subtitle {
                font-size: 13px;
                margin-bottom: 14px;
            }
            .category-hero .hero-meta {
                gap: 6px;
            }
            .category-hero .meta-item {
                font-size: 11px;
                padding: 4px 10px;
            }
            .sport-section {
                padding: 36px 0;
            }
            .sport-section .section-title {
                font-size: 17px;
            }
            .sport-section .section-subtitle {
                font-size: 13px;
            }
            .sport-section .section-heading {
                margin-bottom: 20px;
            }
            .match-card .match-header {
                padding: 10px 12px;
                font-size: 11px;
            }
            .match-card .match-body {
                padding: 14px 12px;
            }
            .match-card .team {
                font-size: 13px;
                gap: 6px;
            }
            .match-card .team .team-logo {
                width: 24px;
                height: 24px;
                font-size: 10px;
                border-radius: 6px;
            }
            .match-card .score-main {
                font-size: 20px;
            }
            .winrate-block {
                padding: 20px 16px;
            }
            .ranking-card .ranking-header {
                padding: 12px 16px;
                font-size: 14px;
            }
            .ranking-item {
                padding: 10px 16px;
                font-size: 12px;
                gap: 8px;
            }
            .news-item {
                padding: 12px 14px;
            }
            .news-item .news-text {
                font-size: 13px;
            }
            .subscribe-cta {
                padding: 20px 16px;
            }
            .subscribe-cta .cta-title {
                font-size: 17px;
            }
            .footer-sport {
                padding: 20px 0;
                margin-top: 36px;
            }
        }

        /* Utility */
        .font-num {
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
        }

        .acid-text {
            color: #6B8F00;
        }

        .bg-soft-dark {
            background: var(--ink-2);
        }

        .gap-y-2 {
            row-gap: 16px;
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
