/* roulang page: index */
:root {
            --bs-primary: #1259A5;
            --bs-primary-dark: #0C4B8A;
            --bs-primary-light: rgba(18, 89, 165, 0.08);
            --bs-primary-outline: rgba(18, 89, 165, 0.18);
            --bs-accent: #FF9F1C;
            --bs-accent-soft: rgba(255, 159, 28, 0.12);
            --bs-teal: #14B8A6;
            --bs-teal-soft: rgba(20, 184, 166, 0.12);
            --bs-bg-body: #F5F8FC;
            --bs-bg-card: #FFFFFF;
            --bs-bg-muted: #EDF1F7;
            --bs-border-color: #E3E9F2;
            --bs-border-light: #EEF2F7;
            --bs-text-primary: #172033;
            --bs-text-secondary: #5B6577;
            --bs-text-muted: #98A1B3;
            --bs-footer-bg: #10233F;
            --bs-radius-card: 16px;
            --bs-radius-btn: 10px;
            --bs-radius-badge: 999px;
            --bs-radius-image: 10px;
            --bs-shadow-card: 0 6px 20px rgba(15, 60, 120, 0.08);
            --bs-shadow-card-hover: 0 12px 28px rgba(15, 60, 120, 0.14);
            --bs-font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --bs-font-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
            --bs-section-padding: 72px;
            --bs-section-padding-mobile: 40px;
            --bs-container-max: 1200px;
            --bs-nav-height: 72px;
            --bs-nav-height-mobile: 60px;
            --bs-transition: all 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--bs-font-sans);
            background-color: var(--bs-bg-body);
            color: var(--bs-text-primary);
            font-size: 16px;
            line-height: 1.75;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        main {
            flex: 1 0 auto;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--bs-primary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        a:hover {
            color: var(--bs-primary-dark);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        :focus-visible {
            outline: 2px solid var(--bs-primary);
            outline-offset: 2px;
        }

        .container-custom {
            max-width: var(--bs-container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            width: 100%;
        }

        @media (max-width: 767.98px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        .section-padding {
            padding-top: var(--bs-section-padding);
            padding-bottom: var(--bs-section-padding);
        }

        @media (max-width: 767.98px) {
            .section-padding {
                padding-top: var(--bs-section-padding-mobile);
                padding-bottom: var(--bs-section-padding-mobile);
            }
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--bs-text-primary);
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            max-width: 720px;
            margin-bottom: 32px;
        }

        @media (max-width: 767.98px) {
            .section-title {
                font-size: 22px;
            }
            .section-subtitle {
                font-size: 15px;
            }
        }

        .badge-soft {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: var(--bs-radius-badge);
            font-size: 13px;
            font-weight: 500;
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-primary-soft {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .badge-accent-soft {
            background: var(--bs-accent-soft);
            color: #B36A00;
        }

        .badge-teal-soft {
            background: var(--bs-teal-soft);
            color: #0B7C6E;
        }

        .btn-custom-primary {
            background-color: var(--bs-primary);
            border: 1px solid var(--bs-primary);
            color: #FFFFFF;
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-primary:hover,
        .btn-custom-primary:focus {
            background-color: var(--bs-primary-dark);
            border-color: var(--bs-primary-dark);
            color: #FFFFFF;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(18, 89, 165, 0.28);
            transform: translateY(-1px);
        }

        .btn-custom-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
        }

        .btn-custom-outline {
            background-color: transparent;
            border: 1px solid var(--bs-primary-outline);
            color: var(--bs-primary);
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-outline:hover,
        .btn-custom-outline:focus {
            background-color: var(--bs-primary-light);
            border-color: var(--bs-primary);
            color: var(--bs-primary-dark);
            text-decoration: none;
        }

        .btn-custom-outline:active {
            background-color: var(--bs-primary-outline);
        }

        .btn-custom-accent {
            background-color: var(--bs-accent);
            border: 1px solid var(--bs-accent);
            color: #3A2800;
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 700;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-accent:hover,
        .btn-custom-accent:focus {
            background-color: #E88F0F;
            border-color: #E88F0F;
            color: #2A1C00;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(255, 159, 28, 0.32);
            transform: translateY(-1px);
        }

        .btn-link-custom {
            background: none;
            border: none;
            color: var(--bs-primary);
            font-weight: 600;
            padding: 0;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            font-size: 15px;
            transition: var(--bs-transition);
        }

        .btn-link-custom:hover,
        .btn-link-custom:focus {
            color: var(--bs-primary-dark);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* ============ Header & Navigation ============ */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--bs-border-light);
            position: sticky;
            top: 0;
            z-index: 1030;
            min-height: var(--bs-nav-height);
            display: flex;
            align-items: center;
            box-shadow: 0 2px 10px rgba(15, 60, 120, 0.04);
        }

        .site-header .container-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: nowrap;
        }

        .navbar-brand-custom {
            font-size: 22px;
            font-weight: 800;
            color: var(--bs-text-primary);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .navbar-brand-custom:hover {
            color: var(--bs-primary);
            text-decoration: none;
        }

        .navbar-brand-custom .brand-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--bs-primary);
            color: #FFFFFF;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
        }

        .navbar-nav-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar-nav-custom .nav-item {
            position: relative;
        }

        .navbar-nav-custom .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--bs-text-primary);
            border-radius: 8px;
            transition: var(--bs-transition);
            text-decoration: none;
            white-space: nowrap;
            border: none;
            background: none;
            cursor: pointer;
        }

        .navbar-nav-custom .nav-link:hover,
        .navbar-nav-custom .nav-link:focus {
            color: var(--bs-primary);
            background: var(--bs-primary-light);
            text-decoration: none;
        }

        .navbar-nav-custom .nav-link.active {
            color: var(--bs-primary);
            background: var(--bs-primary-light);
            font-weight: 600;
        }

        .navbar-nav-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--bs-primary);
            border-radius: 2px;
        }

        .mega-menu-trigger {
            position: relative;
        }

        .mega-menu-panel {
            display: none;
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            width: 760px;
            max-width: 90vw;
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: 0 20px 48px rgba(15, 60, 120, 0.16);
            padding: 24px;
            z-index: 1040;
            gap: 20px;
        }

        .mega-menu-trigger.open .mega-menu-panel {
            display: block;
        }

        .mega-menu-panel .mega-col-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 20px;
        }

        .mega-menu-panel h6 {
            font-size: 13px;
            font-weight: 700;
            color: var(--bs-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .mega-menu-panel .mega-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 10px;
            border-radius: 8px;
            font-size: 14px;
            color: var(--bs-text-secondary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        .mega-menu-panel .mega-link:hover {
            background: var(--bs-bg-muted);
            color: var(--bs-primary);
            text-decoration: none;
        }

        .mega-menu-panel .mega-card-mini {
            background: var(--bs-bg-body);
            border-radius: 10px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            transition: var(--bs-transition);
        }

        .mega-menu-panel .mega-card-mini:hover {
            background: var(--bs-bg-muted);
            transform: translateY(-1px);
        }

        .mega-menu-panel .mega-card-mini .mega-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: var(--bs-primary);
            border: 1px solid var(--bs-border-color);
            flex-shrink: 0;
        }

        .mega-menu-panel .mega-card-mini .mega-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-primary);
            line-height: 1.4;
        }

        .mega-menu-panel .mega-card-mini .mega-desc {
            font-size: 12px;
            color: var(--bs-text-muted);
            line-height: 1.4;
        }

        .mega-close-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            color: var(--bs-text-muted);
            font-size: 18px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: var(--bs-transition);
        }

        .mega-close-btn:hover {
            background: var(--bs-bg-muted);
            color: var(--bs-text-primary);
        }

        .navbar-toggler-custom {
            background: none;
            border: 1px solid var(--bs-border-color);
            border-radius: 8px;
            padding: 8px 12px;
            color: var(--bs-text-primary);
            font-size: 20px;
            cursor: pointer;
            display: none;
            transition: var(--bs-transition);
        }

        .navbar-toggler-custom:hover {
            background: var(--bs-bg-muted);
        }

        .offcanvas-nav {
            background: #FFFFFF;
            width: 320px;
            max-width: 90vw;
            padding: 20px;
        }

        .offcanvas-nav .offcanvas-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .offcanvas-nav .offcanvas-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--bs-text-primary);
        }

        .offcanvas-nav .btn-close-custom {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--bs-text-muted);
            cursor: pointer;
        }

        .offcanvas-nav .nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .offcanvas-nav .nav-list li {
            margin-bottom: 4px;
        }

        .offcanvas-nav .nav-list a {
            display: block;
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            color: var(--bs-text-primary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        .offcanvas-nav .nav-list a:hover,
        .offcanvas-nav .nav-list a.active {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
            text-decoration: none;
        }

        @media (max-width: 991.98px) {
            .navbar-nav-custom {
                display: none;
            }
            .navbar-toggler-custom {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .mega-menu-trigger {
                display: none;
            }
            .site-header {
                min-height: var(--bs-nav-height-mobile);
            }
            .site-header .container-custom {
                gap: 12px;
            }
        }

        /* ============ Hero Section ============ */
        .hero-section {
            background-image: url('/assets/images/27a1e0792bd08f35.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 56px 0;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(18, 89, 165, 0.92) 0%, rgba(12, 75, 138, 0.82) 50%, rgba(15, 60, 120, 0.72) 100%);
            z-index: 1;
        }

        .hero-section .container-custom {
            position: relative;
            z-index: 2;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            min-height: 480px;
        }

        .hero-content h1 {
            font-size: 34px;
            font-weight: 800;
            line-height: 1.3;
            color: #FFFFFF;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }

        .hero-content .hero-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.8;
            max-width: 520px;
            margin-bottom: 24px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .hero-actions .btn-custom-primary {
            background: #FFFFFF;
            border-color: #FFFFFF;
            color: var(--bs-primary);
            font-weight: 700;
        }

        .hero-actions .btn-custom-primary:hover {
            background: #F0F4FA;
            border-color: #F0F4FA;
            color: var(--bs-primary-dark);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
        }

        .hero-actions .btn-custom-outline {
            border-color: rgba(255, 255, 255, 0.5);
            color: #FFFFFF;
        }

        .hero-actions .btn-custom-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #FFFFFF;
            color: #FFFFFF;
        }

        .hero-progress {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 16px 18px;
            max-width: 520px;
        }

        .hero-progress .progress-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 8px;
        }

        .hero-progress .progress-bar-custom {
            height: 10px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 999px;
            overflow: hidden;
        }

        .hero-progress .progress-bar-custom .progress-fill {
            height: 100%;
            background: var(--bs-accent);
            border-radius: 999px;
            width: 68%;
            transition: width 0.6s ease;
        }

        .hero-progress .progress-detail {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 8px;
        }

        .hero-score-card {
            background: #FFFFFF;
            border-radius: var(--bs-radius-card);
            padding: 20px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
        }

        .hero-score-card .score-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-primary);
        }

        .hero-score-card .score-card-header .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 700;
            color: var(--bs-teal);
            background: var(--bs-teal-soft);
            padding: 4px 10px;
            border-radius: 999px;
        }

        .hero-score-card .match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--bs-border-light);
            gap: 12px;
        }

        .hero-score-card .match-row:last-child {
            border-bottom: none;
        }

        .hero-score-card .match-teams {
            flex: 1;
            min-width: 0;
            font-size: 14px;
            font-weight: 500;
            color: var(--bs-text-primary);
            line-height: 1.5;
        }

        .hero-score-card .match-score {
            font-family: var(--bs-font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--bs-text-primary);
            white-space: nowrap;
        }

        .hero-score-card .match-status {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 999px;
            white-space: nowrap;
        }

        .status-live {
            background: var(--bs-teal-soft);
            color: #0B7C6E;
        }

        .status-finished {
            background: var(--bs-bg-muted);
            color: var(--bs-text-muted);
        }

        .status-upcoming {
            background: var(--bs-accent-soft);
            color: #B36A00;
        }

        @media (max-width: 991.98px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 28px;
                min-height: auto;
            }
            .hero-content h1 {
                font-size: 28px;
            }
            .hero-content .hero-desc {
                font-size: 15px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-section {
                padding: 36px 0;
            }
            .hero-content h1 {
                font-size: 24px;
            }
            .hero-actions {
                flex-direction: column;
                gap: 8px;
            }
            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }
            .hero-score-card .match-row {
                flex-wrap: wrap;
                gap: 6px;
            }
        }

        /* ============ Cards ============ */
        .card-custom {
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            transition: var(--bs-transition);
            overflow: hidden;
            height: 100%;
        }

        .card-custom:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-3px);
        }

        .card-custom .card-body {
            padding: 20px;
        }

        .card-custom .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .card-custom .card-text {
            font-size: 14px;
            color: var(--bs-text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .card-custom .card-img-wrapper {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            border-radius: var(--bs-radius-image) var(--bs-radius-image) 0 0;
        }

        .card-custom .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .card-custom:hover .card-img-wrapper img {
            transform: scale(1.04);
        }

        .card-custom .card-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 999px;
            margin-bottom: 10px;
        }

        .card-custom .card-footer-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--bs-border-light);
        }

        .card-custom .card-meta {
            font-size: 13px;
            color: var(--bs-text-muted);
        }

        /* ============ Service Matrix Section ============ */
        .service-matrix-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 16px;
        }

        .service-matrix-grid .service-card-large {
            grid-row: span 2;
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--bs-transition);
            min-height: 280px;
        }

        .service-matrix-grid .service-card-large:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-3px);
        }

        .service-matrix-grid .service-card-small {
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            padding: 20px;
            transition: var(--bs-transition);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .service-matrix-grid .service-card-small:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
        }

        .service-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .service-icon.blue {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .service-icon.orange {
            background: var(--bs-accent-soft);
            color: #B36A00;
        }

        .service-icon.teal {
            background: var(--bs-teal-soft);
            color: #0B7C6E;
        }

        .service-card-small .service-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--bs-text-primary);
        }

        .service-card-small .service-desc {
            font-size: 13px;
            color: var(--bs-text-secondary);
            line-height: 1.7;
        }

        .service-card-large .service-title-lg {
            font-size: 20px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 10px;
        }

        .service-card-large .service-desc-lg {
            font-size: 15px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
        }

        @media (max-width: 991.98px) {
            .service-matrix-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }
            .service-matrix-grid .service-card-large {
                grid-row: auto;
                grid-column: span 2;
                min-height: auto;
            }
        }

        @media (max-width: 575.98px) {
            .service-matrix-grid {
                grid-template-columns: 1fr;
            }
            .service-matrix-grid .service-card-large {
                grid-column: span 1;
            }
        }

        /* ============ League Quick Entry ============ */
        .league-entry-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .league-entry-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: 12px;
            padding: 18px;
            text-align: center;
            transition: var(--bs-transition);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .league-entry-card:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
            text-decoration: none;
            border-color: var(--bs-primary-outline);
        }

        .league-entry-card .league-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--bs-primary-light);
            color: var(--bs-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .league-entry-card .league-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-primary);
            line-height: 1.4;
        }

        .league-entry-card .league-count {
            font-size: 12px;
            color: var(--bs-text-muted);
        }

        @media (max-width: 991.98px) {
            .league-entry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 575.98px) {
            .league-entry-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .league-entry-card {
                padding: 14px;
            }
        }

        /* ============ Data Coverage ============ */
        .data-cover-section {
            background: #FFFFFF;
            border-top: 1px solid var(--bs-border-light);
            border-bottom: 1px solid var(--bs-border-light);
        }

        .data-cover-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 32px;
            align-items: center;
        }

        .data-cover-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .stat-card {
            background: var(--bs-bg-body);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid var(--bs-border-light);
        }

        .stat-card .stat-number {
            font-family: var(--bs-font-mono);
            font-size: 32px;
            font-weight: 800;
            color: var(--bs-primary);
            line-height: 1.2;
        }

        .stat-card .stat-label {
            font-size: 13px;
            color: var(--bs-text-secondary);
            margin-top: 4px;
            line-height: 1.5;
        }

        .data-cover-info h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 12px;
        }

        .data-cover-info p {
            font-size: 15px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .data-cover-info .cover-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .data-cover-info .cover-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--bs-text-primary);
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .data-cover-info .cover-list li i {
            color: var(--bs-teal);
            margin-top: 5px;
            flex-shrink: 0;
        }

        @media (max-width: 991.98px) {
            .data-cover-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .data-cover-stats {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .data-cover-stats {
                grid-template-columns: 1fr;
            }
            .stat-card .stat-number {
                font-size: 28px;
            }
        }

        /* ============ Brand Intro ============ */
        .brand-intro-section {
            background: var(--bs-bg-body);
        }

        .brand-intro-wrapper {
            max-width: 900px;
            margin: 0 auto;
            background: #FFFFFF;
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            padding: 36px;
            border: 1px solid var(--bs-border-color);
        }

        .brand-intro-wrapper h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 16px;
        }

        .brand-intro-wrapper p {
            font-size: 15px;
            color: var(--bs-text-secondary);
            line-height: 1.9;
            margin-bottom: 14px;
        }

        .brand-intro-wrapper p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 575.98px) {
            .brand-intro-wrapper {
                padding: 24px;
            }
            .brand-intro-wrapper h2 {
                font-size: 20px;
            }
        }

        /* ============ Steps / Process ============ */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            counter-reset: step-counter;
        }

        .process-step {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            padding: 24px 20px;
            text-align: center;
            transition: var(--bs-transition);
            position: relative;
            counter-increment: step-counter;
        }

        .process-step:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-3px);
        }

        .process-step .step-number {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bs-primary);
            color: #FFFFFF;
            font-size: 16px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-family: var(--bs-font-mono);
        }

        .process-step .step-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 6px;
        }

        .process-step .step-desc {
            font-size: 13px;
            color: var(--bs-text-secondary);
            line-height: 1.7;
        }

        @media (max-width: 991.98px) {
            .process-steps {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .process-steps {
                grid-template-columns: 1fr;
            }
        }

        /* ============ Topic Wall ============ */
        .topic-wall-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 16px;
        }

        .topic-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            overflow: hidden;
            transition: var(--bs-transition);
            cursor: pointer;
            position: relative;
            height: 100%;
            min-height: 160px;
        }

        .topic-card:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-3px);
        }

        .topic-card .topic-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
            z-index: 0;
            transition: transform 0.4s ease;
            aspect-ratio: auto;
        }

        .topic-card:hover .topic-img {
            transform: scale(1.04);
        }

        .topic-card .topic-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 22px 18px;
            background: linear-gradient(to top, rgba(15, 33, 55, 0.88) 0%, rgba(15, 33, 55, 0.4) 60%, transparent 100%);
            z-index: 1;
            border-radius: 0 0 var(--bs-radius-card) var(--bs-radius-card);
        }

        .topic-card .topic-title {
            font-size: 18px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .topic-card .topic-sub {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }

        .topic-card-large {
            grid-row: span 2;
            min-height: 340px;
        }

        @media (max-width: 991.98px) {
            .topic-wall-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }
            .topic-card-large {
                grid-row: auto;
                grid-column: span 2;
                min-height: 240px;
            }
        }

        @media (max-width: 575.98px) {
            .topic-wall-grid {
                grid-template-columns: 1fr;
            }
            .topic-card-large {
                grid-column: span 1;
            }
            .topic-card {
                min-height: 120px;
            }
        }

        /* ============ Analysis List ============ */
        .analysis-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .analysis-item {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: 12px;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: var(--bs-transition);
            text-decoration: none;
        }

        .analysis-item:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
            text-decoration: none;
            border-color: var(--bs-primary-outline);
        }

        .analysis-item .analysis-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--bs-primary-light);
            color: var(--bs-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .analysis-item .analysis-content {
            flex: 1;
            min-width: 0;
        }

        .analysis-item .analysis-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--bs-text-primary);
            line-height: 1.4;
            margin-bottom: 4px;
        }

        .analysis-item .analysis-desc {
            font-size: 13px;
            color: var(--bs-text-secondary);
            line-height: 1.6;
        }

        .analysis-summary {
            font-size: 14px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            margin-top: 14px;
            padding: 14px 18px;
            background: var(--bs-bg-muted);
            border-radius: 10px;
            border-left: 3px solid var(--bs-primary);
        }

        @media (max-width: 767.98px) {
            .analysis-list {
                grid-template-columns: 1fr;
            }
        }

        /* ============ Ranking & Tools ============ */
        .ranking-tools-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 20px;
        }

        .ranking-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            padding: 20px;
        }

        .ranking-card .ranking-header {
            font-size: 16px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .ranking-table th {
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            color: var(--bs-text-muted);
            padding: 8px 6px;
            border-bottom: 1px solid var(--bs-border-light);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .ranking-table td {
            padding: 8px 6px;
            border-bottom: 1px solid var(--bs-border-light);
            color: var(--bs-text-primary);
            font-size: 13px;
        }

        .ranking-table td.rank {
            font-family: var(--bs-font-mono);
            font-weight: 700;
            color: var(--bs-primary);
        }

        .ranking-table td.team-name {
            font-weight: 500;
        }

        .ranking-table td.pts {
            font-family: var(--bs-font-mono);
            font-weight: 700;
            text-align: right;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .tool-mini-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: 12px;
            padding: 16px;
            transition: var(--bs-transition);
            text-align: center;
        }

        .tool-mini-card:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
        }

        .tool-mini-card .tool-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--bs-bg-body);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin: 0 auto 8px;
            color: var(--bs-primary);
        }

        .tool-mini-card .tool-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-primary);
            margin-bottom: 2px;
        }

        .tool-mini-card .tool-desc {
            font-size: 12px;
            color: var(--bs-text-muted);
            line-height: 1.5;
        }

        @media (max-width: 991.98px) {
            .ranking-tools-grid {
                grid-template-columns: 1fr;
            }
            .tools-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .tools-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============ Partners ============ */
        .partners-section {
            background: #FFFFFF;
            border-top: 1px solid var(--bs-border-light);
            border-bottom: 1px solid var(--bs-border-light);
        }

        .partners-wall {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .partner-chip {
            background: var(--bs-bg-body);
            border: 1px solid var(--bs-border-color);
            border-radius: 999px;
            padding: 10px 22px;
            font-size: 14px;
            font-weight: 500;
            color: var(--bs-text-secondary);
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .partner-chip:hover {
            background: var(--bs-bg-muted);
            color: var(--bs-text-primary);
            border-color: var(--bs-primary-outline);
        }

        .partner-chip i {
            color: var(--bs-primary);
            font-size: 12px;
        }

        /* ============ FAQ ============ */
        .faq-accordion .accordion-item {
            border: 1px solid var(--bs-border-color);
            border-radius: 12px !important;
            margin-bottom: 10px;
            overflow: hidden;
            background: #FFFFFF;
            box-shadow: var(--bs-shadow-card);
        }

        .faq-accordion .accordion-button {
            background: #FFFFFF;
            border: none;
            border-radius: 12px !important;
            font-size: 15px;
            font-weight: 600;
            color: var(--bs-text-primary);
            padding: 16px 20px;
            box-shadow: none;
            width: 100%;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
            transition: var(--bs-transition);
        }

        .faq-accordion .accordion-button:hover {
            background: var(--bs-bg-body);
        }

        .faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 2px var(--bs-primary-outline);
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
            border-radius: 12px 12px 0 0 !important;
            border-left: 3px solid var(--bs-primary);
        }

        .faq-accordion .accordion-button::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 13px;
            transition: transform 0.3s ease;
            color: var(--bs-text-muted);
            flex-shrink: 0;
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: var(--bs-primary);
        }

        .faq-accordion .accordion-body {
            padding: 16px 20px;
            font-size: 14px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            background: #FFFFFF;
            border-radius: 0 0 12px 12px;
        }

        /* ============ Guarantee Bar ============ */
        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .guarantee-item {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: 12px;
            padding: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--bs-transition);
        }

        .guarantee-item:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
        }

        .guarantee-item .guarantee-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .guarantee-item .guarantee-icon.teal {
            background: var(--bs-teal-soft);
            color: #0B7C6E;
        }

        .guarantee-item .guarantee-icon.blue {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .guarantee-item .guarantee-icon.orange {
            background: var(--bs-accent-soft);
            color: #B36A00;
        }

        .guarantee-item .guarantee-text {
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-primary);
            line-height: 1.4;
        }

        .guarantee-item .guarantee-desc {
            font-size: 12px;
            color: var(--bs-text-muted);
            line-height: 1.5;
        }

        @media (max-width: 991.98px) {
            .guarantee-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .guarantee-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============ CTA / Subscription ============ */
        .cta-section {
            background-image: url('/assets/images/ce2a0881f498e86b.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 64px 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(18, 89, 165, 0.94) 0%, rgba(12, 75, 138, 0.88) 100%);
            z-index: 1;
        }

        .cta-section .container-custom {
            position: relative;
            z-index: 2;
        }

        .cta-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: center;
        }

        .cta-content h2 {
            font-size: 26px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .cta-content p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .cta-form {
            background: #FFFFFF;
            border-radius: var(--bs-radius-card);
            padding: 24px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
        }

        .cta-form .form-label-custom {
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-primary);
            margin-bottom: 6px;
            display: block;
        }

        .cta-form .form-input-custom {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-btn);
            font-size: 14px;
            color: var(--bs-text-primary);
            background: #FFFFFF;
            transition: var(--bs-transition);
        }

        .cta-form .form-input-custom:focus {
            border-color: var(--bs-primary);
            box-shadow: 0 0 0 3px rgba(18, 89, 165, 0.15);
            outline: none;
        }

        .cta-form .form-group {
            margin-bottom: 14px;
        }

        .cta-form .check-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }

        .cta-form .check-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border: 1px solid var(--bs-border-color);
            border-radius: 999px;
            font-size: 13px;
            color: var(--bs-text-secondary);
            cursor: pointer;
            transition: var(--bs-transition);
            background: #FFFFFF;
            user-select: none;
        }

        .cta-form .check-chip:hover {
            border-color: var(--bs-primary);
            color: var(--bs-primary);
        }

        .cta-form .check-chip input[type="checkbox"] {
            accent-color: var(--bs-primary);
            width: 16px;
            height: 16px;
            cursor: pointer;
            margin: 0;
        }

        @media (max-width: 991.98px) {
            .cta-wrapper {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .cta-content h2 {
                font-size: 22px;
            }
        }

        /* ============ Footer ============ */
        .site-footer {
            background: var(--bs-footer-bg);
            color: #C5CEDA;
            padding: 48px 0 24px;
            flex-shrink: 0;
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .site-footer .footer-brand {
            font-size: 20px;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .site-footer .footer-brand .brand-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--bs-primary);
            color: #FFFFFF;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .site-footer .footer-desc {
            font-size: 13px;
            color: #9FACBE;
            line-height: 1.8;
            margin-bottom: 12px;
            max-width: 340px;
        }

        .site-footer .footer-title {
            font-size: 14px;
            font-weight: 700;
            color: #E8EDF5;
            margin-bottom: 12px;
        }

        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-links li {
            margin-bottom: 6px;
        }

        .site-footer .footer-links a {
            font-size: 13px;
            color: #9FACBE;
            text-decoration: none;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .site-footer .footer-links a:hover {
            color: #FFFFFF;
            text-decoration: none;
        }

        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 16px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: #8A97A8;
        }

        @media (max-width: 991.98px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .site-footer {
                padding: 32px 0 16px;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ============ Responsive tweaks ============ */
        @media (max-width: 767.98px) {
            .section-title {
                font-size: 21px;
            }
            .section-subtitle {
                font-size: 14px;
                margin-bottom: 24px;
            }
            .btn-custom-primary,
            .btn-custom-outline,
            .btn-custom-accent {
                font-size: 14px;
                padding: 9px 18px;
            }
            .card-custom .card-title {
                font-size: 16px;
            }
        }

        @media (max-width: 575.98px) {
            .section-padding {
                padding-top: 32px;
                padding-bottom: 32px;
            }
            .section-title {
                font-size: 19px;
            }
            .hero-content h1 {
                font-size: 23px;
            }
            .hero-content .hero-desc {
                font-size: 14px;
            }
        }

/* roulang page: category1 */
:root {
            --bs-primary: #1259A5;
            --bs-primary-dark: #0C4B8A;
            --bs-primary-light: rgba(18, 89, 165, 0.08);
            --bs-primary-outline: rgba(18, 89, 165, 0.18);
            --bs-accent: #FF9F1C;
            --bs-accent-soft: rgba(255, 159, 28, 0.12);
            --bs-teal: #14B8A6;
            --bs-teal-soft: rgba(20, 184, 166, 0.12);
            --bs-bg-body: #F5F8FC;
            --bs-bg-card: #FFFFFF;
            --bs-bg-muted: #EDF1F7;
            --bs-border-color: #E3E9F2;
            --bs-border-light: #EEF2F7;
            --bs-text-primary: #172033;
            --bs-text-secondary: #5B6577;
            --bs-text-muted: #98A1B3;
            --bs-footer-bg: #10233F;
            --bs-radius-card: 16px;
            --bs-radius-btn: 10px;
            --bs-radius-badge: 999px;
            --bs-radius-image: 10px;
            --bs-shadow-card: 0 6px 20px rgba(15, 60, 120, 0.08);
            --bs-shadow-card-hover: 0 12px 28px rgba(15, 60, 120, 0.14);
            --bs-font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --bs-font-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
            --bs-section-padding: 72px;
            --bs-section-padding-mobile: 40px;
            --bs-container-max: 1200px;
            --bs-nav-height: 72px;
            --bs-nav-height-mobile: 60px;
            --bs-transition: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--bs-font-sans);
            background-color: var(--bs-bg-body);
            color: var(--bs-text-primary);
            font-size: 16px;
            line-height: 1.75;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        main {
            flex: 1 0 auto;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--bs-primary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        a:hover {
            color: var(--bs-primary-dark);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container-custom {
            max-width: var(--bs-container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            width: 100%;
        }

        @media (max-width: 575.98px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        .section-padding {
            padding-top: var(--bs-section-padding);
            padding-bottom: var(--bs-section-padding);
        }

        @media (max-width: 767.98px) {
            .section-padding {
                padding-top: var(--bs-section-padding-mobile);
                padding-bottom: var(--bs-section-padding-mobile);
            }
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--bs-text-primary);
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            max-width: 720px;
            margin-bottom: 32px;
        }

        @media (max-width: 767.98px) {
            .section-title {
                font-size: 22px;
            }
            .section-subtitle {
                font-size: 15px;
            }
        }

        .badge-soft {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: var(--bs-radius-badge);
            font-size: 13px;
            font-weight: 500;
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-primary-soft {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .badge-accent-soft {
            background: var(--bs-accent-soft);
            color: #B36A00;
        }

        .badge-teal-soft {
            background: var(--bs-teal-soft);
            color: #0B7C6E;
        }

        .btn-custom-primary {
            background-color: var(--bs-primary);
            border: 1px solid var(--bs-primary);
            color: #FFFFFF;
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-primary:hover,
        .btn-custom-primary:focus {
            background-color: var(--bs-primary-dark);
            border-color: var(--bs-primary-dark);
            color: #FFFFFF;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(18, 89, 165, 0.28);
            transform: translateY(-1px);
        }

        .btn-custom-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
        }

        .btn-custom-outline {
            background-color: transparent;
            border: 1px solid var(--bs-primary-outline);
            color: var(--bs-primary);
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-outline:hover,
        .btn-custom-outline:focus {
            background-color: var(--bs-primary-light);
            border-color: var(--bs-primary);
            color: var(--bs-primary-dark);
            text-decoration: none;
        }

        /* Header / Navigation */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--bs-border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--bs-nav-height);
            display: flex;
            align-items: center;
        }

        @media (max-width: 767.98px) {
            .site-header {
                height: var(--bs-nav-height-mobile);
            }
        }

        .navbar-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            width: 100%;
        }

        .navbar-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--bs-text-primary);
            text-decoration: none;
            white-space: nowrap;
        }

        .navbar-logo:hover {
            color: var(--bs-primary);
            text-decoration: none;
        }

        .brand-icon {
            width: 38px;
            height: 38px;
            background: var(--bs-primary);
            color: #FFFFFF;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .navbar-nav-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar-nav-custom .nav-item {
            position: relative;
        }

        .navbar-nav-custom .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--bs-text-primary);
            border-radius: 8px;
            transition: var(--bs-transition);
            text-decoration: none;
            white-space: nowrap;
        }

        .navbar-nav-custom .nav-link:hover {
            color: var(--bs-primary);
            background: var(--bs-primary-light);
            text-decoration: none;
        }

        .navbar-nav-custom .nav-link.active {
            color: var(--bs-primary);
            font-weight: 600;
            position: relative;
        }

        .navbar-nav-custom .nav-link.active::after {
            content: '';
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 4px;
            height: 2px;
            background: var(--bs-primary);
            border-radius: 2px;
        }

        .navbar-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .navbar-search {
            position: relative;
            display: flex;
            align-items: center;
        }

        .navbar-search input {
            width: 180px;
            padding: 8px 36px 8px 16px;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-btn);
            font-size: 14px;
            background: var(--bs-bg-card);
            color: var(--bs-text-primary);
            transition: var(--bs-transition);
            outline: none;
        }

        .navbar-search input:focus {
            border-color: var(--bs-primary);
            box-shadow: 0 0 0 3px rgba(18, 89, 165, 0.12);
        }

        .navbar-search .search-icon {
            position: absolute;
            right: 12px;
            color: var(--bs-text-muted);
            font-size: 14px;
            pointer-events: none;
        }

        .navbar-toggler-custom {
            display: none;
            background: none;
            border: 1px solid var(--bs-border-color);
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 18px;
            color: var(--bs-text-primary);
            cursor: pointer;
            transition: var(--bs-transition);
        }

        .navbar-toggler-custom:hover {
            background: var(--bs-primary-light);
            border-color: var(--bs-primary);
        }

        @media (max-width: 991.98px) {
            .navbar-nav-custom {
                display: none;
                position: absolute;
                top: var(--bs-nav-height);
                left: 0;
                right: 0;
                background: #FFFFFF;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 16px 20px;
                border-bottom: 1px solid var(--bs-border-light);
                box-shadow: var(--bs-shadow-card);
                gap: 2px;
                z-index: 999;
            }

            .navbar-nav-custom.open {
                display: flex;
            }

            .navbar-nav-custom .nav-link {
                padding: 12px 16px;
                border-radius: 8px;
                width: 100%;
            }

            .navbar-nav-custom .nav-link.active::after {
                display: none;
            }

            .navbar-nav-custom .nav-link.active {
                background: var(--bs-primary-light);
            }

            .navbar-toggler-custom {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .navbar-search {
                display: none;
            }

            .navbar-actions {
                gap: 8px;
            }
        }

        @media (max-width: 575.98px) {
            .navbar-logo {
                font-size: 17px;
                gap: 8px;
            }
            .brand-icon {
                width: 32px;
                height: 32px;
                font-size: 15px;
            }
            .navbar-actions .btn-custom-outline {
                padding: 8px 14px;
                font-size: 13px;
            }
        }

        /* Breadcrumb */
        .breadcrumb-section {
            background: #FFFFFF;
            border-bottom: 1px solid var(--bs-border-light);
            padding: 14px 0;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--bs-text-secondary);
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .breadcrumb-custom li {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-custom li a {
            color: var(--bs-text-secondary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        .breadcrumb-custom li a:hover {
            color: var(--bs-primary);
            text-decoration: none;
        }

        .breadcrumb-custom li:last-child {
            color: var(--bs-primary);
            font-weight: 500;
        }

        .breadcrumb-custom .separator {
            color: var(--bs-text-muted);
            font-size: 12px;
        }

        /* Category Header */
        .category-header {
            background: #FFFFFF;
            padding: 36px 0 28px;
            border-bottom: 1px solid var(--bs-border-light);
        }

        .category-header h1 {
            font-size: 28px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .category-header p {
            font-size: 15px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            max-width: 720px;
            margin-bottom: 0;
        }

        @media (max-width: 767.98px) {
            .category-header {
                padding: 24px 0 20px;
            }
            .category-header h1 {
                font-size: 24px;
            }
            .category-header p {
                font-size: 14px;
            }
        }

        /* Filter Bar */
        .filter-bar {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-card);
            padding: 16px 20px;
            margin: 24px 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            box-shadow: 0 2px 8px rgba(15, 60, 120, 0.04);
        }

        .filter-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--bs-text-secondary);
            white-space: nowrap;
        }

        .filter-select {
            padding: 8px 32px 8px 12px;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-btn);
            font-size: 14px;
            background: var(--bs-bg-card);
            color: var(--bs-text-primary);
            cursor: pointer;
            transition: var(--bs-transition);
            outline: none;
            appearance: auto;
            min-width: 120px;
        }

        .filter-select:focus {
            border-color: var(--bs-primary);
            box-shadow: 0 0 0 3px rgba(18, 89, 165, 0.12);
        }

        .filter-tabs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 7px 16px;
            border-radius: var(--bs-radius-badge);
            font-size: 13px;
            font-weight: 500;
            border: 1px solid var(--bs-border-color);
            background: var(--bs-bg-card);
            color: var(--bs-text-secondary);
            cursor: pointer;
            transition: var(--bs-transition);
            white-space: nowrap;
        }

        .filter-tab:hover {
            border-color: var(--bs-primary-outline);
            color: var(--bs-primary);
            background: var(--bs-primary-light);
        }

        .filter-tab.active {
            background: var(--bs-primary);
            border-color: var(--bs-primary);
            color: #FFFFFF;
        }

        @media (max-width: 767.98px) {
            .filter-bar {
                padding: 12px 14px;
                gap: 10px;
                flex-direction: column;
                align-items: stretch;
            }
            .filter-select {
                width: 100%;
                min-width: auto;
            }
            .filter-tabs {
                gap: 4px;
            }
            .filter-tab {
                padding: 6px 12px;
                font-size: 12px;
            }
        }

        /* Live Score Cards */
        .score-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .score-card {
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-card);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: var(--bs-transition);
            box-shadow: 0 2px 8px rgba(15, 60, 120, 0.04);
            cursor: pointer;
        }

        .score-card:hover {
            box-shadow: var(--bs-shadow-card);
            border-color: var(--bs-primary-outline);
            transform: translateY(-2px);
        }

        .score-league {
            min-width: 80px;
            font-size: 12px;
            font-weight: 600;
            color: var(--bs-text-secondary);
            background: var(--bs-bg-muted);
            border-radius: 8px;
            padding: 6px 10px;
            text-align: center;
            white-space: nowrap;
        }

        .score-main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            min-width: 0;
        }

        .score-team {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 0;
        }

        .score-team.home {
            justify-content: flex-end;
        }

        .score-team.away {
            justify-content: flex-start;
        }

        .team-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--bs-text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .score-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            min-width: 100px;
        }

        .score-digits {
            font-family: var(--bs-font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--bs-text-primary);
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .score-time {
            font-size: 12px;
            color: var(--bs-text-muted);
            font-family: var(--bs-font-mono);
        }

        .score-status {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            border-radius: var(--bs-radius-badge);
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }

        .score-status.live {
            background: var(--bs-teal-soft);
            color: #0B7C6E;
        }

        .score-status.live .status-dot {
            width: 6px;
            height: 6px;
            background: var(--bs-teal);
            border-radius: 50%;
            animation: pulse-dot 1.2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .score-status.finished {
            background: var(--bs-bg-muted);
            color: var(--bs-text-secondary);
        }

        .score-status.upcoming {
            background: var(--bs-accent-soft);
            color: #B36A00;
        }

        .score-action {
            flex-shrink: 0;
        }

        .btn-score-detail {
            padding: 6px 14px;
            font-size: 13px;
            border-radius: 8px;
            border: 1px solid var(--bs-border-color);
            background: transparent;
            color: var(--bs-text-secondary);
            transition: var(--bs-transition);
            text-decoration: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-score-detail:hover {
            border-color: var(--bs-primary-outline);
            color: var(--bs-primary);
            background: var(--bs-primary-light);
            text-decoration: none;
        }

        @media (max-width: 767.98px) {
            .score-card {
                padding: 12px 14px;
                gap: 10px;
                flex-wrap: wrap;
            }
            .score-league {
                min-width: 60px;
                font-size: 11px;
                padding: 4px 8px;
            }
            .score-main {
                gap: 6px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .score-team {
                flex: 1 1 100%;
                justify-content: center;
                gap: 6px;
            }
            .score-team.home {
                justify-content: center;
            }
            .score-team.away {
                justify-content: center;
            }
            .team-name {
                font-size: 14px;
                white-space: normal;
            }
            .score-digits {
                font-size: 22px;
            }
            .score-center {
                min-width: 80px;
                order: -1;
            }
            .score-action {
                width: 100%;
                display: flex;
                justify-content: center;
            }
        }

        /* Focus Match */
        .focus-match-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 767.98px) {
            .focus-match-grid {
                grid-template-columns: 1fr;
            }
        }

        .focus-match-card {
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-card);
            overflow: hidden;
            box-shadow: var(--bs-shadow-card);
            transition: var(--bs-transition);
            display: flex;
            flex-direction: column;
        }

        .focus-match-card:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-3px);
        }

        .focus-match-cover {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .focus-match-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .focus-match-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(18, 89, 165, 0.15), rgba(18, 89, 165, 0.55));
        }

        .focus-match-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            background: var(--bs-accent);
            color: #FFFFFF;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: var(--bs-radius-badge);
            letter-spacing: 0.5px;
        }

        .focus-match-body {
            padding: 18px 20px;
            flex: 1;
        }

        .focus-match-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .focus-match-info {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--bs-text-secondary);
            margin-bottom: 6px;
        }

        .focus-match-info .score-highlight {
            font-family: var(--bs-font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--bs-primary);
        }

        .focus-match-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-primary);
            text-decoration: none;
            transition: var(--bs-transition);
            margin-top: 8px;
        }

        .focus-match-link:hover {
            color: var(--bs-primary-dark);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* League Tags */
        .league-tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .league-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-badge);
            font-size: 14px;
            font-weight: 500;
            color: var(--bs-text-secondary);
            text-decoration: none;
            transition: var(--bs-transition);
            white-space: nowrap;
        }

        .league-tag:hover {
            background: var(--bs-primary-light);
            border-color: var(--bs-primary-outline);
            color: var(--bs-primary);
            text-decoration: none;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(15, 60, 120, 0.1);
        }

        .league-tag .tag-icon {
            font-size: 16px;
            color: var(--bs-accent);
        }

        @media (max-width: 575.98px) {
            .league-tag {
                padding: 8px 14px;
                font-size: 13px;
                gap: 6px;
            }
        }

        /* Intel List */
        .intel-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .intel-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-card);
            padding: 14px 18px;
            transition: var(--bs-transition);
            text-decoration: none;
        }

        .intel-item:hover {
            box-shadow: var(--bs-shadow-card);
            border-color: var(--bs-primary-outline);
            text-decoration: none;
            transform: translateY(-1px);
        }

        .intel-thumb {
            width: 52px;
            height: 52px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .intel-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .intel-content {
            flex: 1;
            min-width: 0;
        }

        .intel-category {
            font-size: 12px;
            font-weight: 600;
            color: var(--bs-primary);
            margin-bottom: 4px;
            text-transform: none;
        }

        .intel-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--bs-text-primary);
            line-height: 1.5;
            margin-bottom: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .intel-meta {
            font-size: 12px;
            color: var(--bs-text-muted);
        }

        @media (max-width: 575.98px) {
            .intel-item {
                padding: 12px 14px;
                gap: 12px;
            }
            .intel-thumb {
                width: 42px;
                height: 42px;
            }
            .intel-title {
                font-size: 14px;
                white-space: normal;
            }
        }

        /* Data CTA */
        .data-cta-bar {
            background: var(--bs-footer-bg);
            border-radius: var(--bs-radius-card);
            padding: 28px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            color: #FFFFFF;
            box-shadow: 0 10px 30px rgba(16, 35, 63, 0.2);
        }

        .data-cta-bar .cta-text h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
            color: #FFFFFF;
        }

        .data-cta-bar .cta-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 0;
            line-height: 1.7;
        }

        .data-cta-bar .btn-custom-cta {
            background: var(--bs-accent);
            border: 1px solid var(--bs-accent);
            color: #FFFFFF;
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .data-cta-bar .btn-custom-cta:hover {
            background: #F09000;
            border-color: #F09000;
            color: #FFFFFF;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(255, 159, 28, 0.35);
            transform: translateY(-1px);
        }

        .data-cta-bar .cta-note {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 767.98px) {
            .data-cta-bar {
                flex-direction: column;
                text-align: center;
                padding: 22px 18px;
            }
            .data-cta-bar .cta-note {
                justify-content: center;
            }
        }

        /* Footer */
        .site-footer {
            background: var(--bs-footer-bg);
            color: rgba(255, 255, 255, 0.8);
            padding: 48px 0 24px;
            margin-top: auto;
            flex-shrink: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
            text-decoration: none;
        }

        .footer-brand:hover {
            color: #FFFFFF;
            text-decoration: none;
        }

        .footer-brand .brand-icon {
            width: 36px;
            height: 36px;
            background: var(--bs-primary);
            color: #FFFFFF;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin-bottom: 0;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            text-decoration: none;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-links a:hover {
            color: #FFFFFF;
            text-decoration: none;
            padding-left: 4px;
        }

        .footer-links a i {
            font-size: 10px;
            color: var(--bs-accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 991.98px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                text-align: center;
            }
            .site-footer {
                padding: 36px 0 20px;
            }
        }

        /* Utility */
        .text-muted-custom {
            color: var(--bs-text-muted) !important;
        }
        .text-primary-custom {
            color: var(--bs-primary) !important;
        }
        .bg-white-custom {
            background: #FFFFFF !important;
        }
        .mt-0 { margin-top: 0 !important; }
        .mb-0 { margin-bottom: 0 !important; }
        .mb-1 { margin-bottom: 4px !important; }
        .mb-2 { margin-bottom: 8px !important; }
        .mb-3 { margin-bottom: 16px !important; }
        .mb-4 { margin-bottom: 24px !important; }
        .mb-5 { margin-bottom: 32px !important; }
        .mt-3 { margin-top: 16px !important; }
        .mt-4 { margin-top: 24px !important; }
        .mt-5 { margin-top: 32px !important; }
        .gap-2 { gap: 8px; }
        .gap-3 { gap: 16px; }
        .d-flex { display: flex; }
        .align-items-center { align-items: center; }
        .justify-content-between { justify-content: space-between; }
        .flex-wrap { flex-wrap: wrap; }

/* roulang page: category2 */
:root {
            --bs-primary: #1259A5;
            --bs-primary-dark: #0C4B8A;
            --bs-primary-light: rgba(18, 89, 165, 0.08);
            --bs-primary-outline: rgba(18, 89, 165, 0.18);
            --bs-accent: #FF9F1C;
            --bs-accent-soft: rgba(255, 159, 28, 0.12);
            --bs-teal: #14B8A6;
            --bs-teal-soft: rgba(20, 184, 166, 0.12);
            --bs-bg-body: #F5F8FC;
            --bs-bg-card: #FFFFFF;
            --bs-bg-muted: #EDF1F7;
            --bs-border-color: #E3E9F2;
            --bs-border-light: #EEF2F7;
            --bs-text-primary: #172033;
            --bs-text-secondary: #5B6577;
            --bs-text-muted: #98A1B3;
            --bs-footer-bg: #10233F;
            --bs-radius-card: 16px;
            --bs-radius-btn: 10px;
            --bs-radius-badge: 999px;
            --bs-radius-image: 10px;
            --bs-shadow-card: 0 6px 20px rgba(15, 60, 120, 0.08);
            --bs-shadow-card-hover: 0 12px 28px rgba(15, 60, 120, 0.14);
            --bs-font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --bs-font-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
            --bs-section-padding: 72px;
            --bs-section-padding-mobile: 40px;
            --bs-container-max: 1200px;
            --bs-nav-height: 72px;
            --bs-nav-height-mobile: 60px;
            --bs-transition: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--bs-font-sans);
            background-color: var(--bs-bg-body);
            color: var(--bs-text-primary);
            font-size: 16px;
            line-height: 1.75;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        main {
            flex: 1 0 auto;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--bs-primary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        a:hover {
            color: var(--bs-primary-dark);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container-custom {
            max-width: var(--bs-container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            width: 100%;
        }

        .section-padding {
            padding-top: var(--bs-section-padding);
            padding-bottom: var(--bs-section-padding);
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--bs-text-primary);
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            max-width: 720px;
            margin-bottom: 32px;
        }

        .badge-soft {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: var(--bs-radius-badge);
            font-size: 13px;
            font-weight: 500;
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-primary-soft {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .badge-accent-soft {
            background: var(--bs-accent-soft);
            color: #B36A00;
        }

        .badge-teal-soft {
            background: var(--bs-teal-soft);
            color: #0B7C6E;
        }

        .btn-custom-primary {
            background-color: var(--bs-primary);
            border: 1px solid var(--bs-primary);
            color: #FFFFFF;
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-primary:hover,
        .btn-custom-primary:focus {
            background-color: var(--bs-primary-dark);
            border-color: var(--bs-primary-dark);
            color: #FFFFFF;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(18, 89, 165, 0.28);
            transform: translateY(-1px);
        }

        .btn-custom-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
        }

        .btn-custom-primary:focus-visible {
            outline: 2px solid var(--bs-primary);
            outline-offset: 2px;
        }

        .btn-custom-outline {
            background-color: transparent;
            border: 1px solid var(--bs-primary-outline);
            color: var(--bs-primary);
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-outline:hover,
        .btn-custom-outline:focus {
            background-color: var(--bs-primary-light);
            border-color: var(--bs-primary);
            color: var(--bs-primary-dark);
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(18, 89, 165, 0.12);
        }

        .btn-custom-outline:focus-visible {
            outline: 2px solid var(--bs-primary);
            outline-offset: 2px;
        }

        /* Header & Navigation */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--bs-border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 8px rgba(15, 60, 120, 0.04);
        }

        .navbar-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: var(--bs-nav-height);
            padding: 0;
            position: relative;
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--bs-text-primary);
            text-decoration: none;
            white-space: nowrap;
        }

        .navbar-brand-custom:hover {
            color: var(--bs-primary);
            text-decoration: none;
        }

        .brand-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--bs-primary);
            color: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .navbar-nav-custom {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 10px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--bs-text-primary);
            border-radius: 8px;
            transition: var(--bs-transition);
            text-decoration: none;
            white-space: nowrap;
            position: relative;
        }

        .nav-link:hover {
            color: var(--bs-primary);
            background: var(--bs-primary-light);
            text-decoration: none;
        }

        .nav-link.active {
            color: var(--bs-primary);
            font-weight: 600;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 3px;
            background: var(--bs-primary);
            border-radius: 2px;
        }

        .nav-link.active:hover {
            background: transparent;
        }

        .navbar-mega-trigger {
            background: transparent;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-btn);
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--bs-text-secondary);
            cursor: pointer;
            transition: var(--bs-transition);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .navbar-mega-trigger:hover,
        .navbar-mega-trigger:focus {
            border-color: var(--bs-primary);
            color: var(--bs-primary);
            background: var(--bs-primary-light);
        }

        .navbar-mega-trigger[aria-expanded="true"] {
            border-color: var(--bs-primary);
            color: var(--bs-primary);
            background: var(--bs-primary-light);
        }

        .mega-panel {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            width: 780px;
            max-width: calc(100vw - 32px);
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: 0 16px 40px rgba(15, 60, 120, 0.16);
            padding: 24px;
            display: none;
            z-index: 1060;
        }

        .mega-panel.show {
            display: block;
        }

        .mega-panel-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
        }

        .mega-panel-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--bs-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .mega-panel-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mega-panel-list li {
            margin-bottom: 8px;
        }

        .mega-panel-list a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--bs-text-secondary);
            padding: 6px 8px;
            border-radius: 8px;
            transition: var(--bs-transition);
        }

        .mega-panel-list a:hover {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
            text-decoration: none;
        }

        .mega-panel-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            border: 1px solid var(--bs-border-light);
            border-radius: 12px;
            margin-bottom: 10px;
            transition: var(--bs-transition);
        }

        .mega-panel-card:hover {
            border-color: var(--bs-border-color);
            box-shadow: var(--bs-shadow-card);
            background: #FAFBFE;
        }

        .mega-panel-card img {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .mega-panel-card-text {
            flex: 1;
            min-width: 0;
        }

        .mega-panel-card-text strong {
            display: block;
            font-size: 13px;
            color: var(--bs-text-primary);
            margin-bottom: 2px;
        }

        .mega-panel-card-text span {
            font-size: 12px;
            color: var(--bs-text-muted);
        }

        .navbar-toggler-custom {
            background: transparent;
            border: 1px solid var(--bs-border-color);
            border-radius: 10px;
            padding: 8px 12px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--bs-text-primary);
            transition: var(--bs-transition);
        }

        .navbar-toggler-custom:hover {
            border-color: var(--bs-primary);
            color: var(--bs-primary);
            background: var(--bs-primary-light);
        }

        /* Breadcrumb */
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--bs-text-muted);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .breadcrumb-custom a {
            color: var(--bs-text-secondary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        .breadcrumb-custom a:hover {
            color: var(--bs-primary);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .breadcrumb-custom .separator {
            color: var(--bs-text-muted);
            font-size: 12px;
        }

        .breadcrumb-custom .current {
            color: var(--bs-primary);
            font-weight: 500;
        }

        /* Category Header */
        .category-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--bs-border-light);
            padding-top: 32px;
            padding-bottom: 28px;
        }

        .category-header h1 {
            font-size: 30px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .category-header .category-desc {
            font-size: 15px;
            color: var(--bs-text-secondary);
            max-width: 720px;
            line-height: 1.8;
        }

        /* Schedule Filter */
        .schedule-filter-bar {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-card);
            padding: 20px 24px;
            box-shadow: var(--bs-shadow-card);
        }

        .filter-group {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .filter-group:last-child {
            margin-bottom: 0;
        }

        .filter-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--bs-text-secondary);
            min-width: 48px;
        }

        .filter-btn {
            padding: 6px 16px;
            border-radius: 50px;
            border: 1px solid var(--bs-border-color);
            background: #FFFFFF;
            font-size: 13px;
            font-weight: 500;
            color: var(--bs-text-secondary);
            cursor: pointer;
            transition: var(--bs-transition);
            white-space: nowrap;
        }

        .filter-btn:hover,
        .filter-btn:focus {
            border-color: var(--bs-primary);
            color: var(--bs-primary);
            background: var(--bs-primary-light);
        }

        .filter-btn.active {
            background: var(--bs-primary);
            border-color: var(--bs-primary);
            color: #FFFFFF;
        }

        .filter-select {
            padding: 8px 16px;
            border-radius: 10px;
            border: 1px solid var(--bs-border-color);
            font-size: 14px;
            color: var(--bs-text-primary);
            background: #FFFFFF;
            cursor: pointer;
            transition: var(--bs-transition);
            min-width: 140px;
        }

        .filter-select:focus {
            border-color: var(--bs-primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(18, 89, 165, 0.12);
        }

        .filter-apply-btn {
            background: var(--bs-primary);
            border: 1px solid var(--bs-primary);
            color: #FFFFFF;
            border-radius: 10px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .filter-apply-btn:hover {
            background: var(--bs-primary-dark);
            border-color: var(--bs-primary-dark);
            transform: translateY(-1px);
        }

        /* Schedule Cards */
        .schedule-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-card);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: var(--bs-transition);
            margin-bottom: 12px;
        }

        .schedule-card:hover {
            border-color: var(--bs-border-color);
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
        }

        .schedule-time {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 56px;
            flex-shrink: 0;
        }

        .schedule-time .time {
            font-family: var(--bs-font-mono);
            font-size: 16px;
            font-weight: 700;
            color: var(--bs-text-primary);
            line-height: 1.3;
        }

        .schedule-time .date-badge {
            font-size: 11px;
            color: var(--bs-text-muted);
            margin-top: 2px;
        }

        .schedule-league-badge {
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 500;
            background: var(--bs-primary-light);
            color: var(--bs-primary);
            min-width: 48px;
            text-align: center;
            flex-shrink: 0;
        }

        .schedule-teams {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .schedule-team-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: var(--bs-text-primary);
            font-weight: 500;
        }

        .schedule-team-row .team-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--bs-bg-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--bs-text-secondary);
            flex-shrink: 0;
        }

        .schedule-venue {
            font-size: 13px;
            color: var(--bs-text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
            min-width: 100px;
            flex-shrink: 0;
        }

        .schedule-status {
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .status-upcoming {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .status-live {
            background: var(--bs-teal-soft);
            color: #0B7C6E;
        }

        .status-finished {
            background: var(--bs-bg-muted);
            color: var(--bs-text-muted);
        }

        .schedule-follow-btn {
            background: transparent;
            border: 1px solid var(--bs-border-color);
            border-radius: 10px;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 500;
            color: var(--bs-text-secondary);
            cursor: pointer;
            transition: var(--bs-transition);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .schedule-follow-btn:hover {
            border-color: var(--bs-primary);
            color: var(--bs-primary);
            background: var(--bs-primary-light);
        }

        /* Focus Match Card */
        .focus-match-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-card);
            overflow: hidden;
            box-shadow: var(--bs-shadow-card);
            transition: var(--bs-transition);
        }

        .focus-match-card:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
        }

        .focus-match-card .card-img-wrap {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .focus-match-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .focus-match-card .card-img-overlay-custom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(16, 35, 63, 0.85), transparent);
            color: #FFFFFF;
        }

        .focus-match-card .card-body-custom {
            padding: 20px 24px;
        }

        .focus-match-card .match-info-row {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }

        .focus-match-card .match-tag {
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            background: var(--bs-accent-soft);
            color: #B36A00;
        }

        .focus-match-card .match-detail {
            font-size: 14px;
            color: var(--bs-text-secondary);
            line-height: 1.7;
        }

        /* Data Dimension */
        .dimension-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }

        .dimension-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-card);
            padding: 20px;
            transition: var(--bs-transition);
            text-align: center;
        }

        .dimension-card:hover {
            box-shadow: var(--bs-shadow-card);
            border-color: var(--bs-border-color);
        }

        .dimension-card .dimension-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--bs-primary-light);
            color: var(--bs-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin: 0 auto 12px;
        }

        .dimension-card .dimension-value {
            font-family: var(--bs-font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 4px;
        }

        .dimension-card .dimension-label {
            font-size: 14px;
            color: var(--bs-text-secondary);
            line-height: 1.5;
        }

        /* Tools Entry */
        .tools-entry-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .tool-entry-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-card);
            overflow: hidden;
            transition: var(--bs-transition);
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
        }

        .tool-entry-card:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
            border-color: var(--bs-border-color);
        }

        .tool-entry-card img {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .tool-entry-card .tool-entry-text {
            flex: 1;
            min-width: 0;
        }

        .tool-entry-card .tool-entry-text strong {
            font-size: 16px;
            color: var(--bs-text-primary);
            display: block;
            margin-bottom: 4px;
        }

        .tool-entry-card .tool-entry-text p {
            font-size: 13px;
            color: var(--bs-text-secondary);
            margin-bottom: 8px;
            line-height: 1.6;
        }

        /* Subscribe CTA */
        .subscribe-cta {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            padding: 28px 32px;
        }

        .subscribe-cta .subscribe-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

        .subscribe-input {
            flex: 1;
            min-width: 200px;
            padding: 12px 16px;
            border-radius: var(--bs-radius-btn);
            border: 1px solid var(--bs-border-color);
            font-size: 15px;
            color: var(--bs-text-primary);
            transition: var(--bs-transition);
            outline: none;
        }

        .subscribe-input:focus {
            border-color: var(--bs-primary);
            box-shadow: 0 0 0 3px rgba(18, 89, 165, 0.12);
        }

        .subscribe-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 14px;
        }

        .subscribe-option {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 50px;
            border: 1px solid var(--bs-border-color);
            font-size: 13px;
            color: var(--bs-text-secondary);
            cursor: pointer;
            transition: var(--bs-transition);
            user-select: none;
        }

        .subscribe-option:hover {
            border-color: var(--bs-primary);
            color: var(--bs-primary);
        }

        .subscribe-option input[type="checkbox"] {
            display: none;
        }

        .subscribe-option:has(input:checked) {
            background: var(--bs-primary-light);
            border-color: var(--bs-primary);
            color: var(--bs-primary);
            font-weight: 500;
        }

        /* Footer */
        .site-footer {
            background: var(--bs-footer-bg);
            color: #B8C4D4;
            padding: 48px 0 24px;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .footer-brand .brand-icon {
            background: var(--bs-primary);
            color: #FFFFFF;
        }

        .footer-desc {
            font-size: 14px;
            color: #A0AFC0;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #A0AFC0;
            font-size: 14px;
            text-decoration: none;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .footer-links a:hover {
            color: #FFFFFF;
            text-decoration: none;
        }

        .footer-links a i {
            font-size: 10px;
            color: var(--bs-primary);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            font-size: 13px;
            color: #8A97A8;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .navbar-toggler-custom {
                display: flex;
            }

            .navbar-nav-custom {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                background: #FFFFFF;
                border: 1px solid var(--bs-border-color);
                border-radius: 12px;
                box-shadow: var(--bs-shadow-card-hover);
                padding: 12px;
                gap: 4px;
                display: none;
                z-index: 1070;
            }

            .navbar-nav-custom.show {
                display: flex;
            }

            .nav-link {
                padding: 12px 16px;
                border-radius: 10px;
            }

            .nav-link.active::after {
                display: none;
            }

            .nav-link.active {
                background: var(--bs-primary-light);
            }

            .navbar-mega-trigger {
                display: none;
            }

            .mega-panel {
                position: static;
                width: 100%;
                max-width: 100%;
                box-shadow: none;
                border: none;
                padding: 12px 0;
                margin-top: 8px;
            }

            .mega-panel-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .tools-entry-grid {
                grid-template-columns: 1fr;
            }

            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }

            .section-padding {
                padding-top: var(--bs-section-padding-mobile);
                padding-bottom: var(--bs-section-padding-mobile);
            }

            .section-title {
                font-size: 22px;
            }
        }

        @media (max-width: 767.98px) {
            .schedule-card {
                flex-wrap: wrap;
                gap: 10px;
                padding: 14px 16px;
            }

            .schedule-time {
                min-width: 48px;
            }

            .schedule-teams {
                width: 100%;
                order: 3;
            }

            .schedule-venue {
                min-width: auto;
                order: 4;
            }

            .schedule-follow-btn {
                margin-left: auto;
            }

            .focus-match-card .card-img-wrap {
                height: 180px;
            }

            .category-header h1 {
                font-size: 24px;
            }

            .subscribe-cta {
                padding: 20px;
            }

            .subscribe-form {
                flex-direction: column;
            }

            .subscribe-input {
                width: 100%;
                min-width: auto;
            }
        }

        @media (max-width: 575.98px) {
            .navbar-custom {
                min-height: var(--bs-nav-height-mobile);
            }

            .navbar-brand-custom {
                font-size: 17px;
            }

            .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
                border-radius: 8px;
            }

            .schedule-filter-bar {
                padding: 14px 16px;
            }

            .filter-group {
                gap: 8px;
            }

            .filter-select {
                min-width: 120px;
                font-size: 13px;
                padding: 6px 12px;
            }

            .dimension-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .dimension-card {
                padding: 14px;
            }

            .dimension-card .dimension-value {
                font-size: 18px;
            }
        }

