/* roulang page: index */
:root {
            --brand-dark: #0C4A3A;
            --brand-hover: #0F5B47;
            --brand-light: #1A6B4F;
            --accent-amber: #F5A623;
            --deep-bg: #0C1E1A;
            --hero-grad: #07120F;
            --text-dark: #1A2B26;
            --text-secondary: #61726C;
            --bg-white: #FFFFFF;
            --bg-lightgray: #F4F7F5;
            --border-line: #E1E7E3;
            --dark-text: #EAF3EF;
            --font-main: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-number: "Inter", "Roboto", -apple-system, sans-serif;
            --radius-card: 14px;
            --radius-inner: 8px;
            --radius-btn: 999px;
            --shadow-base: 0 1px 2px rgba(12, 30, 26, 0.04), 0 8px 24px rgba(12, 30, 26, 0.06);
            --shadow-hover: 0 12px 40px rgba(12, 30, 26, 0.12);
            --spacing-section: 88px;
            --spacing-mobile: 52px;
        }
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background: var(--bg-white);
            color: var(--text-dark);
            font-size: 16px;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: var(--brand-dark);
            text-decoration: none;
            transition: color .2s;
        }
        a:hover {
            color: var(--brand-hover);
        }
        .container {
            max-width: 1320px;
            padding-left: 24px;
            padding-right: 24px;
        }
        .section {
            padding: var(--spacing-section) 0;
        }
        .section-sm {
            padding: 56px 0;
        }
        .bg-lightgray-section {
            background: var(--bg-lightgray);
        }
        .text-brand {
            color: var(--brand-dark) !important;
        }
        .text-custom-secondary {
            color: var(--text-secondary) !important;
        }
        .border-custom {
            border-color: var(--border-line) !important;
        }
        .btn {
            font-weight: 600;
            border-radius: var(--radius-btn);
            padding: 10px 28px;
            font-size: 15px;
            transition: all .25s ease;
        }
        .btn:focus,
        .btn-outline-light:focus,
        .btn-brand:focus {
            outline: 2px solid var(--accent-amber) !important;
            outline-offset: 3px;
            box-shadow: none !important;
        }
        .btn-brand {
            background: var(--brand-dark);
            color: #fff;
            border-color: var(--brand-dark);
            box-shadow: 0 2px 8px rgba(12, 74, 58, .2);
        }
        .btn-brand:hover {
            background: var(--brand-hover);
            border-color: var(--brand-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(12, 74, 58, .25);
        }
        .btn-brand:active {
            transform: translateY(1px);
            box-shadow: 0 2px 6px rgba(12, 74, 58, .15);
        }
        .btn-outline-brand {
            background: transparent;
            border: 1.5px solid var(--text-dark);
            color: var(--text-dark);
            padding: 9px 24px;
        }
        .btn-outline-brand:hover {
            background: var(--bg-lightgray);
            border-color: var(--brand-dark);
            color: var(--brand-dark);
        }
        .btn-outline-light-bordered {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, .8);
            color: #fff;
        }
        .btn-outline-light-bordered:hover {
            background: rgba(255, 255, 255, .1);
            border-color: #fff;
            color: #fff;
        }
        .btn-block {
            display: block;
            width: 100%;
            text-align: center;
        }
        /* Nav */
        .navbar {
            min-height: 64px;
            background: #fff;
            border-bottom: 1px solid var(--border-line) !important;
            box-shadow: none;
        }
        .navbar .navbar-brand {
            font-weight: 700;
            font-size: 20px;
            color: var(--brand-dark);
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0;
            letter-spacing: .5px;
        }
        .navbar .navbar-brand i {
            font-size: 24px;
            color: var(--brand-dark);
        }
        .navbar .navbar-nav {
            margin-left: auto;
            margin-right: auto;
        }
        .navbar .nav-link {
            font-size: 15px;
            color: var(--text-dark);
            font-weight: 500;
            margin: 0 16px;
            padding: 6px 4px;
            position: relative;
            border-bottom: 3px solid transparent;
        }
        .navbar .nav-link:hover {
            color: var(--brand-dark);
        }
        .navbar .nav-link.active {
            color: var(--brand-dark);
            border-bottom-color: var(--brand-dark);
        }
        .navbar .nav-cta-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .navbar .search-box {
            width: 220px;
            height: 36px;
            background: var(--bg-lightgray);
            border-radius: var(--radius-btn);
            border: none;
            padding: 0 16px;
            font-size: 13px;
            transition: box-shadow .2s;
            outline: none;
        }
        .navbar .search-box:focus {
            box-shadow: 0 0 0 2px var(--brand-dark);
        }
        .navbar .btn-login {
            height: 36px;
            padding: 0 22px;
            display: flex;
            align-items: center;
            font-size: 14px;
        }
        .navbar-toggler {
            border: none;
            color: var(--brand-dark);
        }
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 1px solid var(--brand-dark);
        }
        @media (max-width: 991.98px) {
            .navbar .navbar-nav {
                margin: 10px 0 0;
            }
            .navbar .navbar-nav .nav-link {
                margin: 4px 0;
                border: none;
            }
            .navbar .nav-cta-area {
                margin-top: 12px;
                width: 100%;
                justify-content: space-between;
            }
            .navbar .search-box {
                width: 100%;
                flex: 1;
            }
        }
        /* Hero */
        .mk-hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: flex-end;
            background: var(--hero-grad);
            color: #fff;
            overflow: hidden;
        }
        .mk-hero .hero-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .mk-hero .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(7, 18, 15, 0.15) 0%, rgba(7, 18, 15, 0.85) 100%);
            z-index: 1;
        }
        .mk-hero .hero-content {
            position: relative;
            z-index: 2;
            padding-bottom: 70px;
            padding-top: 160px;
            max-width: 1320px;
            margin: 0 auto;
        }
        .mk-hero .hero-badge-tag {
            display: inline-block;
            background: rgba(255, 255, 255, .15);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: var(--radius-btn);
            padding: 6px 18px;
            font-size: 13px;
            letter-spacing: 1px;
            color: #fff;
            margin-bottom: 20px;
        }
        .mk-hero h1 {
            font-size: clamp(42px, 5vw, 64px);
            font-weight: 800;
            line-height: 1.14;
            letter-spacing: -.5px;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, .4);
        }
        .mk-hero .hero-sub {
            font-size: 18px;
            max-width: 560px;
            color: #C1D4CB;
            margin-bottom: 32px;
            line-height: 1.6;
        }
        .mk-hero .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        .mk-hero .hero-btn {
            padding: 14px 38px;
            font-size: 15px;
        }
        .mk-hero .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 42px;
            border-top: 1px solid rgba(255, 255, 255, .18);
            padding-top: 28px;
        }
        .mk-hero .hero-stat {
            display: flex;
            flex-direction: column;
        }
        .mk-hero .hero-stat .stat-num {
            font-family: var(--font-number);
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
        }
        .mk-hero .hero-stat .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, .7);
            margin-top: 4px;
        }
        @media (max-width:991px) {
            .mk-hero {
                min-height: 76vh;
            }
            .mk-hero h1 {
                font-size: 32px;
            }
            .mk-hero .hero-btns {
                margin-bottom: 30px;
            }
            .mk-hero .hero-stats {
                gap: 20px;
            }
        }
        @media (max-width:767px) {
            .mk-hero .hero-content {
                padding-bottom: 50px;
                padding-top: 80px;
            }
            .mk-hero .hero-sub {
                font-size: 15px;
            }
            .mk-hero .hero-btns .btn {
                padding: 12px 18px;
                font-size: 14px;
            }
        }
        /* Section title */
        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .section-head h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
            position: relative;
            padding-left: 16px;
        }
        .section-head h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 5px;
            bottom: 5px;
            width: 4px;
            border-radius: 4px;
            background: var(--brand-dark);
        }
        .section-head .section-desc {
            color: var(--text-secondary);
            font-size: 14px;
            margin: 6px 0 0;
        }
        .section-head .more-link {
            font-size: 14px;
            font-weight: 600;
        }
        .section-head .more-link i {
            margin-left: 4px;
            transition: transform .2s;
        }
        .section-head .more-link:hover i {
            transform: translateX(4px);
            color: var(--accent-amber);
        }
        .all-right {
            text-align: right;
        }
        /* Horizontal Slider */
        .h-scroll-wrap {
            position: relative;
        }
        .h-scroll-list {
            display: flex;
            overflow-x: auto;
            gap: 24px;
            scroll-snap-type: x mandatory;
            padding-bottom: 12px;
        }
        .h-scroll-list::-webkit-scrollbar {
            height: 4px;
        }
        .h-scroll-list::-webkit-scrollbar-track {
            background: var(--bg-lightgray);
        }
        .h-scroll-list::-webkit-scrollbar-thumb {
            background: var(--border-line);
            border-radius: 8px;
        }
        .scroll-card {
            flex: 0 0 280px;
            scroll-snap-align: start;
            background: #fff;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-base);
            transition: all .3s;
        }
        .scroll-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .scroll-card .thumbnail {
            position: relative;
            width: 100%;
            height: 190px;
            overflow: hidden;
            border-radius: var(--radius-card) var(--radius-card) 0 0;
        }
        .scroll-card .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s cubic-bezier(.16, .64, .32, 1);
        }
        .scroll-card:hover .thumbnail img {
            transform: scale(1.06);
        }
        .scroll-card .tag-type {
            position: absolute;
            left: 12px;
            top: 12px;
            background: var(--accent-amber);
            color: #fff;
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
        .scroll-card .card-body-custom {
            padding: 16px;
        }
        .scroll-card .card-title-custom {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 6px;
            line-height: 1.4;
            color: var(--text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .scroll-card .card-text-custom {
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .scroll-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .92);
            box-shadow: var(--shadow-base);
            border: none;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-dark);
            font-size: 18px;
            cursor: pointer;
            transition: all .2s;
        }
        .scroll-arrow:hover {
            background: var(--brand-dark);
            color: #fff;
        }
        .scroll-arrow.left {
            left: -18px;
        }
        .scroll-arrow.right {
            right: -18px;
        }
        @media (max-width:767px) {
            .scroll-card {
                flex-basis: 240px;
            }
            .scroll-card .thumbnail {
                height: 160px;
            }
            .scroll-arrow {
                display: none;
            }
        }
        /* Trending Cards */
        .cards-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .trend-card {
            background: #fff;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-base);
            transition: all .3s;
            position: relative;
        }
        .trend-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .trend-card .thumb {
            position: relative;
            height: 180px;
            overflow: hidden;
            border-radius: var(--radius-card) var(--radius-card) 0 0;
        }
        .trend-card .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s;
        }
        .trend-card:hover .thumb img {
            transform: scale(1.05);
        }
        .trend-card .rating-tag {
            position: absolute;
            right: 12px;
            bottom: 12px;
            background: var(--accent-amber);
            border-radius: 6px;
            padding: 3px 8px;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
        }
        .trend-card .card-content {
            padding: 14px 18px 18px;
        }
        .trend-card .card-content h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .trend-card .card-content p {
            font-size: 13px;
            color: var(--text-secondary);
        }
        .trend-card .meta-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
            color: #8A9992;
            font-size: 12px;
        }
        .trend-card .meta-info .badge-cat {
            background: rgba(12, 74, 58, .1);
            color: var(--brand-dark);
            padding: 3px 12px;
            border-radius: 20px;
        }
        @media (max-width:1199px) {
            .cards-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width:767px) {
            .cards-grid-4 {
                grid-template-columns: 1fr;
            }
        }
        /* Division Block */
        .divider-list-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .divider-block-item {
            padding: 20px 0 10px;
        }
        .divider-block-item+.divider-block-item {
            border-left: 1px solid var(--border-line);
            padding-left: 35px;
        }
        .divider-block-item .cat-top {
            font-size: 21px;
            font-weight: 700;
            color: var(--brand-dark);
            margin-bottom: 6px;
        }
        .divider-block-item .cat-desc {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        .divider-block-item .item-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .divider-block-item .item-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #f0f2ef;
            padding: 10px 0;
            gap: 10px;
        }
        .divider-block-item .item-list li:last-child {
            border-bottom: none;
        }
        .divider-block-item .item-list .it-title {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color .2s;
        }
        .divider-block-item .item-list .it-title:hover {
            color: var(--brand-dark);
        }
        .divider-block-item .item-list .it-time {
            font-size: 12px;
            color: #849590;
            flex-shrink: 0;
        }
        .divider-block-item .cover-bg-link {
            margin-top: 20px;
            display: block;
            border-radius: 12px;
            overflow: hidden;
            height: 130px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .divider-block-item .cover-bg-link .overlay-txt {
            position: absolute;
            left: 16px;
            bottom: 12px;
            color: #fff;
            font-size: 14px;
            z-index: 2;
            font-weight: 500;
        }
        @media (max-width:991px) {
            .divider-list-wrap {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .divider-block-item+.divider-block-item {
                border-left: none;
                border-top: 1px solid var(--border-line);
                padding-left: 0;
                padding-top: 30px;
            }
        }
        /* Latest cms area */
        .latest-mixed-section {
            background: var(--bg-lightgray);
        }
        .cms-list-wrapper {
            border: 0;
        }
        .cms-row-item {
            display: flex;
            align-items: center;
            gap: 28px;
            padding: 22px 0;
            border-bottom: 1px dashed #CBD6D0;
        }
        .cms-row-item:last-child {
            border-bottom: none;
        }
        .cms-row-item .cms-date-area {
            min-width: 80px;
            text-align: center;
            flex-shrink: 0;
        }
        .cms-row-item .cms-date-month {
            font-size: 13px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .cms-row-item .cms-date-day {
            font-family: var(--font-number);
            font-size: 40px;
            font-weight: 700;
            line-height: 1;
            color: var(--brand-dark);
        }
        .cms-row-item .cms-info {
            flex: 1;
            min-width: 0;
        }
        .cms-row-item .cms-info h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-dark);
            transition: color .2s;
        }
        .cms-row-item .cms-info h3:hover {
            color: var(--brand-dark);
        }
        .cms-row-item .cms-summary {
            color: var(--text-secondary);
            font-size: 14px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            max-width: 820px;
        }
        .cms-row-item .cms-right-side {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .cms-row-item .cms-right-side .badge-cat2 {
            background: rgba(12, 74, 58, .1);
            border-radius: 20px;
            padding: 5px 12px;
            color: var(--brand-dark);
            font-size: 13px;
            white-space: nowrap;
        }
        .cms-row-item .cms-readmore {
            text-decoration: none;
            font-size: 13px;
            color: var(--text-secondary);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color .2s;
        }
        .cms-row-item .cms-readmore:hover {
            color: var(--accent-amber);
        }
        @media (max-width:767px) {
            .cms-row-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .cms-row-item .cms-date-area {
                text-align: left;
                display: flex;
                gap: 8px;
                align-items: baseline;
            }
            .cms-row-item .cms-date-day {
                font-size: 26px;
            }
            .cms-row-item .cms-right-side {
                width: 100%;
                justify-content: space-between;
            }
        }
        .empty-tip {
            text-align: center;
            padding: 50px 20px;
            border: 1px dashed var(--border-line);
            border-radius: 14px;
            color: #9AA79F;
            background: #fff;
        }
        /* FAQ */
        .faq-section {
            background: #fff;
        }
        .faq-cols {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 60px;
        }
        .faq-left h2 {
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .faq-left p {
            color: var(--text-secondary);
            font-size: 15px;
        }
        .accordion-item {
            border: 1px solid var(--border-line) !important;
            margin-bottom: 12px;
            border-radius: 12px !important;
            overflow: hidden;
            box-shadow: none !important;
        }
        .accordion-button {
            background: #fff;
            font-size: 16px;
            font-weight: 600;
            padding: 18px 20px;
            color: var(--text-dark);
        }
        .accordion-button:not(.collapsed) {
            background: var(--bg-lightgray);
            color: var(--brand-dark);
        }
        .accordion-button:not(.collapsed)::after,
        .accordion-button::after {
            background-image: none;
            content: "+";
            font-size: 22px;
            font-weight: 300;
            background-size: none;
            width: auto;
            height: auto;
            line-height: 1;
            transition: transform .2s;
            color: var(--brand-dark);
            background: none;
        }
        .accordion-button:not(.collapsed)::after {
            content: "−";
        }
        .accordion-button:focus {
            box-shadow: none;
            outline: 2px solid var(--brand-dark);
            outline-offset: -2px;
            border-radius: 8px;
        }
        .accordion-body {
            background: #FDFDFD;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        @media (max-width:991px) {
            .faq-cols {
                grid-template-columns: 1fr;
                gap: 36px;
            }
        }
        /* CTA */
        .cta-giant-block {
            background: linear-gradient(135deg, #0C1E1A, #0C4A3A);
            border-radius: 28px;
            padding: 60px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 26px;
            color: #fff;
            margin: var(--spacing-section) 0;
        }
        .cta-giant-block h2 {
            font-size: clamp(22px, 4vw, 34px);
            font-weight: 700;
            margin: 0 0 6px;
        }
        .cta-giant-block p {
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
            margin-bottom: 0;
            max-width: 360px;
        }
        .cta-giant-block .cta-btn-wrap {
            display: flex;
            gap: 16px;
        }
        .cta-giant-block .btn-cta-white {
            background: #fff;
            color: var(--brand-dark);
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 50px;
        }
        .cta-giant-block .btn-cta-white:hover {
            background: #f0f4f1;
            color: var(--brand-dark);
            transform: translateY(-2px);
        }
        .cta-giant-block .btn-cta-outline {
            border: 1.5px solid #fff;
            color: #fff;
            background: transparent;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
        }
        .cta-giant-block .btn-cta-outline:hover {
            background: rgba(255, 255, 255, .15);
        }
        @media (max-width:767px) {
            .cta-giant-block {
                padding: 40px 30px;
                flex-direction: column;
                text-align: center;
            }
            .cta-giant-block .cta-btn-wrap {
                width: 100%;
                flex-direction: column;
            }
            .cta-giant-block .cta-btn-wrap .btn {
                width: 100%;
                text-align: center;
            }
        }
        /* footer */
        .site-footer {
            background: #fff;
            border-top: 1px solid var(--border-line);
            padding: 56px 0 24px;
            margin-top: 8px;
        }
        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand .footer-logo {
            font-size: 19px;
            font-weight: 700;
            color: var(--brand-dark);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }
        .footer-brand .footer-logo i {
            font-size: 21px;
        }
        .footer-brand p {
            font-size: 13px;
            color: var(--text-secondary);
            max-width: 320px;
            margin-top: 10px;
            margin-bottom: 16px;
        }
        .footer-link-block h4 {
            font-size: 15px;
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 16px;
        }
        .footer-link-block ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-link-block ul li {
            margin-bottom: 8px;
        }
        .footer-link-block ul a {
            color: var(--text-secondary);
            font-size: 14px;
            transition: color .2s;
        }
        .footer-link-block ul a:hover {
            color: var(--brand-dark);
            padding-left: 5px;
        }
        .footer-bottom {
            border-top: 1px solid #EDF1ED;
            padding-top: 18px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 12px;
            color: #85928C;
        }
        .footer-bottom .site-domain {
            font-family: var(--font-number);
            color: #A1AAA5;
        }
        @media (max-width:991px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .footer-brand {
                grid-column: 1/-1;
            }
        }
        @media (max-width:767px) {
            .footer-main {
                grid-template-columns: 1fr;
            }
            .site-footer {
                padding-top: 40px;
            }
        }
        /* ===== small helper ===== */
        .section-nb {
            padding: 72px 0;
        }
        .text-limited-max {
            max-width: 760px;
        }
        .icon-sm-badge {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-lightgray);
            color: var(--brand-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
        }
        .btn-clear-like {
            background: transparent;
            border: none;
            cursor: pointer;
        }
        .btn-clear-like:focus-visible {
            outline: 2px solid var(--brand-dark);
            border-radius: 50%;
            padding: 0 4px;
        }
        .mb-4-5 {
            margin-bottom: 28px;
        }
        /* line gradient separator */
        .sep-gradient {
            height: 3px;
            background: linear-gradient(90deg, var(--brand-dark), var(--accent-amber), transparent);
            border-radius: 6px;
            margin: 20px 0 24px;
        }
        /* Media Query Small */
        @media (max-width:520px) {
            .section {
                padding: var(--spacing-mobile) 0;
            }
            .section-head h2 {
                font-size: 22px;
            }
            .navbar .btn-login {
                padding: 0 14px;
                font-size: 13px;
            }
        }
        /* json placeholder */
        .gradient-comp-hero {
            background: radial-gradient(ellipse at 20% 80%, rgba(12, 74, 58, .5), transparent 60%), linear-gradient(135deg, #07131f 0%, #0d2b22 100%);
            background-blend-mode: screen;
        }

/* roulang page: category1 */
:root {
            --brand-primary: #0C4A3A;
            --brand-primary-hover: #0F5B47;
            --brand-accent: #F5A623;
            --brand-dark: #0C1E1A;
            --brand-hero-start: #07120F;
            --text-body: #1A2B26;
            --text-secondary: #61726C;
            --bg-light: #F4F7F5;
            --border-line: #E1E7E3;
            --white: #FFFFFF;
            --light-text: #EAF3EF;
            --footer-bg: #0C1E1A;
            --radius-card: 14px;
            --radius-btn: 999px;
            --shadow-card: 0 1px 2px rgba(12, 30, 26, 0.04), 0 8px 24px rgba(12, 30, 26, 0.06);
            --shadow-hover: 0 12px 40px rgba(12, 30, 26, 0.12);
            --transition-card: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --container-width: 1320px;
            --section-space: 96px;
            --section-space-mobile: 56px;
            --font-family: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-secondary: 'Inter', 'Roboto', sans-serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-body);
            background: var(--white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button, input, textarea {
            font-family: inherit;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: var(--section-space) 0;
        }

        .section-padding-sm {
            padding: 56px 0;
        }

        /* ========== 覆盖 Bootstrap 默认 ========== */
        .btn-primary, .btn-brand {
            background: var(--brand-primary);
            border-color: var(--brand-primary);
            color: #fff;
            border-radius: var(--radius-btn);
            padding: 10px 28px;
            font-weight: 600;
            transition: all 0.25s ease;
        }

        .btn-brand:hover, .btn-primary:hover {
            background: var(--brand-primary-hover);
            border-color: var(--brand-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(12, 74, 58, 0.18);
            color: #fff;
        }

        .btn-brand:active, .btn-primary:active {
            background: var(--brand-primary);
            transform: translateY(0);
            box-shadow: none;
        }

        .btn-brand:focus-visible, .btn-primary:focus-visible, .form-control:focus, .btn-outline-light:focus-visible {
            outline: 2px solid #4a9e8a;
            outline-offset: 2px;
            box-shadow: none;
        }

        .btn-outline-brand {
            border: 1.5px solid var(--text-body);
            border-radius: var(--radius-btn);
            color: var(--text-body);
            background: transparent;
            font-weight: 500;
            padding: 10px 28px;
            transition: all 0.25s ease;
        }

        .btn-outline-brand:hover {
            background: var(--text-body);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-light {
            border-radius: var(--radius-btn);
            font-weight: 600;
            transition: all 0.25s ease;
        }

        .btn-light:hover {
            background: var(--bg-light);
            border-color: var(--border-line);
            transform: translateY(-2px);
            color: var(--brand-primary);
        }

        .btn-warning-custom {
            background: var(--brand-accent);
            border-color: var(--brand-accent);
            border-radius: var(--radius-btn);
            font-weight: 600;
        }

        .btn-warning-custom:hover {
            background: #d48f1c;
            border-color: #d48f1c;
            transform: translateY(-2px);
        }

        .form-control {
            border: 1px solid var(--border-line);
            border-radius: var(--radius-btn);
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            font-size: 15px;
        }

        .form-control:focus {
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 2px rgba(12, 74, 58, 0.15);
        }

        .card {
            border-radius: var(--radius-card);
            border: 0;
            box-shadow: var(--shadow-card);
            background: #fff;
            overflow: hidden;
        }

        .accordion-button:not(.collapsed) {
            background: #f0f6f3;
            box-shadow: 0 0 0 1px rgba(12, 74, 58, 0.05);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 2px var(--brand-primary);
            outline: 0;
        }

        .accordion-button {
            font-weight: 600;
            color: #1A2B26;
        }

        .btn:focus, .btn:active:focus, .accordion-button:not(.collapsed) {
            box-shadow: none;
        }

        .btn:focus-visible {
            outline: 2px solid var(--brand-primary);
            outline-offset: 2px;
        }

        /* ========== Header / Nav ========== */
        .site-header .header-inner {
            position: relative;
            z-index: 50;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.97) !important;
            border-bottom: 1px solid var(--border-line);
            min-height: 64px;
            padding-top: 0;
            padding-bottom: 0;
            backdrop-filter: blur(8px);
        }

        .navbar .container {
            min-height: 64px;
            flex-wrap: nowrap;
            gap: 12px;
        }

        .navbar-brand {
            display: inline-flex;
            align-items: center;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-body) !important;
            white-space: nowrap;
            letter-spacing: -0.2px;
        }

        .navbar-brand i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--brand-primary);
            color: #fff;
            border-radius: 10px;
            font-size: 16px;
            margin-right: 10px;
            transform: rotate(-8deg);
        }

        .navbar-brand span {
            font-size: 18px;
            background: linear-gradient(90deg, #0C4A3A, #0e5c48);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar .navbar-nav {
            align-items: center;
            margin-left: auto;
            margin-right: auto;
        }

        .navbar .nav-link {
            font-weight: 500;
            color: #3d4b45;
            padding: 18px 14px;
            font-size: 15px;
            position: relative;
            transition: color 0.2s;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: var(--brand-primary);
        }

        .navbar .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 14px;
            right: 14px;
            height: 3px;
            background: var(--brand-primary);
            border-radius: 4px 4px 0 0;
        }

        .nav-cta-area {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: auto;
        }

        .search-box {
            min-width: 220px;
            background: #f7f9f8;
            border: 1px solid transparent;
            border-radius: 30px;
            height: 38px;
            padding-left: 18px;
            font-size: 14px;
        }

        .search-box:focus {
            background: #fff;
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 3px rgba(12, 74, 58, 0.1);
        }

        .btn-login {
            height: 38px;
            padding: 0 20px;
            font-size: 14px;
            line-height: 38px;
            border-radius: 30px;
            background: var(--brand-primary);
            color: #fff;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
        }

        .btn-login:hover {
            background: var(--brand-primary-hover);
            color: #fff;
        }

        .nav-resp-search {
            display: none;
        }

        .navbar-toggler {
            border: none;
            font-size: 20px;
            color: var(--text-body);
            padding: 6px 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            border: none;
            outline: none;
        }

        /* ========== Hero 页头横幅 ========== */
        .category-hero {
            background: linear-gradient(180deg, #fbfdfc 0%, #f1f5f2 100%);
            border-bottom: 1px solid var(--border-line);
            padding: 68px 0 52px;
            position: relative;
            overflow: hidden;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            top: 10%;
            right: -4%;
            width: 480px;
            height: 480px;
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center center;
            opacity: 0.14;
            border-radius: 50%;
            filter: blur(10px);
            pointer-events: none;
        }

        .category-hero .container {
            position: relative;
            z-index: 2;
        }

        .category-hero__label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(12, 74, 58, 0.10);
            border: 1px solid rgba(12, 74, 58, 0.18);
            padding: 6px 18px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-primary);
            margin-bottom: 24px;
        }

        .category-hero__label i {
            color: var(--brand-accent);
        }

        .category-hero h1 {
            font-weight: 800;
            font-size: 44px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            color: var(--text-body);
            margin-bottom: 12px;
            max-width: 800px;
        }

        .category-hero h1 span {
            color: var(--brand-primary);
            position: relative;
        }

        .category-hero__lead {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 620px;
            margin-bottom: 28px;
        }

        .hero-accent-line {
            width: 80px;
            height: 3px;
            background: var(--brand-primary);
            border-radius: 4px;
            margin: 18px 0 24px;
        }

        .category-hero__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 18px;
        }

        .category-hero__meta .meta-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #4d5f58;
        }

        .category-hero__meta .meta-stat i {
            color: var(--brand-accent);
            font-size: 16px;
        }

        .category-hero .hero-badge-area {
            position: absolute;
            right: 40px;
            bottom: 40px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            width: 240px;
            opacity: 0.25;
            transform: rotate(4deg);
            pointer-events: none;
        }

        /* ========== 横向大图横幅流 ========== */
        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .section-header h2 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 6px;
            letter-spacing: -0.3px;
            color: var(--text-body);
        }

        .section-header h2 .section-mark {
            display: inline-block;
            width: 8px;
            height: 24px;
            background: var(--brand-accent);
            border-radius: 3px;
            margin-right: 12px;
        }

        .section-header .section-sub {
            color: var(--text-secondary);
            font-size: 15px;
            margin: 0;
        }

        .section-header .header-link {
            color: var(--brand-primary);
            font-weight: 600;
            font-size: 15px;
        }

        .section-header .header-link:hover {
            color: var(--brand-accent);
        }

        .header-link i {
            transition: transform 0.2s;
        }

        .header-link:hover i {
            transform: translateX(4px);
        }

        .hero-stage-slider {
            overflow: hidden;
            margin: 0 -12px;
        }

        .hero-stage-slider .row {
            flex-wrap: nowrap;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 10px;
        }

        .hero-stage-slider .row::-webkit-scrollbar {
            height: 5px;
        }

        .hero-stage-slider .row::-webkit-scrollbar-thumb {
            background: var(--border-line);
            border-radius: 50px;
        }

        .featured-stage-col {
            padding: 0 12px;
            scroll-snap-align: start;
        }

        .stage-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 360px;
            min-height: 340px;
            cursor: pointer;
            box-shadow: var(--shadow-card);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .stage-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .stage-card:hover .stage-card__img img {
            transform: scale(1.06);
        }

        .stage-card__img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .stage-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .stage-card__img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7, 18, 15, 0.05) 30%, rgba(7, 18, 15, 0.35) 60%, rgba(7, 18, 15, 0.95) 100%);
        }

        .stage-card__content {
            position: absolute;
            inset: 0 auto 0 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
            width: 78%;
            background: linear-gradient(90deg, rgba(7, 18, 15, 0.75) 0%, rgba(7, 18, 15, 0.15) 70%, transparent 100%);
        }

        .stage-card__content .stage-tag-row {
            display: flex;
            gap: 10px;
            margin-bottom: 14px;
        }

        .stage-tag {
            background: rgba(245, 166, 35, 0.92);
            color: #081512;
            font-size: 12px;
            font-weight: 700;
            border-radius: 30px;
            padding: 4px 12px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .stage-tag-live {
            background: rgba(220, 38, 38, 0.9);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            border-radius: 30px;
            padding: 4px 10px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            position: relative;
        }

        .stage-tag-live::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: blink 1.2s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .stage-card__content h3 {
            font-size: 23px;
            font-weight: 800;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 8px;
        }

        .stage-card__content p {
            color: rgba(234, 243, 239, 0.85);
            font-size: 13.5px;
            margin-bottom: 14px;
            line-height: 1.5;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .stage-card__bottom {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #ffd;
        }

        .stage-card__bottom .btn-sm {
            border-radius: 30px;
            padding: 5px 16px;
            background: #fff;
            color: #081512;
            font-size: 13px;
            font-weight: 600;
        }

        .stage-card__bottom .btn-sm:hover {
            background: var(--brand-accent);
        }

        /* 迷你分类导航 pills */
        .sub-nav-pills {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 20px 0 36px;
        }

        .sub-nav-pills .pill-item {
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--border-line);
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            transition: all 0.2s;
        }

        .sub-nav-pills .pill-item:hover, .sub-nav-pills .pill-item.active {
            background: var(--brand-primary);
            border-color: var(--brand-primary);
            color: #fff;
        }

        /* ========== 暗色对比区 / 深度数据面板 ========== */
        .dark-data-panel {
            background: var(--brand-dark);
            border-radius: 24px;
            padding: 36px 40px;
            color: var(--light-text);
            overflow: hidden;
            margin-top: 48px;
        }

        .dark-panel-bg {
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center 35%;
            background-blend-mode: overlay;
        }

        .dark-panel-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(12, 30, 26, 0.99) 20%, rgba(12, 30, 26, 0.8) 100%);
        }

        .dark-panel-inner {
            position: relative;
            z-index: 2;
        }

        .dark-data-panel .panel-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .dark-data-panel .panel-title i {
            color: var(--brand-accent);
            font-size: 20px;
        }

        .dark-data-panel .panel-sub {
            font-size: 14px;
            color: rgba(234, 243, 239, 0.7);
            margin-bottom: 24px;
        }

        .match-score-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .match-score-item {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 18px 16px;
            transition: all 0.2s;
        }

        .match-score-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
        }

        .match-score-item .league-name {
            font-size: 12px;
            color: rgba(234, 243, 239, 0.7);
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .match-score-item .league-name .time {
            font-family: var(--font-secondary);
            font-weight: 500;
        }

        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .match-teams .team-sub {
            font-size: 13px;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .match-teams .team-sub.right {
            text-align: right;
        }

        .match-teams .score-big {
            font-family: var(--font-secondary);
            font-size: 24px;
            font-weight: 400;
            letter-spacing: 1px;
            background: rgba(245, 166, 35, 0.2);
            padding: 3px 12px;
            border-radius: 8px;
            color: #fff;
        }

        /* 要点卡片 */
        .card {
            transition: all 0.35s;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .feature-card-wrap {
            padding-left: 0;
            padding-right: 0;
        }

        .match-preview-card {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid var(--border-line);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: border-color 0.2s, transform 0.25s;
            height: 100%;
        }

        .match-preview-card:hover {
            border-color: var(--brand-primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }

        .text-brand {
            color: var(--brand-primary) !important;
        }

        .text-accent {
            color: var(--brand-accent) !important;
        }

        /* match preview network / side info */
        .deep-list-item {
            border-bottom: 1px solid var(--border-line);
            padding: 18px 0;
        }

        .deep-list-item:last-child {
            border-bottom: 0;
        }

        /* ========== 深色分栏 ========== */
        .bg-light {
            background: var(--bg-light) !important;
        }

        /* ========== 话题与赛场垂直卡片 ========== */
        .venue-card {
            border-radius: var(--radius-card);
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.04);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.35s;
            height: 100%;
        }

        .venue-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .venue-card__media {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .venue-card__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .venue-card:hover .venue-card__media img {
            transform: scale(1.05);
        }

        .venue-card__media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 35%, rgba(7, 18, 15, 0.55) 100%);
            opacity: 0.5;
            pointer-events: none;
        }

        .venue-card__badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--brand-accent);
            color: #1A1A1A;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .venue-card__liveb {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #dc2626;
            color: #fff;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.65; }
        }

        .venue-card__body {
            padding: 20px 20px 18px;
        }

        .venue-card__title {
            font-weight: 700;
            font-size: 17px;
            margin-bottom: 6px;
        }

        .venue-card__desc {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 14px;
            line-height: 1.6;
        }

        .venue-card__meta {
            font-size: 12.5px;
            color: #8a9b94;
            display: flex;
            justify-content: space-between;
            border-top: 1px solid var(--border-line);
            padding-top: 12px;
        }

        /* ========== FAQ ========== */
        .faq-wrap .accordion-item {
            border: 1px solid var(--border-line);
            border-radius: 12px !important;
            margin-bottom: 16px;
            background: #fff;
            overflow: hidden;
        }

        .faq-wrap .accordion-header button {
            min-height: 58px;
            padding: 0 22px;
        }

        .faq-wrap .accordion-body {
            background: var(--bg-light);
            padding: 20px 24px;
            font-size: 14.5px;
        }

        /* ========== CTA 横幅 ========== */
        .cta-banner {
            background: linear-gradient(135deg, var(--brand-dark) 0%, #144a3d 60%, var(--brand-primary) 100%);
            border-radius: 26px;
            padding: 58px 60px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center 45%;
            opacity: 0.14;
            mix-blend: overlay;
        }

        .cta-banner .cta-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .cta-banner .cta-title {
            font-size: 28px;
            font-weight: 800;
            max-width: 560px;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .cta-banner .cta-sub {
            color: rgba(234, 243, 239, 0.8);
            font-size: 15px;
            max-width: 540px;
        }

        .cta-banner .cta-actions {
            display: flex;
            gap: 14px;
            flex-shrink: 0;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: 999px;
            padding: 13px 30px;
            font-weight: 700;
            color: var(--brand-primary);
            background: #fff;
            border: 0;
            transition: all 0.25s;
            font-size: 16px;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            background: var(--brand-accent);
        }

        .cta-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: 999px;
            padding: 13px 28px;
            font-weight: 600;
            border: 1.5px solid rgba(234, 243, 239, 0.55);
            color: #fff;
            transition: all 0.25s;
        }

        .cta-btn-outline:hover {
            border-color: #fff;
            background: #0c1e1a;
            color: #fff;
        }

        /* ========== Footer ========== */
        .site-footer {
            background: #0C1E1A;
            color: rgba(234, 243, 239, 0.75);
            padding-top: 70px;
            margin-top: 90px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 42px;
        }

        .footer-brand .footer-logo {
            font-size: 21px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
        }

        .footer-brand .footer-logo i {
            font-size: 18px;
            background: #0F5B47;
            display: inline-flex;
            width: 36px;
            height: 36px;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-right: 12px;
            color: var(--brand-accent);
        }

        .footer-brand p {
            font-size: 14.5px;
            max-width: 360px;
            margin-bottom: 18px;
            line-height: 1.75;
            color: rgba(234, 243, 239, 0.6);
        }

        .footer-link-block h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 18px;
            color: #fff;
            letter-spacing: 0.2px;
        }

        .footer-link-block ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-link-block li {
            margin-bottom: 12px;
        }

        .footer-link-block a {
            color: rgba(234, 243, 239, 0.68);
            font-size: 14px;
            transition: color 0.15s;
        }

        .footer-link-block a:hover {
            color: var(--brand-accent);
        }

        .icon-sm-badge {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: rgba(234, 243, 239, 0.8);
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.2s;
        }

        .icon-sm-badge:hover {
            background: var(--brand-accent);
            color: #081512;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 24px 0;
            font-size: 13.5px;
            color: rgba(234, 243, 239, 0.35);
            flex-wrap: wrap;
            gap: 8px;
        }

        .site-domain {
            font-size: 12px;
            font-family: var(--font-secondary);
        }

        /* ========== 空数据状态 ========== */
        .empty-state {
            border: 1.5px dashed var(--border-line);
            border-radius: 15px;
            min-height: 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            background: #fbfcfb;
            padding: 30px;
        }

        .empty-state i {
            font-size: 40px;
            margin-bottom: 12px;
            color: rgba(12, 74, 58, 0.3);
        }

        .empty-state p {
            margin: 0;
            font-size: 15px;
        }

        /* ========== 简易 back-to-top ========== */
        .back-top-btn {
            position: fixed;
            right: 24px;
            bottom: 30px;
            z-index: 999;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--brand-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: var(--shadow-hover);
        }

        .back-top-btn.show {
            opacity: 1;
            visibility: visible;
        }

        .back-top-btn:hover {
            background: var(--brand-accent);
            color: var(--brand-dark);
        }

        /* 移动端适配 */
        @media (max-width: 991.98px) {
            .navbar .container {
                flex-wrap: wrap;
                padding-top: 8px;
                padding-bottom: 8px;
            }

            .navbar .navbar-nav {
                background: #fff;
                padding: 8px 10px;
                margin: 8px 0;
                border-radius: 16px;
                gap: 2px;
            }

            .navbar .nav-link {
                padding: 12px 14px;
                border-radius: 8px;
            }

            .navbar .nav-link.active::after {
                display: none;
            }

            .navbar .nav-link.active {
                background: rgba(12, 74, 58, 0.08);
            }

            .nav-cta-area {
                margin-left: 0;
                width: 100%;
                padding-top: 8px;
                border-top: 1px solid var(--border-line);
                margin-top: 8px;
            }

            .nav-cta-area .search-box {
                flex: 1;
            }

            .category-hero h1 {
                font-size: 36px;
            }

            .category-hero__lead {
                font-size: 16px;
            }

            .cta-banner {
                padding: 40px 32px;
            }

            .cta-banner .cta-actions {
                flex-direction: column;
                align-items: flex-start;
            }

            .match-score-list {
                grid-template-columns: repeat(2, 1fr);
            }

            .dark-data-panel {
                padding: 28px 24px;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                row-gap: 32px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .stage-card__content {
                width: 90%;
                padding: 22px;
            }
        }

        @media (max-width: 767.98px) {
            :root {
                --section-space: 56px;
            }

            .container {
                padding-left: 18px;
                padding-right: 18px;
            }

            .navbar .container {
                padding-left: 16px;
                padding-right: 16px;
                gap: 6px;
            }

            .navbar-brand span {
                font-size: 16px;
                white-space: normal;
            }

            .navbar-brand i {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }

            .btn-login {
                height: 34px;
                line-height: 34px;
                padding: 0 14px;
                font-size: 13px;
            }

            .category-hero {
                padding: 44px 0 36px;
            }

            .category-hero h1 {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .category-hero h1 .brand-ce {
                display: block;
            }

            .category-hero .hero-accent-line {
                margin: 16px 0;
            }

            .category-hero__meta {
                gap: 12px;
                flex-direction: column;
            }

            .section-header {
                margin-bottom: 20px;
            }

            .section-header h2 {
                font-size: 23px;
            }

            .stage-card {
                height: 300px;
            }

            .stage-card__content {
                width: 100%;
                padding: 18px;
            }

            .stage-card__content h3 {
                font-size: 19px;
            }

            .match-preview-card .card-body {
                padding: 18px;
            }

            .dark-data-panel {
                padding: 22px 18px;
                border-radius: 18px;
            }

            .dark-data-panel .panel-title {
                font-size: 19px;
                align-items: flex-start;
            }

            .match-score-list {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 34px;
                padding-bottom: 26px;
            }

            .footer-brand {
                grid-column: auto;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .cta-banner {
                padding: 34px 24px;
                border-radius: 18px;
            }

            .cta-banner .cta-title {
                font-size: 22px;
            }

            .cta-banner .cta-actions {
                width: 100%;
            }

            .cta-btn, .cta-btn-outline {
                width: 100%;
                justify-content: center;
            }

            .sub-nav-pills .pill-item {
                padding: 7px 14px;
                font-size: 13px;
            }

            .venue-card__body {
                padding: 16px;
            }
        }

/* roulang page: article */
:root {
            --brand: #0C4A3A;
            --brand-hover: #0F5B47;
            --brand-deep: #0C1E1A;
            --accent: #F5A623;
            --accent-dark: #D98E0E;
            --text: #1A2B26;
            --text-muted: #61726C;
            --bg-soft: #F4F7F5;
            --line: #E1E7E3;
            --white: #FFFFFF;
            --radius: 14px;
            --radius-sm: 8px;
            --shadow-sm: 0 1px 2px rgba(12, 30, 26, 0.04), 0 8px 24px rgba(12, 30, 26, 0.06);
            --shadow-lg: 0 12px 40px rgba(12, 30, 26, 0.12);
            --transition: all .25s cubic-bezier(.25, .46, .45, .94);
            --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-family);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--brand);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent-dark);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .sticky-top {
            position: sticky;
            top: 0;
            z-index: 1020;
        }

        .navbar {
            background: #fff !important;
            border-bottom: 1px solid var(--line);
            min-height: 64px;
            padding-top: 0;
            padding-bottom: 0;
        }

        .navbar-brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 18px;
            color: var(--text) !important;
            letter-spacing: -.2px;
            padding: 8px 0;
        }

        .navbar-brand i {
            color: var(--brand);
            font-size: 26px;
            line-height: 1;
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: rgba(12, 74, 58, .08);
        }

        .navbar-nav {
            gap: 4px;
        }

        .navbar-nav .nav-link {
            color: #42534d;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 14px !important;
            border-radius: 8px;
            position: relative;
            transition: var(--transition);
            font-family: var(--font-family);
        }

        .navbar-nav .nav-link:hover {
            color: var(--brand);
            background: rgba(12, 74, 58, .05);
        }

        .navbar-nav .nav-link.active {
            color: var(--brand);
            font-weight: 700;
            background: rgba(12, 74, 58, .06);
        }

        .navbar-toggler {
            border: none;
            font-size: 22px;
            color: var(--brand);
            padding: 4px 10px;
            line-height: 1;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 2px rgba(12, 74, 58, .3);
        }

        .nav-cta-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-box {
            width: 220px;
            border-radius: 999px;
            background: #F4F7F5;
            border: 1px solid transparent;
            padding: 8px 18px;
            font-size: 14px;
            font-family: var(--font-family);
            color: var(--text);
        }

        .search-box::placeholder {
            color: #8a9992;
        }

        .search-box:focus {
            background: var(--white);
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(12, 74, 58, .12);
            outline: none;
        }

        .btn-brand {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
            border-radius: 999px;
            font-weight: 700;
            font-size: 14px;
            padding: 9px 20px;
            transition: var(--transition);
            font-family: var(--font-family);
        }

        .btn-brand:hover,
        .btn-brand:focus {
            background: var(--brand-hover);
            border-color: var(--brand-hover);
            color: #fff;
            box-shadow: 0 6px 14px rgba(12, 74, 58, .18);
            transform: translateY(-2px);
        }

        .btn-brand:active {
            transform: translateY(0);
            background: #093528;
        }

        .btn-outline-dark-brand {
            border: 1.5px solid #1A2B26;
            background: transparent;
            color: var(--text);
            border-radius: 999px;
            font-weight: 600;
            font-size: 14px;
            padding: 9px 20px;
            transition: var(--transition);
            font-family: var(--font-family);
        }

        .btn-outline-dark-brand:hover {
            background: var(--text);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .btn-login {
            padding-left: 16px;
            padding-right: 16px;
            height: 38px;
            line-height: 20px;
        }

        .btn:focus,
        .btn-ghost:focus,
        .btn-outline-dark-brand:focus,
        .btn-link:focus,
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 3px;
            box-shadow: none;
        }

        .btn-link {
            font-weight: 600;
            color: var(--brand);
            text-decoration: none;
            font-family: var(--font-family);
        }

        .btn-link i {
            transition: transform .2s ease;
        }

        .btn-link:hover {
            color: var(--accent-dark);
        }

        .btn-link:hover i {
            transform: translateX(4px);
        }

        .article-banner {
            background: linear-gradient(180deg, rgba(7, 18, 15, .78) 0%, rgba(12, 30, 26, .92) 100%), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            color: #EAF3EF;
            padding: 56px 0 46px;
        }

        .article-crumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(234, 243, 239, .76);
            margin-bottom: 22px;
        }

        .article-crumb a {
            color: rgba(234, 243, 239, .8);
        }

        .article-crumb a:hover {
            color: var(--accent);
        }

        .article-crumb i {
            font-size: 9px;
            opacity: .7;
        }

        .article-crumb .current {
            display: inline-block;
            max-width: 220px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: rgba(234, 243, 239, .94);
        }

        .article-brand-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(245, 166, 35, .14);
            border: 1px solid rgba(245, 166, 35, .32);
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .2px;
            border-radius: 999px;
            padding: 4px 12px;
            margin-bottom: 12px;
            width: fit-content;
        }

        .article-banner h1 {
            font-size: clamp(30px, 4vw, 42px);
            font-weight: 800;
            color: #fff;
            line-height: 1.25;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
            max-width: 860px;
            font-family: var(--font-family);
        }

        .article-banner-copy p.lead-article {
            color: rgba(234, 243, 239, .84);
            font-size: 16px;
            max-width: 720px;
            margin-bottom: 20px;
        }

        .article-meta-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 22px;
            color: rgba(234, 243, 239, .74);
            font-size: 13px;
        }

        .article-meta-row .meta-item i {
            color: var(--accent);
            margin-right: 5px;
        }

        .not-found-banner h1 {
            margin-bottom: 10px;
        }

        .not-found-banner .lead-article {
            margin-bottom: 20px;
        }

        .not-found-banner .btn-brand {
            min-width: 130px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .article-content-section {
            padding: 54px 0 20px;
            background: var(--white);
        }

        .article-main {
            max-width: 760px;
            margin: 0 auto;
        }

        .article-attention {
            background: var(--bg-soft);
            border: 1px solid var(--line);
            border-left: 4px solid var(--accent);
            border-radius: var(--radius-sm);
            padding: 16px 20px;
            color: var(--text);
            font-size: 14px;
            margin-bottom: 32px;
        }

        .article-attention strong {
            color: var(--brand);
        }

        .article-copy {
            font-size: 17px;
            line-height: 1.95;
            color: var(--text);
        }

        .article-copy > p {
            margin-bottom: 1.4em;
        }

        .article-copy p:first-of-type::first-letter {
            font-weight: 800;
            font-size: 1.55em;
            color: var(--brand);
            line-height: 1;
            padding-right: 4px;
        }

        .article-copy h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text);
            margin: 1.7em 0 .8em;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--line);
            letter-spacing: -0.2px;
            line-height: 1.4;
        }

        .article-copy h3 {
            font-size: 21px;
            font-weight: 750;
            color: var(--text);
            margin: 1.5em 0 .7em;
            line-height: 1.4;
        }

        .article-copy blockquote {
            margin: 1.8em 0;
            padding: 14px 22px 14px 26px;
            border-left: 4px solid var(--accent);
            border-radius: 0 10px 10px 0;
            background: #FBF9F4;
            color: #45564f;
            font-size: 16px;
            line-height: 1.85;
        }

        .article-copy ul,
        .article-copy ol {
            padding-left: 1.4em;
            margin-bottom: 1.4em;
        }

        .article-copy ul li,
        .article-copy ol li {
            margin-bottom: .35em;
        }

        .article-copy img {
            border-radius: 10px;
            margin: 1.4em 0;
            box-shadow: var(--shadow-sm);
            max-width: 100%;
            height: auto;
        }

        .article-copy a {
            color: var(--brand);
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-color: rgba(12, 74, 58, .3);
        }

        .article-copy a:hover {
            color: var(--accent-dark);
            text-decoration-color: rgba(245, 166, 35, .7);
        }

        .article-copy code {
            background: #F0F4F1;
            color: #0C4A3A;
            border-radius: 5px;
            padding: 2px 7px;
            font-size: 14px;
        }

        .article-bottom-bar {
            max-width: 760px;
            margin: 26px auto 0;
            border-top: 1px solid var(--line);
            padding-top: 22px;
        }

        .article-tag-line {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 18px;
        }

        .tag-pill {
            background: rgba(12, 74, 58, .07);
            color: var(--brand);
            font-size: 13px;
            padding: 4px 14px;
            border-radius: 999px;
            font-weight: 600;
            transition: var(--transition);
        }

        .tag-pill:hover {
            background: var(--brand);
            color: #fff;
        }

        .article-actions-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-top: 8px;
        }

        .btn-action-light {
            border: 1px solid var(--line);
            border-radius: 999px;
            background: var(--white);
            color: #45564f;
            font-size: 13px;
            font-weight: 600;
            padding: 7px 15px;
            transition: var(--transition);
            font-family: var(--font-family);
        }

        .btn-action-light:hover {
            border-color: var(--brand);
            color: var(--brand);
            background: rgba(12, 74, 58, .04);
            transform: translateY(-2px);
        }

        .article-404-box {
            background: var(--bg-soft);
            border: 1px dashed var(--line);
            border-radius: var(--radius);
            padding: 48px 28px;
            text-align: center;
            max-width: 760px;
            margin: 0 auto;
        }

        .article-404-box i {
            font-size: 46px;
            color: var(--brand);
            opacity: .5;
            margin-bottom: 14px;
        }

        .article-404-box h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }

        .article-404-box p {
            color: var(--text-muted);
            font-size: 15px;
            max-width: 420px;
            margin: 0 auto 20px;
        }

        .more-stories-section {
            background: var(--bg-soft);
            padding: 66px 0;
        }

        .section-title-wrap {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 32px;
        }

        .section-title-wrap h2 {
            font-size: 27px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.3px;
            margin-bottom: 6px;
            font-family: var(--font-family);
        }

        .section-title-wrap p {
            margin: 0;
            color: var(--text-muted);
            font-size: 14px;
        }

        .story-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            height: 100%;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(225, 231, 227, .6);
            display: flex;
            flex-direction: column;
        }

        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(12, 74, 58, .18);
        }

        .story-card-pic {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: var(--bg-soft);
        }

        .story-card-pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s cubic-bezier(.22, 1, .36, 1);
        }

        .story-card:hover .story-card-pic img {
            transform: scale(1.04);
        }

        .story-card-pic .hot-tag {
            position: absolute;
            left: 12px;
            top: 12px;
            z-index: 2;
            background: rgba(245, 166, 35, .92);
            color: #102a22;
            font-weight: 700;
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 999px;
            letter-spacing: .2px;
        }

        .story-card-pic .pic-mask {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(12, 30, 26, 0) 40%, rgba(7, 18, 15, .45) 100%);
            pointer-events: none;
        }

        .story-card-body {
            padding: 20px 18px 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .story-card-body .story-kicker {
            color: var(--brand);
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: .3px;
            text-transform: uppercase;
        }

        .story-card-body h3 {
            font-size: 19px;
            font-weight: 750;
            line-height: 1.45;
            color: var(--text);
            margin-bottom: 8px;
            font-family: var(--font-family);
        }

        .story-card-body p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 14px;
            line-height: 1.7;
            flex: 1;
        }

        .story-card-link {
            font-weight: 700;
            font-size: 14px;
            color: var(--brand);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .story-card-link:hover {
            color: var(--accent-dark);
        }

        .story-card-link i {
            transition: transform .2s ease;
        }

        .story-card-link:hover i {
            transform: translateX(4px);
        }

        .cta-section {
            padding: 46px 0 84px;
            background: var(--white);
        }

        .cta-panel {
            background: linear-gradient(125deg, #0C4A3A 0%, #0C1E1A 62%, #07120F 100%);
            border-radius: 24px;
            padding: 46px 52px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            position: relative;
            overflow: hidden;
        }

        .cta-panel::after {
            content: "";
            position: absolute;
            right: -60px;
            top: -60px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 166, 35, .17) 0%, rgba(245, 166, 35, 0) 68%);
            pointer-events: none;
        }

        .cta-panel h2 {
            font-size: 25px;
            color: #fff;
            font-weight: 800;
            margin-bottom: 6px;
            letter-spacing: -0.3px;
            font-family: var(--font-family);
        }

        .cta-panel p {
            color: rgba(234, 243, 239, .72);
            font-size: 14px;
            margin: 0;
        }

        .cta-panel .btn-cta-white {
            background: #ffffff;
            color: #0C4A3A;
            border: none;
            border-radius: 999px;
            padding: 12px 28px;
            font-weight: 800;
            font-size: 15px;
            font-family: var(--font-family);
            transition: var(--transition);
            position: relative;
            z-index: 2;
        }

        .cta-panel .btn-cta-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
            color: #0C1E1A;
            background: #F7F9F8;
        }

        .site-footer {
            background: #0C1E1A;
            color: rgba(234, 243, 239, .72);
            padding: 52px 0 24px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 34px;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.3px;
        }

        .footer-logo i {
            color: var(--accent);
        }

        .footer-brand p {
            max-width: 340px;
            font-size: 14px;
            color: rgba(234, 243, 239, .58);
            margin-top: 14px;
            line-height: 1.8;
        }

        .icon-sm-badge {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(234, 243, 239, .08);
            color: rgba(234, 243, 239, .8);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: var(--transition);
        }

        .icon-sm-badge:hover {
            background: var(--accent);
            color: #0C1E1A;
            transform: translateY(-3px);
        }

        .footer-link-block h4 {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-link-block ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-link-block li {
            margin-bottom: 10px;
        }

        .footer-link-block a {
            color: rgba(234, 243, 239, .66);
            font-size: 14px;
        }

        .footer-link-block a:hover {
            color: var(--accent);
            padding-left: 3px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(234, 243, 239, .1);
            padding-top: 22px;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px;
            color: rgba(234, 243, 239, .44);
        }

        .site-domain {
            font-size: 12px;
            color: rgba(234, 243, 239, .35);
            letter-spacing: .4px;
        }

        @media (max-width: 991.98px) {
            .navbar {
                min-height: 58px;
            }
            .navbar-collapse {
                padding-top: 14px;
                padding-bottom: 10px;
            }
            .navbar-nav {
                gap: 2px;
                margin: 8px 0 !important;
            }
            .navbar-nav .nav-link {
                padding: 9px 14px !important;
                border-radius: 10px;
            }
            .nav-cta-area {
                width: 100%;
                margin-top: 8px;
            }
            .search-box {
                flex: 1;
                width: auto;
                min-width: 0;
            }
            .btn-login {
                white-space: nowrap;
            }
            .article-banner {
                padding: 46px 0 36px;
            }
            .article-banner h1 {
                font-size: 31px;
            }
            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .cta-panel {
                padding: 34px 24px;
            }
            .cta-panel h2 {
                font-size: 22px;
            }
        }

        @media (max-width: 767.98px) {
            body {
                font-size: 15px;
            }
            .navbar-brand span {
                font-size: 16px;
                max-width: 190px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .article-banner h1 {
                font-size: 27px;
                letter-spacing: 0;
            }
            .article-meta-row {
                gap: 12px;
                font-size: 12px;
            }
            .article-content-section {
                padding: 40px 0 12px;
            }
            .article-copy {
                font-size: 16px;
                line-height: 1.9;
            }
            .article-copy h2 {
                font-size: 22px;
            }
            .article-copy blockquote {
                padding: 12px 16px 12px 18px;
                font-size: 15px;
            }
            .section-title-wrap {
                flex-direction: column;
                gap: 4px;
                margin-bottom: 24px;
            }
            .section-title-wrap h2 {
                font-size: 23px;
            }
            .story-card {
                margin-bottom: 18px;
            }
            .cta-panel {
                padding: 32px 22px;
                border-radius: 18px;
            }
            .cta-panel .btn-cta-white {
                width: 100%;
                text-align: center;
            }
            .footer-main {
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
            }
        }

        @media (max-width: 575.98px) {
            .search-box {
                display: block;
                padding: 8px 14px;
                font-size: 13px;
            }
            .btn-login {
                padding: 8px 14px;
                font-size: 13px;
            }
            .article-crumb .current {
                max-width: 120px;
            }
            .article-main {
                padding: 0 2px;
            }
            .article-actions-row {
                flex-direction: column;
                align-items: flex-start;
            }
            .article-404-box {
                padding: 36px 20px;
            }
        }

/* roulang page: category2 */
:root {
            --brand-green: #0C4A3A;
            --brand-green-light: #0F5B47;
            --brand-amber: #F5A623;
            --brand-dark: #0C1E1A;
            --brand-hero-dark: #07120F;
            --text-main: #1A2B26;
            --text-muted: #61726C;
            --bg-white: #FFFFFF;
            --bg-light: #F4F7F5;
            --border-light: #E1E7E3;
            --radius-lg: 18px;
            --radius-md: 14px;
            --radius-sm: 10px;
            --shadow-md: 0 1px 2px rgba(12, 30, 26, .04), 0 8px 24px rgba(12, 30, 26, .06);
            --shadow-hover: 0 12px 40px rgba(12, 30, 26, .12);
            --transition: .25s ease;
            --font-cn: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        }
        body {
            font-family: var(--font-cn);
            color: var(--text-main);
            background: var(--bg-white);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        .container {
            max-width: 1280px;
        }
        .text-brand {
            color: var(--brand-green) !important;
        }
        .bg-brand {
            background-color: var(--brand-green);
        }
        .bg-brand-light {
            background-color: rgba(12, 74, 58, .08);
        }

        /* ===== Navbar Override ===== */
        .site-header {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
        }
        .navbar {
            position: relative;
            padding-top: 0;
            padding-bottom: 0;
            min-height: 64px;
        }
        .navbar-brand {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--brand-green) !important;
            letter-spacing: .01em;
            padding: 0;
        }
        .navbar-brand i {
            font-size: 1.5rem;
            color: var(--brand-green);
        }
        .navbar-nav {
            gap: .25rem;
        }
        .navbar-nav .nav-link {
            font-size: 1rem;
            font-weight: 500;
            color: #33443e;
            padding: 1.2rem .95rem !important;
            position: relative;
        }
        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 16%;
            right: 16%;
            bottom: 0;
            height: 0;
        }
        .navbar-nav .nav-link:hover {
            color: var(--brand-green);
        }
        .navbar-nav .nav-link.active::after {
            height: 3px;
            background: var(--brand-green);
            border-radius: 8px 8px 0 0;
        }
        .nav-cta-area {
            display: flex;
            align-items: center;
            gap: .8rem;
        }
        .search-box {
            width: 220px;
            height: 38px;
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            border-radius: 999px;
            padding-left: 1.1rem;
            font-size: .9rem;
        }
        .search-box:focus {
            background: #fff;
            border-color: var(--brand-green);
            box-shadow: 0 0 0 3px rgba(12, 74, 58, .12);
        }
        .btn-brand {
            background-color: var(--brand-green);
            border: 1px solid var(--brand-green);
            color: #fff;
            border-radius: 999px;
            padding: .5rem 1.5rem;
            font-weight: 600;
            font-size: .92rem;
            transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
        }
        .btn-brand:hover,
        .btn-brand:focus {
            background-color: var(--brand-green-light);
            border-color: var(--brand-green-light);
            color: #fff;
            box-shadow: 0 6px 18px rgba(12, 74, 58, .22);
            transform: translateY(-1px);
        }
        .btn-outline-light-soft {
            border: 1.5px solid rgba(255, 255, 255, .78);
            border-radius: 999px;
            color: #fff;
            background: transparent;
            padding: .5rem 1.5rem;
            font-weight: 600;
            font-size: .92rem;
            transition: var(--transition);
        }
        .btn-outline-light-soft:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff;
            color: #fff;
        }
        .btn-outline-dark-soft {
            border: 1.5px solid var(--text-main);
            border-radius: 999px;
            color: var(--text-main);
            background: transparent;
            padding: .5rem 1.5rem;
            font-weight: 600;
            font-size: .92rem;
            transition: var(--transition);
        }
        .btn-outline-dark-soft:hover {
            background: rgba(12, 74, 58, .07);
            border-color: var(--brand-green);
            color: var(--brand-green);
        }
        .navbar-toggler {
            border: 0;
            color: var(--brand-green);
            font-size: 1.3rem;
        }
        .navbar-toggler:focus,
        .form-control:focus,
        .btn:focus,
        .btn-close:focus,
        .accordion-button:focus {
            outline: 2px solid rgba(12, 74, 58, .45) !important;
            outline-offset: 2px;
            box-shadow: none !important;
        }
        @media (max-width: 991.98px) {
            .navbar {
                min-height: 60px;
                padding-top: .5rem;
                padding-bottom: .5rem;
            }
            .navbar-collapse {
                background: #fff;
                border-radius: 16px;
                padding: 1rem;
            }
            .navbar-nav .nav-link {
                padding: .65rem .9rem !important;
            }
            .navbar-nav .nav-link::after {
                display: none;
            }
            .nav-cta-area {
                margin-top: .4rem;
                flex-direction: column;
                align-items: stretch;
            }
            .search-box {
                width: 100%;
                margin-bottom: .5rem;
            }
            .navbar-brand span {
                font-size: 1.02rem;
            }
        }

        /* ===== Hero Banner ===== */
        .category-hero {
            position: relative;
            min-height: 440px;
            display: flex;
            align-items: center;
            background: linear-gradient(112deg, #03100c 0%, rgba(12, 30, 26, .86) 52%, rgba(12, 30, 26, .45) 100%), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            color: #fff;
            padding: 100px 0 40px;
        }
        .category-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7, 18, 15, .22) 0%, rgba(7, 18, 15, .06) 60%, rgba(7, 18, 15, .72) 100%);
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            font-size: .86rem;
            letter-spacing: .06em;
            color: rgba(255, 255, 255, .92);
            background: rgba(255, 255, 255, .12);
            padding: .35rem 1rem .35rem 1.1rem;
            border-radius: 999px;
            margin-bottom: 18px;
            border: 1px solid rgba(255, 255, 255, .18);
        }
        .hero-kicker i {
            color: var(--brand-amber);
        }
        .category-hero h1 {
            font-size: 3.3rem;
            font-weight: 800;
            letter-spacing: .02em;
            line-height: 1.15;
            margin-bottom: 14px;
        }
        .category-hero .lead {
            font-size: 1.16rem;
            color: #EAF3EF;
            max-width: 740px;
            line-height: 1.9;
            opacity: .92;
        }
        .hero-breadcrumb {
            color: rgba(255, 255, 255, .7);
            font-size: .82rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        .hero-breadcrumb a {
            color: #fff;
            opacity: .85;
        }
        @media (max-width: 767px) {
            .category-hero {
                min-height: 400px;
                padding: 70px 0 30px;
            }
            .category-hero h1 {
                font-size: 2.3rem;
            }
            .category-hero .lead {
                font-size: .98rem;
            }
        }

        /* ===== Stats strip ===== */
        .stats-strip {
            background: var(--bg-light);
            border-bottom: 1px solid var(--border-light);
            padding: 18px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .stats-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            border-radius: 14px;
            padding: 14px 18px;
            border: 1px solid var(--border-light);
            box-shadow: 0 1px 3px rgba(12, 30, 26, .02);
        }
        .stats-label {
            color: var(--text-muted);
            font-size: .85rem;
            display: flex;
            align-items: center;
            gap: .4rem;
        }
        .stats-num {
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--brand-green);
        }
        @media (max-width: 991px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== Section common ===== */
        .section-pad {
            padding: 78px 0;
        }
        .section-sub {
            color: var(--brand-green);
            font-weight: 700;
            letter-spacing: .08em;
            font-size: .86rem;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: .4rem;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: .4rem;
            letter-spacing: -.01em;
        }
        .section-lead {
            color: var(--text-muted);
            max-width: 560px;
            margin-bottom: 0;
        }
        .split-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 2rem;
            gap: 20px;
            flex-wrap: wrap;
        }
        @media (max-width: 767px) {
            .section-pad {
                padding: 50px 0;
            }
            .section-title {
                font-size: 1.6rem;
            }
        }

        /* ===== Match cards ===== */
        .featured-section {
            background: #fff;
        }
        .match-card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform var(--transition), box-shadow var(--transition);
            height: 100%;
        }
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .match-cover {
            position: relative;
            height: 170px;
            overflow: hidden;
        }
        .match-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .55s cubic-bezier(.22, .65, .29, .99);
        }
        .match-card:hover .match-cover img {
            transform: scale(1.045);
        }
        .match-cover::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7, 18, 15, 0) 46%, rgba(7, 18, 15, .52) 100%);
        }
        .match-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(7, 18, 15, .72);
            backdrop-filter: blur(4px);
            color: #fff;
            font-size: .75rem;
            padding: .2rem .75rem;
            border-radius: 999px;
            z-index: 2;
            letter-spacing: .03em;
        }
        .match-tag.live {
            background: var(--brand-amber);
            color: #07120F;
            font-weight: 700;
        }
        .match-body {
            padding: 16px 18px 20px;
        }
        .match-compet {
            font-size: .76rem;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: .04em;
        }
        .match-title {
            font-size: 1.02rem;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-main);
            margin: 4px 0 6px;
            transition: color var(--transition);
        }
        .match-card:hover .match-title {
            color: var(--brand-green);
        }
        .match-score-line {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px dashed var(--border-light);
            padding-top: 12px;
            margin-top: 8px;
        }
        .match-score-box {
            background: var(--bg-light);
            border-radius: 8px;
            padding: .2rem .9rem;
            font-family: "Inter", "Roboto", var(--font-cn);
            font-variant-numeric: tabular-nums;
            font-weight: 700;
            font-size: 1rem;
        }
        .match-status {
            font-size: .74rem;
            color: var(--brand-amber);
            font-weight: 700;
            background: rgba(245, 166, 35, .13);
            padding: .18rem .8rem;
            border-radius: 999px;
        }
        .match-card .card-bottom-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
            color: var(--text-muted);
            font-size: .78rem;
        }
        .arrow-link {
            display: inline-flex;
            align-items: center;
            gap: .25rem;
            color: var(--brand-green);
            font-weight: 600;
            transition: color var(--transition);
        }
        .arrow-link i {
            transition: transform .2s ease;
        }
        .arrow-link:hover {
            color: var(--brand-amber);
        }
        .arrow-link:hover i {
            transform: translateX(4px);
        }

        /* ===== Live timeline dark panel ===== */
        .live-panel-section {
            background: var(--brand-dark);
            padding: 78px 0;
            color: #EAF3EF;
        }
        .live-panel-section .section-title,
        .live-panel-section .section-lead {
            color: #EAF3EF;
        }
        .live-panel-section .section-sub {
            color: var(--brand-amber);
        }
        .live-timeline {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .live-feed-row {
            display: flex;
            gap: 18px;
            padding: 18px 16px;
            background: rgba(255, 255, 255, .045);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 14px;
            transition: var(--transition);
        }
        .live-feed-row:hover {
            background: rgba(255, 255, 255, .07);
        }
        .feed-time {
            font-family: "Inter", "Roboto", var(--font-cn);
            color: var(--brand-amber);
            font-size: 1.1rem;
            font-weight: 700;
            min-width: 52px;
            letter-spacing: .02em;
            font-variant-numeric: tabular-nums;
        }
        .feed-category {
            font-size: .74rem;
            color: rgba(255, 255, 255, .7);
            background: rgba(255, 255, 255, .1);
            border-radius: 999px;
            padding: .1rem .7rem;
            display: inline-block;
            margin-bottom: 4px;
        }
        .feed-text {
            font-size: .96rem;
            color: rgba(234, 243, 239, .9);
            line-height: 1.6;
        }
        .live-network-card {
            background: linear-gradient(145deg, rgba(245, 166, 35, .13), rgba(245, 166, 35, .04)), #0d332a;
            border: 1px solid rgba(245, 166, 35, .2);
            border-radius: 20px;
            padding: 24px;
            margin-top: 28px;
        }
        .live-network-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: .6rem;
        }
        .live-network-card p {
            color: rgba(234, 243, 239, .78);
            font-size: .92rem;
        }
        @media (max-width: 767px) {
            .live-feed-row {
                flex-direction: column;
                gap: 8px;
            }
        }

        /* ===== Steps ===== */
        .howto-section {
            background: var(--bg-light);
        }
        .step-box {
            position: relative;
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 1.6rem 1.5rem 1.5rem;
            height: 100%;
            transition: var(--transition);
        }
        .step-box:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .step-number {
            width: 36px;
            height: 36px;
            background: var(--brand-green);
            color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: 14px;
        }
        .step-box h4 {
            font-weight: 700;
            font-size: 1.1rem;
        }
        .step-box p {
            font-size: .9rem;
            color: var(--text-muted);
            margin: 0;
        }
        .step-box .step-icon {
            position: absolute;
            right: 1.2rem;
            top: 1.6rem;
            color: rgba(12, 74, 58, .14);
            font-size: 2rem;
        }

        /* ===== Sport tags ===== */
        .sport-tag-section {
            background: #fff;
        }
        .sport-tag-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .sport-tag-item {
            background: var(--bg-light);
            border-radius: 14px;
            padding: 18px 16px;
            text-align: center;
            border: 1px solid transparent;
            transition: .25s;
        }
        .sport-tag-item:hover {
            background: #fff;
            border-color: var(--border-light);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .sport-tag-item i {
            font-size: 1.7rem;
            color: var(--brand-green);
            margin-bottom: .5rem;
            display: block;
        }
        .sport-tag-item span {
            font-weight: 600;
            font-size: .98rem;
        }
        .sport-tag-item small {
            display: block;
            color: var(--text-muted);
            font-size: .75rem;
            margin-top: 4px;
        }
        @media (max-width: 991px) {
            .sport-tag-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .sport-tag-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== FAQ override ===== */
        .faq-section {
            background: var(--bg-light);
            padding: 70px 0;
        }
        .faq-accordion .accordion-item {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
        }
        .faq-accordion .accordion-button {
            background: #fff;
            color: var(--text-main);
            font-weight: 600;
            font-size: 1rem;
            padding: 1.1rem 1.2rem;
            box-shadow: none;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: #fff;
            color: var(--brand-green);
            box-shadow: none;
        }
        .faq-accordion .accordion-button::after {
            background-image: none;
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--brand-green);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            transition: var(--transition);
        }
        .faq-accordion .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }
        .faq-accordion .accordion-body {
            color: var(--text-muted);
            padding: .2rem 1.25rem 1.1rem;
            font-size: .92rem;
        }
        .faq-layout .faq-intro h2 {
            font-size: 1.9rem;
            font-weight: 800;
        }

        /* ===== CTA banner ===== */
        .cta-banner {
            background: linear-gradient(120deg, #082a22 0%, var(--brand-green-light) 48%, #0C4A3A 100%);
            border-radius: 22px;
            padding: 34px 36px;
            box-shadow: 0 16px 46px rgba(12, 74, 58, .22);
            position: relative;
            overflow: hidden;
            color: #fff;
        }
        .cta-banner i.bg-icon {
            position: absolute;
            right: 24px;
            top: -20px;
            font-size: 8rem;
            opacity: .07;
            color: #fff;
            transform: rotate(12deg);
        }
        .cta-banner h2 {
            font-weight: 800;
            font-size: 1.85rem;
            margin-bottom: .6rem;
        }
        .cta-banner p {
            color: rgba(255, 255, 255, .86);
            max-width: 620px;
            margin-bottom: 0;
            font-size: .96rem;
        }
        .cta-banner .btn-brand,
        .cta-banner .btn-outline-light-soft {
            margin-left: .5rem;
        }
        @media (max-width: 767px) {
            .cta-banner {
                padding: 24px 20px;
            }
            .cta-banner h2 {
                font-size: 1.35rem;
            }
            .cta-wrap .btn {
                display: block;
                margin: .4rem 0 !important;
                width: 100%;
            }
        }

        /* ===== Footer 沿用 ===== */
        .site-footer {
            background: #fff;
            border-top: 1px solid var(--border-light);
            padding: 44px 0 0;
        }
        .footer-main {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 34px;
            padding-bottom: 24px;
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: .55rem;
            font-size: 1.08rem;
            font-weight: 800;
            color: var(--brand-green);
            margin-bottom: .6rem;
        }
        .footer-brand .footer-logo i {
            font-size: 1.35rem;
            color: var(--brand-green);
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: .9rem;
            max-width: 340px;
            margin: 0;
        }
        .footer-link-block h4 {
            font-size: .95rem;
            color: var(--brand-green);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .footer-link-block ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-link-block li {
            margin-bottom: .55rem;
        }
        .footer-link-block li a {
            color: var(--text-muted);
            font-size: .9rem;
            transition: .2s;
        }
        .footer-link-block li a:hover {
            color: var(--brand-green);
            padding-left: 3px;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            padding: 18px 0 22px;
            border-top: 1px solid var(--border-light);
            color: var(--text-muted);
            font-size: .85rem;
        }
        .site-domain {
            font-size: .74rem;
            letter-spacing: .03em;
        }
        .icon-sm-badge {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            color: var(--text-muted);
            transition: .2s;
        }
        .icon-sm-badge:hover {
            background: var(--brand-green);
            color: #fff;
        }
        @media (max-width: 991px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 767px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 26px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
            }
        }

/* roulang page: category3 */
:root {
            --brand: #0C4A3A;
            --brand-hover: #0F5B47;
            --accent: #F5A623;
            --dark: #0C1E1A;
            --hero-dark: #07120F;
            --body-text: #1A2B26;
            --muted: #61726C;
            --bg-light: #F4F7F5;
            --bg-soft: #EEF3F0;
            --line: #E1E7E3;
            --white: #ffffff;
            --radius: 14px;
            --radius-md: 10px;
            --radius-pill: 999px;
            --shadow-sm: 0 1px 2px rgba(12, 30, 26, 0.04), 0 8px 24px rgba(12, 30, 26, 0.06);
            --shadow-hover: 0 12px 40px rgba(12, 30, 26, 0.12);
            --transition: 0.3s ease;
            --space-xl: 88px;
            --space-lg: 64px;
            --space-md: 48px;
            --space-sm: 28px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Segoe UI", sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--body-text);
            background-color: var(--white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);
        }

        ul,
        ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            margin: 0 0 8px 0;
            color: var(--dark);
            font-weight: 700;
        }

        p {
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .container {
            max-width: 1320px;
        }

        .section-pad {
            padding: var(--space-xl) 0;
        }

        .section-head {
            margin-bottom: 40px;
        }

        .section-eyebrow {
            display: inline-block;
            font-size: 13px;
            letter-spacing: 0.08em;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(12, 74, 58, 0.08);
            color: var(--brand);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .section-title {
            font-size: clamp(28px, 3.4vw, 40px);
            font-weight: 700;
            color: var(--dark);
        }

        .section-sub {
            font-size: 16px;
            color: var(--muted);
            max-width: 680px;
        }

        .text-brand {
            color: var(--brand) !important;
        }

        .text-accent {
            color: var(--accent) !important;
        }

        .bg-brand-soft {
            background: var(--bg-light) !important;
        }

        /* Bootstrap overrides */
        .btn {
            border-radius: var(--radius-pill);
            font-weight: 600;
            line-height: 1.4;
            padding: 10px 22px;
            font-size: 15px;
            transition: all var(--transition);
            border: 2px solid transparent;
        }

        .btn-primary,
        .btn-brand {
            background-color: var(--brand);
            border-color: var(--brand);
            color: #fff;
        }

        .btn-primary:hover,
        .btn-primary:focus,
        .btn-brand:hover,
        .btn-brand:focus {
            background-color: var(--brand-hover);
            border-color: var(--brand-hover);
            color: #fff;
            box-shadow: 0 8px 20px rgba(12, 74, 58, 0.22);
            transform: translateY(-2px);
        }

        .btn-primary:active,
        .btn-brand:active {
            transform: translateY(0);
            background-color: #08372c;
            border-color: #08372c;
        }

        .btn-outline-light-custom {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.85);
            color: #fff;
            border-radius: 999px;
            padding: 10px 22px;
        }

        .btn-outline-light-custom:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-arrow {
            font-weight: 600;
            color: var(--brand);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-arrow i {
            transition: transform var(--transition);
        }

        .btn-arrow:hover i {
            transform: translateX(5px);
        }

        a:focus-visible,
        button:focus-visible,
        .btn:focus-visible,
        .form-control:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            box-shadow: none;
        }

        .card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .form-control {
            border: 0;
            border-radius: var(--radius-pill);
            background: var(--bg-light);
            padding: 9px 18px;
            font-size: 14px;
            color: var(--body-text);
            transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
        }

        .form-control::placeholder {
            color: #93A19A;
        }

        .form-control:focus {
            background: #fff;
            border: 0;
            box-shadow: none;
            border: 2px solid var(--brand);
        }

        .accordion-button {
            border: 0;
            background: transparent;
            font-weight: 600;
            font-size: 16px;
            color: var(--body-text);
            box-shadow: none;
            padding: 18px 16px;
            border-radius: var(--radius-md) !important;
        }

        .accordion-button:hover {
            background: rgba(12, 74, 58, 0.03);
        }

        .accordion-button:not(.collapsed) {
            color: var(--brand);
            background: var(--bg-light);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(12, 74, 58, 0.12);
            border-radius: var(--radius-md);
        }

        .accordion-item {
            background: transparent;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
        }

        .accordion-button::after {
            background-image: none;
            content: "\2b";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 18px;
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            transition: transform var(--transition), color var(--transition);
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
            color: var(--accent);
        }

        .accordion-body {
            padding: 0 16px 18px 16px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
        }

        /* ===== Header / Nav ===== */
        header .navbar {
            min-height: 64px;
            background: rgba(255, 255, 255, 0.97);
            border-bottom: 1px solid var(--line);
            padding-top: 8px;
            padding-bottom: 8px;
        }

        .navbar-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: 0.02em;
            margin: 0;
            padding: 0;
        }

        .navbar-brand i {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--brand);
            color: #fff;
            border-radius: 12px;
            font-size: 16px;
        }

        .navbar-brand span {
            white-space: nowrap;
        }

        .navbar-brand:hover {
            color: var(--brand);
        }

        .navbar-nav {
            gap: 4px;
        }

        .navbar-nav .nav-link {
            font-size: 15px;
            color: var(--body-text);
            font-weight: 500;
            padding: 9px 18px !important;
            border-radius: 999px;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--brand);
            background: rgba(12, 74, 58, 0.06);
        }

        .navbar-nav .nav-link.active {
            color: var(--brand);
            font-weight: 600;
        }

        .navbar-nav .nav-link.active::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 2px;
            height: 3px;
            border-radius: 999px;
            background: var(--brand);
        }

        .nav-cta-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-box {
            width: 220px;
            height: 38px;
            border-radius: var(--radius-pill);
            background: var(--bg-light);
            border: 2px solid transparent;
        }

        .search-box:focus {
            border-color: var(--brand);
            background: #fff;
        }

        .btn-login {
            height: 38px;
            display: inline-flex;
            align-items: center;
            padding: 0 20px;
            font-size: 14px;
            border-radius: var(--radius-pill);
        }

        .navbar-toggler {
            border: none;
            background: transparent;
            font-size: 20px;
            padding: 6px 8px;
            color: var(--dark);
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--accent);
            border-radius: 8px;
        }

        /* ===== Hero ===== */
        .page-hero {
            position: relative;
            background: var(--hero-dark);
            background-size: cover;
            background-position: center;
            min-height: 480px;
            display: flex;
            align-items: center;
            isolation: isolate;
            color: #fff;
            overflow: hidden;
        }

        .page-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(5, 14, 11, 0.86) 0%, rgba(7, 18, 15, 0.68) 48%, rgba(7, 18, 15, 0.25) 100%);
            z-index: 0;
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
            padding-top: 70px;
            padding-bottom: 70px;
        }

        .hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 999px;
            padding: 6px 16px;
            font-size: 13px;
            color: #e9f2ee;
            backdrop-filter: blur(4px);
            margin-bottom: 22px;
        }

        .hero-tagline i {
            color: var(--accent);
        }

        .page-hero h1 {
            color: #fff;
            font-size: clamp(34px, 5.2vw, 58px);
            font-weight: 800;
            max-width: 760px;
            margin-bottom: 18px;
            letter-spacing: 0.01em;
        }

        .hero-divider-line {
            width: 58px;
            height: 4px;
            background: var(--accent);
            border-radius: 999px;
            margin-bottom: 20px;
        }

        .page-hero .hero-desc {
            font-size: 17px;
            line-height: 1.85;
            color: #d7e5df;
            max-width: 680px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 26px;
        }

        .hero-actions .btn-hero-main {
            background: #fff;
            color: var(--brand);
            border-color: #fff;
        }

        .hero-actions .btn-hero-main:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #1a2b26;
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 36px;
            color: #bdcec5;
            font-size: 13px;
        }

        .hero-trust span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-trust span i {
            color: var(--accent);
        }

        /* ===== Topic Rows ===== */
        .topic-rows-wrap {
            background: var(--white);
        }

        .topic-row {
            display: grid;
            grid-template-columns: 300px 1fr;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            min-height: 190px;
            margin-bottom: 26px;
            overflow: hidden;
            transition: box-shadow var(--transition), transform var(--transition);
        }

        .topic-row:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .topic-thumb {
            position: relative;
            min-height: 200px;
            overflow: hidden;
            background: var(--bg-light);
        }

        .topic-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .topic-row:hover .topic-thumb img {
            transform: scale(1.06);
        }

        .topic-thumb .topic-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(12, 74, 58, 0.92);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 999px;
            backdrop-filter: blur(4px);
        }

        .topic-thumb .topic-info {
            position: absolute;
            bottom: 12px;
            left: 12px;
            right: 12px;
            color: #fff;
            font-size: 12px;
            background: linear-gradient(transparent, rgba(3, 10, 8, 0.72));
            padding: 18px 12px 10px 12px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .topic-body {
            padding: 26px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .topic-body h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .topic-body p {
            color: var(--muted);
            font-size: 15px;
            margin-bottom: 14px;
        }

        .topic-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            border-top: 1px solid var(--line);
            padding-top: 16px;
            margin-top: auto;
        }

        .topic-meta small {
            color: var(--muted);
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .topic-meta .btn-arrow {
            font-size: 14px;
        }

        /* ===== Benefit Cards ===== */
        .benefit-section {
            background: var(--bg-light);
        }

        .benefit-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 30px 24px;
            height: 100%;
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(12, 74, 58, 0.22);
        }

        .benefit-icon {
            width: 58px;
            height: 58px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: rgba(12, 74, 58, 0.09);
            color: var(--brand);
            font-size: 22px;
            margin-bottom: 18px;
        }

        .benefit-card .num {
            font-family: "Inter", "Roboto", -apple-system, sans-serif;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.08em;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .benefit-card h3 {
            font-size: 19px;
            margin-bottom: 10px;
        }

        .benefit-card p {
            color: var(--muted);
            font-size: 14.5px;
            margin: 0;
            line-height: 1.75;
        }

        /* ===== Dark Season Panel ===== */
        .club-banner {
            position: relative;
            background: linear-gradient(135deg, #0C1E1A 0%, #0A3B30 60%, #0C4A3A 100%);
            border-radius: 24px;
            color: #fff;
            padding: 54px 46px;
            overflow: hidden;
            isolation: isolate;
        }

        .club-banner::before {
            content: "";
            position: absolute;
            right: -80px;
            top: -80px;
            width: 260px;
            height: 260px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 166, 35, 0.2), transparent 65%);
            z-index: 0;
        }

        .club-banner::after {
            content: "";
            position: absolute;
            left: 20px;
            bottom: -120px;
            width: 300px;
            height: 200px;
            background: radial-gradient(ellipse, rgba(255, 255, 255, 0.07), transparent 70%);
            z-index: 0;
        }

        .club-banner .inner {
            position: relative;
            z-index: 2;
        }

        .club-banner .big-label {
            font-size: 13px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 14px;
        }

        .club-banner h2 {
            color: #fff;
            font-size: clamp(27px, 3.5vw, 42px);
            margin-bottom: 18px;
        }

        .club-banner p {
            color: #BFD3CB;
            max-width: 640px;
            margin-bottom: 28px;
        }

        .club-points {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
            margin-bottom: 30px;
        }

        .club-points .point {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #E8F1ED;
            font-size: 14px;
        }

        .club-points .point i {
            color: var(--accent);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
        }

        /* ===== Mini News ===== */
        .brief-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 24px;
            height: 100%;
            border-left: 4px solid var(--brand);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .brief-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .brief-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .badge-date {
            background: rgba(245, 166, 35, 0.15);
            color: #B07600;
            font-size: 12px;
            font-weight: 600;
            border-radius: 999px;
            padding: 4px 12px;
        }

        .brief-card h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .brief-card p {
            color: var(--muted);
            font-size: 14px;
            margin: 0;
        }

        .brief-card .more-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--brand);
            margin-top: 16px;
        }

        .brief-card .more-link i {
            transition: transform var(--transition);
        }

        .brief-card .more-link:hover {
            color: var(--accent);
        }

        .brief-card .more-link:hover i {
            transform: translateX(4px);
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--white);
        }

        .faq-notes {
            margin-top: 28px;
            padding: 18px 20px;
            border-radius: var(--radius-md);
            background: var(--bg-light);
            color: var(--muted);
            font-size: 14px;
        }

        .faq-notes a {
            color: var(--brand);
            font-weight: 600;
        }

        /* ===== CTA Banner ===== */
        .cta-strip {
            padding-top: 0;
            padding-bottom: var(--space-xl);
        }

        .cta-banner {
            background: linear-gradient(135deg, #062821 0%, #0B4034 45%, #0F553F 100%);
            border-radius: 24px;
            padding: 50px 48px;
            position: relative;
            overflow: hidden;
            isolation: isolate;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #fff;
        }

        .cta-banner::after {
            content: "";
            position: absolute;
            right: -60px;
            top: -40px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            z-index: 0;
        }

        .cta-banner .cta-text {
            position: relative;
            z-index: 2;
        }

        .cta-banner h2 {
            color: #fff;
            font-size: clamp(24px, 3vw, 36px);
            margin-bottom: 10px;
        }

        .cta-banner p {
            color: #CFE3DA;
            font-size: 15px;
            margin: 0 0 8px 0;
            max-width: 720px;
        }

        .cta-banner .cta-note {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.65);
        }

        .cta-banner .cta-btn-group {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #08130F;
            color: #B7C9C1;
            padding-top: 60px;
            font-size: 14px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 38px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-logo i {
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--brand);
            border-radius: 10px;
            color: #fff;
            font-size: 15px;
        }

        .footer-brand p {
            max-width: 360px;
            color: #95A8A0;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .site-footer h4 {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .site-footer ul {
            list-style: none;
        }

        .site-footer ul li {
            margin-bottom: 10px;
        }

        .site-footer ul a {
            color: #A9BDB4;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .site-footer ul a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .icon-sm-badge {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            color: #E5F0EB;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all var(--transition);
        }

        .icon-sm-badge:hover {
            background: var(--accent);
            color: #08130F;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
        }

        .footer-bottom .site-domain {
            color: #60766C;
            font-size: 12px;
            letter-spacing: 0.02em;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1199px) {
            .search-box {
                width: 180px;
            }
        }

        @media (max-width: 991px) {
            :root {
                --space-xl: 64px;
                --space-lg: 48px;
            }

            .navbar-collapse {
                background: #fff;
                border-radius: 16px;
                padding: 18px 12px;
                border: 1px solid var(--line);
                box-shadow: var(--shadow-sm);
                margin-top: 8px;
            }

            .navbar-nav {
                gap: 2px;
                margin-bottom: 12px;
            }

            .navbar-nav .nav-link {
                padding: 10px 16px !important;
                border-radius: 10px;
            }

            .navbar-nav .nav-link.active::after {
                display: none;
            }

            .navbar-nav .nav-link.active {
                background: rgba(12, 74, 58, 0.1);
            }

            .nav-cta-area {
                justify-content: flex-start;
                width: 100%;
            }

            .search-box {
                width: 100%;
                height: 42px;
            }

            .btn-login {
                height: 42px;
            }

            .page-hero {
                min-height: 420px;
            }

            .topic-row {
                grid-template-columns: 240px 1fr;
            }

            .topic-body {
                padding: 22px;
            }

            .cta-banner {
                flex-direction: column;
                gap: 24px;
                align-items: flex-start;
            }

            .cta-banner .cta-btn-group {
                width: 100%;
            }

            .cta-banner .cta-btn-group a {
                flex: 1;
                justify-content: center;
            }
        }

        @media (max-width: 767px) {
            :root {
                --space-xl: 52px;
                --space-lg: 40px;
                --space-md: 32px;
            }

            .section-title {
                font-size: 28px;
            }

            .page-hero {
                min-height: 360px;
            }

            .page-hero h1 {
                font-size: 32px;
            }

            .page-hero .hero-desc {
                font-size: 15px;
            }

            .hero-actions .btn {
                flex: 1;
                justify-content: center;
            }

            .topic-row {
                grid-template-columns: 1fr;
            }

            .topic-thumb {
                min-height: 180px;
                max-height: 220px;
            }

            .topic-body {
                padding: 20px;
            }

            .topic-body h3 {
                font-size: 18px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }

            .faq-section .accordion-item {
                margin-bottom: 14px;
            }

            .cta-banner {
                padding: 40px 24px;
                border-radius: 18px;
            }

            .cta-banner .cta-text p {
                font-size: 14px;
            }

            .club-banner {
                padding: 38px 24px;
                border-radius: 18px;
            }
        }

        @media (max-width: 520px) {
            .section-pad {
                --space-xl: 44px;
            }

            .navbar-brand {
                font-size: 17px;
            }

            .navbar-brand i {
                width: 32px;
                height: 32px;
                font-size: 13px;
                border-radius: 10px;
            }

            .page-hero .container {
                padding-top: 44px;
                padding-bottom: 46px;
            }

            .page-hero h1 {
                font-size: 28px;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-trust {
                gap: 12px 18px;
            }

            .section-head {
                margin-bottom: 28px;
            }

            .topic-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .benefit-card {
                padding: 24px 18px;
            }

            .brief-card {
                padding: 20px;
            }
        }