/* roulang page: category3 */
:root {
            --bs-primary: #1259A5;
            --bs-primary-dark: #0C4B8A;
            --bs-primary-light: rgba(18, 89, 165, 0.08);
            --bs-primary-outline: rgba(18, 89, 165, 0.18);
            --bs-accent: #FF9F1C;
            --bs-accent-soft: rgba(255, 159, 28, 0.12);
            --bs-teal: #14B8A6;
            --bs-teal-soft: rgba(20, 184, 166, 0.12);
            --bs-bg-body: #F5F8FC;
            --bs-bg-card: #FFFFFF;
            --bs-bg-muted: #EDF1F7;
            --bs-border-color: #E3E9F2;
            --bs-border-light: #EEF2F7;
            --bs-text-primary: #172033;
            --bs-text-secondary: #5B6577;
            --bs-text-muted: #98A1B3;
            --bs-footer-bg: #10233F;
            --bs-radius-card: 16px;
            --bs-radius-btn: 10px;
            --bs-radius-badge: 999px;
            --bs-radius-image: 10px;
            --bs-shadow-card: 0 6px 20px rgba(15, 60, 120, 0.08);
            --bs-shadow-card-hover: 0 12px 28px rgba(15, 60, 120, 0.14);
            --bs-font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --bs-font-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
            --bs-section-padding: 72px;
            --bs-section-padding-mobile: 40px;
            --bs-container-max: 1200px;
            --bs-nav-height: 72px;
            --bs-nav-height-mobile: 60px;
            --bs-transition: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--bs-font-sans);
            background-color: var(--bs-bg-body);
            color: var(--bs-text-primary);
            font-size: 16px;
            line-height: 1.75;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        main {
            flex: 1 0 auto;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--bs-primary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        a:hover {
            color: var(--bs-primary-dark);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container-custom {
            max-width: var(--bs-container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            width: 100%;
        }

        .section-padding {
            padding-top: var(--bs-section-padding);
            padding-bottom: var(--bs-section-padding);
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--bs-text-primary);
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            max-width: 720px;
            margin-bottom: 32px;
        }

        .badge-soft {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: var(--bs-radius-badge);
            font-size: 13px;
            font-weight: 500;
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-primary-soft {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .badge-accent-soft {
            background: var(--bs-accent-soft);
            color: #B36A00;
        }

        .badge-teal-soft {
            background: var(--bs-teal-soft);
            color: #0B7C6E;
        }

        .btn-custom-primary {
            background-color: var(--bs-primary);
            border: 1px solid var(--bs-primary);
            color: #FFFFFF;
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-primary:hover,
        .btn-custom-primary:focus {
            background-color: var(--bs-primary-dark);
            border-color: var(--bs-primary-dark);
            color: #FFFFFF;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(18, 89, 165, 0.28);
            transform: translateY(-1px);
        }

        .btn-custom-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
        }

        .btn-custom-outline {
            background-color: transparent;
            border: 1px solid var(--bs-primary-outline);
            color: var(--bs-primary);
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-outline:hover,
        .btn-custom-outline:focus {
            background-color: var(--bs-primary-light);
            border-color: var(--bs-primary);
            color: var(--bs-primary);
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(18, 89, 165, 0.18);
            transform: translateY(-1px);
        }

        .btn-custom-outline:active {
            transform: translateY(0);
            background-color: rgba(18, 89, 165, 0.12);
        }

        .card-custom {
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            transition: var(--bs-transition);
            overflow: hidden;
        }

        .card-custom:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-3px);
        }

        .card-cover {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            border-radius: var(--bs-radius-image) var(--bs-radius-image) 0 0;
        }

        .card-body-custom {
            padding: 20px 22px;
        }

        .card-title-custom {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--bs-text-primary);
            margin-bottom: 8px;
        }

        .card-text-custom {
            font-size: 14px;
            color: var(--bs-text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--bs-text-muted);
        }

        .tag-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: var(--bs-radius-badge);
            font-size: 13px;
            font-weight: 500;
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-color);
            color: var(--bs-text-secondary);
            cursor: pointer;
            transition: var(--bs-transition);
            white-space: nowrap;
        }

        .tag-chip:hover,
        .tag-chip:focus,
        .tag-chip.active {
            background: var(--bs-primary);
            border-color: var(--bs-primary);
            color: #FFFFFF;
            box-shadow: 0 4px 12px rgba(18, 89, 165, 0.22);
        }

        /* Header / Navigation */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--bs-border-color);
            position: sticky;
            top: 0;
            z-index: 1030;
            height: var(--bs-nav-height);
            display: flex;
            align-items: center;
        }

        .site-header .container-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            height: 100%;
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--bs-text-primary);
            text-decoration: none;
            white-space: nowrap;
        }

        .navbar-brand-custom:hover {
            color: var(--bs-primary);
            text-decoration: none;
        }

        .brand-icon {
            width: 36px;
            height: 36px;
            background: var(--bs-primary);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 16px;
            flex-shrink: 0;
        }

        .navbar-nav-custom {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar-nav-custom .nav-item {
            position: relative;
        }

        .navbar-nav-custom .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            font-size: 15px;
            font-weight: 500;
            color: var(--bs-text-secondary);
            border-radius: var(--bs-radius-btn);
            transition: var(--bs-transition);
            cursor: pointer;
            text-decoration: none;
            border: 1px solid transparent;
            background: transparent;
        }

        .navbar-nav-custom .nav-link:hover {
            color: var(--bs-primary);
            background: var(--bs-primary-light);
            text-decoration: none;
        }

        .navbar-nav-custom .nav-link.active {
            color: var(--bs-primary);
            background: var(--bs-primary-light);
            border-bottom: 2px solid var(--bs-primary);
            border-radius: var(--bs-radius-btn) var(--bs-radius-btn) 0 0;
        }

        .mega-menu-trigger {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-secondary);
            background: transparent;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-btn);
            cursor: pointer;
            transition: var(--bs-transition);
            white-space: nowrap;
        }

        .mega-menu-trigger:hover,
        .mega-menu-trigger:focus,
        .mega-menu-trigger[aria-expanded="true"] {
            border-color: var(--bs-primary);
            color: var(--bs-primary);
            background: var(--bs-primary-light);
            box-shadow: 0 4px 12px rgba(18, 89, 165, 0.12);
        }

        .mega-panel {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            width: 860px;
            max-width: 92vw;
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: 0 24px 60px rgba(15, 60, 120, 0.16);
            padding: 24px;
            display: none;
            z-index: 1040;
        }

        .mega-panel.show {
            display: block;
        }

        .mega-panel-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 24px;
        }

        .mega-panel-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--bs-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .mega-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mega-link-list a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--bs-text-secondary);
            padding: 6px 8px;
            border-radius: 6px;
            transition: var(--bs-transition);
            text-decoration: none;
        }

        .mega-link-list a i {
            font-size: 12px;
            width: 16px;
            color: var(--bs-primary);
        }

        .mega-link-list a:hover {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .mega-entry-card {
            background: var(--bs-bg-body);
            border: 1px solid var(--bs-border-light);
            border-radius: 12px;
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--bs-transition);
            text-decoration: none;
        }

        .mega-entry-card:hover {
            border-color: var(--bs-primary-outline);
            box-shadow: var(--bs-shadow-card);
            text-decoration: none;
        }

        .mega-entry-card img {
            width: 52px;
            height: 52px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .mega-entry-card .entry-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .mega-entry-card .entry-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-primary);
            line-height: 1.4;
        }

        .mega-entry-card .entry-sub {
            font-size: 12px;
            color: var(--bs-text-muted);
        }

        .offcanvas-custom {
            background: #FFFFFF;
            border-left: 1px solid var(--bs-border-color);
            max-width: 320px;
            padding: 20px;
        }

        .offcanvas-custom .nav-item {
            width: 100%;
        }

        .offcanvas-custom .nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--bs-text-secondary);
            border-radius: var(--bs-radius-btn);
            transition: var(--bs-transition);
            text-decoration: none;
            width: 100%;
        }

        .offcanvas-custom .nav-link:hover {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .offcanvas-custom .nav-link.active {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
            border-left: 3px solid var(--bs-primary);
        }

        .mobile-toggle-btn {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-btn);
            background: #FFFFFF;
            color: var(--bs-text-secondary);
            font-size: 18px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: var(--bs-transition);
        }

        .mobile-toggle-btn:hover {
            border-color: var(--bs-primary);
            color: var(--bs-primary);
            background: var(--bs-primary-light);
        }

        /* Page header breadcrumb */
        .page-header-section {
            background: #FFFFFF;
            border-bottom: 1px solid var(--bs-border-color);
            padding: 28px 0;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--bs-text-muted);
            list-style: none;
            padding: 0;
            margin: 0 0 10px 0;
            flex-wrap: wrap;
        }

        .breadcrumb-custom li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-custom a {
            color: var(--bs-text-secondary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        .breadcrumb-custom a:hover {
            color: var(--bs-primary);
        }

        .breadcrumb-custom .separator {
            color: var(--bs-text-muted);
            font-size: 12px;
        }

        .breadcrumb-custom .current {
            color: var(--bs-primary);
            font-weight: 500;
        }

        .page-header-section h1 {
            font-size: 30px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin: 0 0 8px 0;
            line-height: 1.3;
        }

        .page-header-section .h1-desc {
            font-size: 15px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            max-width: 720px;
            margin: 0;
        }

        /* Filter tag bar */
        .filter-tag-bar {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .filter-tag-bar .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-secondary);
            margin-right: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Topic cards */
        .topic-card-large .card-cover {
            aspect-ratio: 21/9;
        }

        .topic-card-small .card-cover {
            aspect-ratio: 16/10;
        }

        /* League rank cards */
        .rank-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .rank-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-light);
            border-radius: 12px;
            transition: var(--bs-transition);
        }

        .rank-item:hover {
            border-color: var(--bs-primary-outline);
            box-shadow: var(--bs-shadow-card);
            transform: translateX(2px);
        }

        .rank-pos {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            background: var(--bs-bg-muted);
            color: var(--bs-text-secondary);
            flex-shrink: 0;
        }

        .rank-item.top-1 .rank-pos {
            background: var(--bs-accent);
            color: #FFFFFF;
        }

        .rank-item.top-2 .rank-pos {
            background: #C0C7D1;
            color: #FFFFFF;
        }

        .rank-item.top-3 .rank-pos {
            background: #B87A5E;
            color: #FFFFFF;
        }

        .rank-info {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .rank-team {
            font-size: 15px;
            font-weight: 600;
            color: var(--bs-text-primary);
            min-width: 100px;
        }

        .rank-stats {
            display: flex;
            gap: 14px;
            font-size: 13px;
            color: var(--bs-text-secondary);
        }

        .rank-stats span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .rank-pts {
            font-size: 18px;
            font-weight: 700;
            color: var(--bs-primary);
            font-family: var(--bs-font-mono);
        }

        /* CTA subscription */
        .cta-subscribe-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cta-subscribe-card .form-check {
            margin-bottom: 0;
        }

        .cta-subscribe-card .form-check-input:checked {
            background-color: var(--bs-primary);
            border-color: var(--bs-primary);
        }

        .cta-subscribe-card .form-check-input:focus {
            box-shadow: 0 0 0 3px rgba(18, 89, 165, 0.15);
            border-color: var(--bs-primary);
        }

        .form-control-custom {
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-btn);
            padding: 10px 16px;
            font-size: 15px;
            transition: var(--bs-transition);
            background: #FFFFFF;
            color: var(--bs-text-primary);
        }

        .form-control-custom:focus {
            border-color: var(--bs-primary);
            box-shadow: 0 0 0 3px rgba(18, 89, 165, 0.15);
            outline: none;
        }

        /* Footer */
        .site-footer {
            background: var(--bs-footer-bg);
            color: #B8C4D4;
            padding: 56px 0 28px;
            margin-top: auto;
        }

        .site-footer .container-custom {
            max-width: var(--bs-container-max);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 36px;
            margin-bottom: 36px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
        }

        .footer-brand .brand-icon {
            width: 36px;
            height: 36px;
            background: var(--bs-primary);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 16px;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: #8A97A8;
            margin: 0;
            max-width: 320px;
        }

        .footer-title {
            font-size: 14px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #8A97A8;
            text-decoration: none;
            transition: var(--bs-transition);
        }

        .footer-links a i {
            font-size: 10px;
            color: var(--bs-primary);
        }

        .footer-links a:hover {
            color: #FFFFFF;
            text-decoration: none;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
            color: #6B7888;
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .mega-panel {
                width: 720px;
            }
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr;
            }
        }

        @media (max-width: 991.98px) {
            .navbar-nav-custom {
                display: none;
            }
            .mega-menu-trigger {
                display: none;
            }
            .mobile-toggle-btn {
                display: inline-flex;
            }
            :root {
                --bs-nav-height: 60px;
                --bs-section-padding: 48px;
            }
            .page-header-section h1 {
                font-size: 26px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .mega-panel-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 767.98px) {
            :root {
                --bs-section-padding-mobile: 36px;
                --bs-nav-height-mobile: 56px;
            }
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
            .section-title {
                font-size: 22px;
            }
            .section-subtitle {
                font-size: 15px;
            }
            .page-header-section h1 {
                font-size: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-subscribe-card {
                padding: 24px 18px;
            }
            .rank-item {
                flex-wrap: wrap;
            }
            .rank-stats {
                flex-wrap: wrap;
                gap: 8px 16px;
            }
            .mega-panel {
                display: none !important;
            }
        }

        @media (max-width: 575.98px) {
            .container-custom {
                padding-left: 12px;
                padding-right: 12px;
            }
            .section-padding {
                padding-top: 36px;
                padding-bottom: 36px;
            }
            .page-header-section {
                padding: 20px 0;
            }
            .page-header-section h1 {
                font-size: 22px;
            }
            .topic-card-large .card-cover {
                aspect-ratio: 16/9;
            }
            .tag-chip {
                font-size: 12px;
                padding: 5px 12px;
            }
            .btn-custom-primary,
            .btn-custom-outline {
                padding: 9px 18px;
                font-size: 14px;
            }
        }

        @media (min-width: 992px) {
            .offcanvas-custom,
            .offcanvas-backdrop-custom {
                display: none !important;
            }
        }

/* roulang page: category4 */
:root {
            --bs-primary: #1259A5;
            --bs-primary-dark: #0C4B8A;
            --bs-primary-light: rgba(18, 89, 165, 0.08);
            --bs-primary-outline: rgba(18, 89, 165, 0.18);
            --bs-accent: #FF9F1C;
            --bs-accent-soft: rgba(255, 159, 28, 0.12);
            --bs-teal: #14B8A6;
            --bs-teal-soft: rgba(20, 184, 166, 0.12);
            --bs-bg-body: #F5F8FC;
            --bs-bg-card: #FFFFFF;
            --bs-bg-muted: #EDF1F7;
            --bs-border-color: #E3E9F2;
            --bs-border-light: #EEF2F7;
            --bs-text-primary: #172033;
            --bs-text-secondary: #5B6577;
            --bs-text-muted: #98A1B3;
            --bs-footer-bg: #10233F;
            --bs-radius-card: 16px;
            --bs-radius-btn: 10px;
            --bs-radius-badge: 999px;
            --bs-radius-image: 10px;
            --bs-shadow-card: 0 6px 20px rgba(15, 60, 120, 0.08);
            --bs-shadow-card-hover: 0 12px 28px rgba(15, 60, 120, 0.14);
            --bs-font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            --bs-font-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
            --bs-section-padding: 72px;
            --bs-section-padding-mobile: 40px;
            --bs-container-max: 1200px;
            --bs-nav-height: 72px;
            --bs-nav-height-mobile: 60px;
            --bs-transition: all 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--bs-font-sans);
            background-color: var(--bs-bg-body);
            color: var(--bs-text-primary);
            font-size: 16px;
            line-height: 1.75;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        main {
            flex: 1 0 auto;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--bs-primary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        a:hover {
            color: var(--bs-primary-dark);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container-custom {
            max-width: var(--bs-container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            width: 100%;
        }

        .section-padding {
            padding-top: var(--bs-section-padding);
            padding-bottom: var(--bs-section-padding);
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--bs-text-primary);
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            max-width: 720px;
            margin-bottom: 32px;
        }

        .badge-soft {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: var(--bs-radius-badge);
            font-size: 13px;
            font-weight: 500;
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-primary-soft {
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .badge-accent-soft {
            background: var(--bs-accent-soft);
            color: #B36A00;
        }

        .badge-teal-soft {
            background: var(--bs-teal-soft);
            color: #0B7C6E;
        }

        .btn-custom-primary {
            background-color: var(--bs-primary);
            border: 1px solid var(--bs-primary);
            color: #FFFFFF;
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-primary:hover,
        .btn-custom-primary:focus {
            background-color: var(--bs-primary-dark);
            border-color: var(--bs-primary-dark);
            color: #FFFFFF;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(18, 89, 165, 0.28);
            transform: translateY(-1px);
        }

        .btn-custom-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
        }

        .btn-custom-outline {
            background-color: transparent;
            border: 1px solid var(--bs-primary-outline);
            color: var(--bs-primary);
            border-radius: var(--bs-radius-btn);
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--bs-transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            line-height: 1.5;
        }

        .btn-custom-outline:hover,
        .btn-custom-outline:focus {
            background-color: var(--bs-primary-light);
            border-color: var(--bs-primary);
            color: var(--bs-primary-dark);
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(18, 89, 165, 0.12);
        }

        .card-common {
            background: var(--bs-bg-card);
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            transition: var(--bs-transition);
        }

        .card-common:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
        }

        .card-common .card-img-top {
            border-radius: var(--bs-radius-card) var(--bs-radius-card) 0 0;
            overflow: hidden;
        }

        .card-common .card-img-top img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .card-common:hover .card-img-top img {
            transform: scale(1.03);
        }

        .card-common .card-body {
            padding: 20px 22px;
        }

        .card-common .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .card-common .card-text {
            font-size: 14px;
            color: var(--bs-text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .mono-text {
            font-family: var(--bs-font-mono);
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .trend-up {
            color: #C43D3D;
            background: rgba(196, 61, 61, 0.1);
            padding: 2px 8px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
        }

        .trend-down {
            color: #0B7C6E;
            background: rgba(20, 184, 166, 0.1);
            padding: 2px 8px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
        }

        .trend-flat {
            color: var(--bs-text-muted);
            background: var(--bs-bg-muted);
            padding: 2px 8px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
        }

        /* 导航 */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--bs-border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--bs-nav-height);
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(15, 60, 120, 0.04);
        }

        .site-header .navbar-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--bs-text-primary);
            text-decoration: none;
            letter-spacing: 0.02em;
        }

        .brand-logo:hover {
            color: var(--bs-primary);
            text-decoration: none;
        }

        .brand-logo .brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--bs-primary);
            color: #FFFFFF;
            font-size: 16px;
        }

        .navbar-nav-custom {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar-nav-custom .nav-item {
            position: relative;
        }

        .navbar-nav-custom .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--bs-text-primary);
            text-decoration: none;
            border-radius: 8px;
            transition: var(--bs-transition);
            position: relative;
            white-space: nowrap;
        }

        .navbar-nav-custom .nav-link:hover {
            color: var(--bs-primary);
            background: var(--bs-primary-light);
            text-decoration: none;
        }

        .navbar-nav-custom .nav-link.active {
            color: var(--bs-primary);
            background: var(--bs-primary-light);
            font-weight: 600;
        }

        .navbar-nav-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--bs-primary);
            border-radius: 2px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-mega-toggle {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--bs-text-primary);
            background: var(--bs-bg-muted);
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-btn);
            cursor: pointer;
            transition: var(--bs-transition);
            text-decoration: none;
            white-space: nowrap;
        }

        .nav-mega-toggle:hover {
            background: var(--bs-primary-light);
            border-color: var(--bs-primary-outline);
            color: var(--bs-primary);
            text-decoration: none;
        }

        .nav-mega-toggle[aria-expanded="true"] {
            background: var(--bs-primary-light);
            border-color: var(--bs-primary-outline);
            color: var(--bs-primary);
        }

        .mega-panel {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            width: 720px;
            max-width: calc(100vw - 32px);
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: 0 20px 48px rgba(15, 60, 120, 0.14);
            z-index: 1100;
            padding: 20px 24px;
            gap: 20px;
        }

        .mega-panel.show {
            display: flex;
            flex-wrap: wrap;
            animation: megaFadeIn 0.2s ease;
        }

        @keyframes megaFadeIn {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mega-section {
            flex: 1 1 180px;
            min-width: 160px;
        }

        .mega-section-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--bs-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 10px;
        }

        .mega-link-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .mega-link-list a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--bs-text-secondary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        .mega-link-list a:hover {
            color: var(--bs-primary);
            text-decoration: none;
            transform: translateX(2px);
        }

        .mega-entry-card {
            flex: 1 1 220px;
            min-width: 200px;
            background: var(--bs-bg-body);
            border: 1px solid var(--bs-border-light);
            border-radius: 12px;
            padding: 14px 16px;
            transition: var(--bs-transition);
        }

        .mega-entry-card:hover {
            background: var(--bs-primary-light);
            border-color: var(--bs-primary-outline);
        }

        .mega-entry-card .mega-entry-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-primary);
            margin-bottom: 4px;
        }

        .mega-entry-card .mega-entry-desc {
            font-size: 12px;
            color: var(--bs-text-muted);
            line-height: 1.6;
        }

        /* 面包屑 */
        .breadcrumb-bar {
            background: var(--bs-bg-muted);
            border-bottom: 1px solid var(--bs-border-light);
            padding: 12px 0;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 14px;
            flex-wrap: wrap;
        }

        .breadcrumb-custom li {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--bs-text-muted);
        }

        .breadcrumb-custom li a {
            color: var(--bs-text-secondary);
            text-decoration: none;
            transition: var(--bs-transition);
        }

        .breadcrumb-custom li a:hover {
            color: var(--bs-primary);
            text-decoration: none;
        }

        .breadcrumb-custom li.active {
            color: var(--bs-primary);
            font-weight: 500;
        }

        /* 分类头部 */
        .category-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--bs-border-light);
            padding: 36px 0 40px;
        }

        .category-header h1 {
            font-size: 28px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .category-header .category-desc {
            font-size: 15px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            max-width: 760px;
            margin-bottom: 0;
        }

        /* 筛选条 */
        .filter-bar {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .filter-bar .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-text-secondary);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .filter-tags {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 14px;
            font-size: 13px;
            font-weight: 500;
            color: var(--bs-text-secondary);
            background: var(--bs-bg-body);
            border: 1px solid var(--bs-border-light);
            border-radius: var(--bs-radius-badge);
            cursor: pointer;
            transition: var(--bs-transition);
            white-space: nowrap;
            user-select: none;
        }

        .filter-tag:hover {
            border-color: var(--bs-primary-outline);
            color: var(--bs-primary);
            background: var(--bs-primary-light);
        }

        .filter-tag.active {
            background: var(--bs-primary);
            border-color: var(--bs-primary);
            color: #FFFFFF;
            font-weight: 600;
        }

        /* 指数列表 */
        .odds-table-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            overflow: hidden;
        }

        .odds-table-card .table-header-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 0.8fr 0.8fr 0.8fr;
            gap: 12px;
            padding: 12px 20px;
            background: var(--bs-bg-muted);
            font-size: 13px;
            font-weight: 600;
            color: var(--bs-text-secondary);
            border-bottom: 1px solid var(--bs-border-light);
            align-items: center;
        }

        .odds-table-card .table-body-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 0.8fr 0.8fr 0.8fr;
            gap: 12px;
            padding: 16px 20px;
            font-size: 14px;
            color: var(--bs-text-primary);
            border-bottom: 1px solid var(--bs-border-light);
            align-items: center;
            transition: var(--bs-transition);
            cursor: pointer;
        }

        .odds-table-card .table-body-row:last-child {
            border-bottom: none;
        }

        .odds-table-card .table-body-row:hover {
            background: var(--bs-primary-light);
        }

        .odds-table-card .match-teams {
            font-weight: 600;
            font-size: 15px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .odds-table-card .match-teams .match-time {
            font-size: 12px;
            color: var(--bs-text-muted);
            font-weight: 400;
        }

        .odds-table-card .odds-type-badge {
            display: inline-flex;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            background: var(--bs-primary-light);
            color: var(--bs-primary);
        }

        .odds-table-card .odds-value {
            font-family: var(--bs-font-mono);
            font-weight: 600;
            font-size: 14px;
        }

        .odds-table-card .odds-change {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            font-size: 12px;
            font-weight: 600;
        }

        /* 移动端卡片式 */
        .odds-mobile-cards {
            display: none;
        }

        .odds-mobile-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            padding: 16px;
            margin-bottom: 12px;
            transition: var(--bs-transition);
        }

        .odds-mobile-card:hover {
            box-shadow: var(--bs-shadow-card-hover);
        }

        .odds-mobile-card .mobile-match-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 10px;
        }

        .odds-mobile-card .mobile-teams {
            font-weight: 600;
            font-size: 15px;
            color: var(--bs-text-primary);
            margin-bottom: 2px;
        }

        .odds-mobile-card .mobile-time {
            font-size: 12px;
            color: var(--bs-text-muted);
        }

        .odds-mobile-card .mobile-odds-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
            padding-top: 10px;
            border-top: 1px solid var(--bs-border-light);
        }

        .odds-mobile-card .mobile-odds-item {
            text-align: center;
        }

        .odds-mobile-card .mobile-odds-item .mobile-label {
            font-size: 11px;
            color: var(--bs-text-muted);
            margin-bottom: 2px;
        }

        .odds-mobile-card .mobile-odds-item .mobile-value {
            font-family: var(--bs-font-mono);
            font-weight: 600;
            font-size: 14px;
            color: var(--bs-text-primary);
        }

        /* 指数解读 */
        .analysis-explain-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .explain-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            padding: 24px;
            transition: var(--bs-transition);
        }

        .explain-card:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
        }

        .explain-card .explain-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--bs-primary-light);
            color: var(--bs-primary);
            font-size: 20px;
            margin-bottom: 14px;
        }

        .explain-card .explain-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 8px;
        }

        .explain-card .explain-text {
            font-size: 14px;
            color: var(--bs-text-secondary);
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* 风险提示条 */
        .risk-subscribe-section {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            padding: 32px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .risk-subscribe-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--bs-accent);
            border-radius: 4px 0 0 4px;
        }

        .risk-subscribe-section .risk-left {
            max-width: 540px;
        }

        .risk-subscribe-section .risk-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--bs-text-primary);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .risk-subscribe-section .risk-desc {
            font-size: 14px;
            color: var(--bs-text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .risk-subscribe-section .risk-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        /* 相关文章 */
        .related-article-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .related-article-card {
            background: #FFFFFF;
            border: 1px solid var(--bs-border-color);
            border-radius: var(--bs-radius-card);
            box-shadow: var(--bs-shadow-card);
            overflow: hidden;
            transition: var(--bs-transition);
        }

        .related-article-card:hover {
            box-shadow: var(--bs-shadow-card-hover);
            transform: translateY(-2px);
        }

        .related-article-card .article-img {
            height: 160px;
            overflow: hidden;
        }

        .related-article-card .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .related-article-card:hover .article-img img {
            transform: scale(1.04);
        }

        .related-article-card .article-body {
            padding: 18px 20px;
        }

        .related-article-card .article-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--bs-text-primary);
            margin-bottom: 6px;
            line-height: 1.45;
        }

        .related-article-card .article-meta {
            font-size: 13px;
            color: var(--bs-text-muted);
        }

        /* 页脚 */
        .site-footer {
            background: var(--bs-footer-bg);
            color: #D8E1EE;
            padding: 48px 0 24px;
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .site-footer .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .site-footer .footer-brand .brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            background: var(--bs-primary);
            color: #FFFFFF;
            font-size: 14px;
        }

        .site-footer .footer-desc {
            font-size: 13px;
            color: #8A97A8;
            line-height: 1.7;
            margin-bottom: 0;
            max-width: 360px;
        }

        .site-footer .footer-title {
            font-size: 15px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .site-footer .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .site-footer .footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #8A97A8;
            text-decoration: none;
            transition: var(--bs-transition);
        }

        .site-footer .footer-links a:hover {
            color: #FFFFFF;
            text-decoration: none;
            transform: translateX(2px);
        }

        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 12px;
            color: #8A97A8;
        }

        /* 响应式 */
        @media (max-width: 991.98px) {
            .site-header {
                height: auto;
                padding: 8px 0;
            }

            .site-header .navbar-wrap {
                flex-wrap: wrap;
                gap: 8px;
            }

            .navbar-nav-custom {
                flex-wrap: wrap;
                gap: 2px;
                width: 100%;
                order: 2;
            }

            .navbar-nav-custom .nav-link {
                padding: 8px 12px;
                font-size: 14px;
            }

            .mega-panel {
                position: static;
                width: 100%;
                max-width: 100%;
                margin-top: 8px;
                flex-direction: column;
            }

            .mega-panel.show {
                display: flex;
            }

            .odds-table-card .table-header-row,
            .odds-table-card .table-body-row {
                grid-template-columns: 1.5fr 0.8fr 0.8fr 0.7fr 0.7fr 0.7fr;
                gap: 8px;
                padding: 10px 14px;
                font-size: 12px;
            }

            .odds-table-card .match-teams {
                font-size: 13px;
            }

            .odds-table-card .odds-type-badge {
                font-size: 11px;
                padding: 3px 8px;
            }

            .odds-table-card .odds-value {
                font-size: 12px;
            }

            .related-article-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 767.98px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }

            .section-padding {
                padding-top: var(--bs-section-padding-mobile);
                padding-bottom: var(--bs-section-padding-mobile);
            }

            .section-title {
                font-size: 22px;
            }

            .section-subtitle {
                font-size: 15px;
            }

            .category-header {
                padding: 24px 0 28px;
            }

            .category-header h1 {
                font-size: 24px;
            }

            .filter-bar {
                padding: 14px 16px;
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }

            .filter-tags {
                gap: 6px;
            }

            .filter-tag {
                font-size: 12px;
                padding: 5px 10px;
            }

            .odds-table-card .table-header-row {
                display: none;
            }

            .odds-table-card .table-body-row {
                display: none;
            }

            .odds-mobile-cards {
                display: block;
            }

            .analysis-explain-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .risk-subscribe-section {
                padding: 24px 20px;
                flex-direction: column;
                align-items: flex-start;
            }

            .risk-subscribe-section .risk-actions {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }

            .risk-subscribe-section .risk-actions .btn-custom-primary,
            .risk-subscribe-section .risk-actions .btn-custom-outline {
                justify-content: center;
                width: 100%;
            }

            .related-article-list {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }
        }

        @media (max-width: 575.98px) {
            .navbar-nav-custom .nav-link {
                font-size: 13px;
                padding: 7px 10px;
            }

            .brand-logo {
                font-size: 17px;
                gap: 8px;
            }

            .brand-logo .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 13px;
                border-radius: 6px;
            }

            .category-header h1 {
                font-size: 22px;
            }

            .category-header .category-desc {
                font-size: 14px;
            }

            .mega-panel {
                padding: 14px 16px;
                gap: 14px;
            }

            .mega-entry-card {
                min-width: 100%;
            }
        }

/* 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}
