/* roulang page: index */
:root {
            --ht-ink: #0a2a43;
            --ht-ink-light: #143a5c;
            --ht-ink-soft: #1f4b75;
            --ht-accent: #ff5a3c;
            --ht-accent-dark: #e84422;
            --ht-accent-soft: rgba(255, 90, 60, 0.12);
            --ht-green: #17b890;
            --ht-amber: #f5a623;
            --ht-bg: #f4f7fb;
            --ht-surface: #ffffff;
            --ht-text: #1c2b3a;
            --ht-text-soft: #5c7084;
            --ht-text-faint: #93a5b5;
            --ht-border: #dfe7ef;
            --ht-radius-xl: 24px;
            --ht-radius-lg: 18px;
            --ht-radius: 14px;
            --ht-radius-sm: 8px;
            --ht-shadow: 0 6px 30px rgba(10, 42, 67, 0.08);
            --ht-shadow-lg: 0 14px 44px rgba(10, 42, 67, 0.15);
            --ht-shadow-accent: 0 8px 24px rgba(255, 90, 60, 0.28);
            --ht-transition: all .3s ease;
            --ht-font: "Inter", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--ht-font);
            background-color: var(--ht-bg);
            color: var(--ht-text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--ht-transition);
        }

        a:hover {
            color: var(--ht-accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            outline: none;
        }

        .container {
            max-width: 1280px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--ht-ink);
            font-weight: 700;
            line-height: 1.3;
        }

        .text-accent {
            color: var(--ht-accent) !important;
        }
        .text-soft {
            color: var(--ht-text-soft) !important;
        }
        .text-faint {
            color: var(--ht-text-faint) !important;
        }
        .bg-ink {
            background-color: var(--ht-ink) !important;
        }

        .btn {
            border-radius: 50px;
            font-weight: 600;
            padding: .68rem 1.7rem;
            font-size: .95rem;
            border: 2px solid transparent;
            transition: var(--ht-transition);
            white-space: nowrap;
        }

        .btn-accent {
            background: var(--ht-accent);
            color: #fff;
            border-color: var(--ht-accent);
        }

        .btn-accent:hover {
            background: var(--ht-accent-dark);
            border-color: var(--ht-accent-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--ht-shadow-accent);
        }

        .btn-outline-light {
            border: 2px solid rgba(255, 255, 255, .65);
            color: #fff;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, .15);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-dark {
            border: 2px solid var(--ht-ink);
            color: var(--ht-ink);
        }

        .btn-outline-dark:hover {
            background: var(--ht-ink);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn:focus-visible,
        .nav-link:focus-visible,
        .accordion-button:focus-visible,
        a:focus-visible {
            outline: 3px solid rgba(255, 90, 60, .45);
            outline-offset: 2px;
        }

        .section {
            padding: 4.5rem 0;
        }

        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 3rem;
        }

        .section-header .sub-label {
            display: inline-block;
            background: var(--ht-accent-soft);
            color: var(--ht-accent);
            border-radius: 50px;
            padding: .3rem 1.1rem;
            font-size: .82rem;
            font-weight: 600;
            letter-spacing: .05em;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: .75rem;
        }

        .section-header p {
            color: var(--ht-text-soft);
            font-size: 1.02rem;
        }

        .section-divider {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--ht-border), transparent);
            margin: 0;
        }

        /* ========== 导航 ========== */
        .site-header {
            background: transparent;
            padding-top: 1.1rem;
            position: relative;
            z-index: 100;
        }

        .custom-navbar {
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(14px);
            border-radius: var(--ht-radius-lg);
            box-shadow: var(--ht-shadow);
            padding: .55rem 1.3rem;
            border: 1px solid rgba(255, 255, 255, .6);
            transition: var(--ht-transition);
        }

        .custom-navbar .navbar-brand {
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--ht-ink);
            display: flex;
            align-items: center;
            gap: .35rem;
        }

        .custom-navbar .navbar-brand .brand-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--ht-accent), var(--ht-amber));
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            font-weight: 800;
        }

        .custom-navbar .navbar-brand .brand-text {
            background: linear-gradient(135deg, var(--ht-ink), var(--ht-ink-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: .35rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu .nav-link {
            font-weight: 600;
            color: var(--ht-text-soft);
            font-size: .93rem;
            border-radius: 50px;
            padding: .5rem 1.1rem;
            transition: var(--ht-transition);
            position: relative;
        }

        .nav-menu .nav-link:hover {
            color: var(--ht-ink);
            background: rgba(10, 42, 67, .05);
        }

        .nav-menu .nav-link.active {
            color: #fff;
            background: linear-gradient(135deg, var(--ht-ink), var(--ht-ink-light));
            box-shadow: 0 4px 14px rgba(10, 42, 67, .18);
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: .75rem;
        }

        .navbar-toggler {
            border: 2px solid var(--ht-border);
            border-radius: 10px;
            padding: .35rem .6rem;
            color: var(--ht-ink);
        }

        .navbar-toggler:focus {
            box-shadow: none;
            border-color: var(--ht-accent);
        }

        @media (max-width: 991.98px) {
            .nav-menu {
                padding: 1rem 0 .5rem;
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }
            .nav-menu .nav-link {
                width: 100%;
                border-radius: var(--ht-radius-sm);
            }
            .nav-cta {
                width: 100%;
                margin-top: .5rem;
                flex-direction: column;
                align-items: stretch;
            }
            .nav-cta .btn {
                text-align: center;
            }
            .custom-navbar {
                padding: .8rem 1rem;
            }
        }

        /* ========== Hero ========== */
        .hero-section {
            position: relative;
            color: #fff;
            padding: 0;
            overflow: hidden;
            margin-top: 1.2rem;
            border-radius: var(--ht-radius-xl);
            background: linear-gradient(135deg, rgba(8, 28, 48, .94) 0%, rgba(10, 42, 67, .85) 55%, rgba(15, 50, 80, .72) 100%), url('/assets/images/backpic/back-1.png') center / cover no-repeat;
            box-shadow: var(--ht-shadow-lg);
        }

        .hero-inner {
            padding: 5rem 0 4.5rem;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 50px;
            padding: .4rem 1.2rem;
            font-size: .82rem;
            font-weight: 500;
            letter-spacing: .03em;
            margin-bottom: 1.4rem;
            backdrop-filter: blur(6px);
        }

        .hero-badge i {
            color: var(--ht-amber);
        }

        .hero-title {
            font-size: 2.9rem;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 1.2rem;
        }

        .hero-title .grad {
            background: linear-gradient(90deg, #ff8a65, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text {
            color: rgba(255, 255, 255, .82);
            font-size: 1.08rem;
            max-width: 560px;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-actions .btn {
            margin-right: .6rem;
            margin-bottom: .6rem;
        }

        .hero-stats {
            display: flex;
            gap: 2.2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .hero-stat {
            border-left: 2px solid rgba(255, 255, 255, .2);
            padding-left: 1.2rem;
        }

        .hero-stat .num {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fff;
            display: block;
            line-height: 1.2;
        }

        .hero-stat .label {
            font-size: .82rem;
            color: rgba(255, 255, 255, .6);
            letter-spacing: .04em;
        }

        .hero-card-wrap {
            position: relative;
            z-index: 2;
        }

        .hero-card {
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .16);
            backdrop-filter: blur(12px);
            border-radius: var(--ht-radius-lg);
            padding: 1.8rem 1.6rem;
            color: #fff;
            box-shadow: 0 16px 50px rgba(0, 0, 0, .22);
        }

        .hero-card h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: .05em;
            margin-bottom: 1.1rem;
        }

        .hero-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hero-card ul li {
            display: flex;
            align-items: center;
            gap: .7rem;
            padding: .45rem 0;
            font-size: .9rem;
            color: rgba(255, 255, 255, .86);
        }

        .hero-card ul li i {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .15);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: .7rem;
            color: var(--ht-amber);
            flex-shrink: 0;
        }

        @media (max-width: 991.98px) {
            .hero-inner {
                padding: 3.5rem 0 3rem;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-card-wrap {
                margin-top: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 1.75rem;
            }
            .hero-stats {
                gap: 1.2rem;
            }
            .hero-stat .num {
                font-size: 1.4rem;
            }
        }

        /* ========== 快讯条 ========== */
        .ticker-bar {
            background: var(--ht-ink);
            border-radius: var(--ht-radius);
            color: #fff;
            padding: .65rem 1rem;
            margin-top: 1.6rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(10, 42, 67, .15);
        }

        .ticker-label {
            background: var(--ht-accent);
            color: #fff;
            font-weight: 700;
            font-size: .78rem;
            padding: .2rem .8rem;
            border-radius: 50px;
            flex-shrink: 0;
            letter-spacing: .06em;
        }

        .ticker-track {
            display: flex;
            gap: 2.5rem;
            white-space: nowrap;
            overflow: hidden;
            font-size: .88rem;
            color: rgba(255, 255, 255, .85);
            flex: 1;
        }

        .ticker-track span {
            display: inline-block;
            position: relative;
        }

        .ticker-track span::after {
            content: '';
            position: absolute;
            right: -1.2rem;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--ht-accent);
        }

        .ticker-track span:last-child::after {
            display: none;
        }

        /* ========== 核心说明 ========== */
        .core-section {
            background: var(--ht-surface);
            border-radius: var(--ht-radius-xl);
            box-shadow: var(--ht-shadow);
            padding: 3.5rem 2.5rem;
            margin-top: -1rem;
            position: relative;
            z-index: 3;
        }

        .core-card {
            text-align: center;
            padding: 2rem 1.5rem;
            border-radius: var(--ht-radius-lg);
            background: var(--ht-bg);
            height: 100%;
            transition: var(--ht-transition);
            border: 1px solid transparent;
        }

        .core-card:hover {
            background: var(--ht-surface);
            border-color: var(--ht-border);
            box-shadow: var(--ht-shadow);
            transform: translateY(-4px);
        }

        .core-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            color: #fff;
        }

        .core-icon.orange {
            background: linear-gradient(135deg, var(--ht-accent), #ff8a65);
            box-shadow: 0 8px 20px rgba(255, 90, 60, .25);
        }

        .core-icon.green {
            background: linear-gradient(135deg, var(--ht-green), #45d3b0);
            box-shadow: 0 8px 20px rgba(23, 184, 144, .25);
        }

        .core-icon.blue {
            background: linear-gradient(135deg, var(--ht-ink-light), #3a6d99);
            box-shadow: 0 8px 20px rgba(20, 58, 92, .25);
        }

        .core-card h3 {
            font-size: 1.1rem;
            margin-bottom: .65rem;
            font-weight: 700;
        }

        .core-card p {
            color: var(--ht-text-soft);
            font-size: .92rem;
            margin-bottom: 0;
            line-height: 1.7;
        }

        @media (max-width: 767.98px) {
            .core-section {
                padding: 2.5rem 1.2rem;
            }
        }

        /* ========== 分类入口 ========== */
        .category-card {
            border-radius: var(--ht-radius-lg);
            overflow: hidden;
            position: relative;
            height: 100%;
            background: var(--ht-surface);
            box-shadow: var(--ht-shadow);
            border: 1px solid var(--ht-border);
            transition: var(--ht-transition);
        }

        .category-card:hover {
            box-shadow: var(--ht-shadow-lg);
            transform: translateY(-6px);
        }

        .category-card .card-img-wrap {
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .category-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .category-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }

        .category-card .card-img-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 45%, rgba(10, 42, 67, .55));
        }

        .category-card .card-body {
            padding: 1.4rem 1.5rem 1.6rem;
        }

        .category-card .cat-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
            background: rgba(255, 255, 255, .92);
            color: var(--ht-ink);
            border-radius: 50px;
            font-size: .75rem;
            font-weight: 700;
            padding: .22rem .85rem;
            backdrop-filter: blur(4px);
            letter-spacing: .03em;
        }

        .category-card h3 {
            font-size: 1.15rem;
            margin-bottom: .5rem;
        }

        .category-card p {
            color: var(--ht-text-soft);
            font-size: .9rem;
            line-height: 1.65;
            margin-bottom: 1rem;
        }

        .category-card .card-link {
            font-size: .88rem;
            font-weight: 600;
            color: var(--ht-accent);
            display: inline-flex;
            align-items: center;
            gap: .35rem;
        }

        .category-card .card-link i {
            transition: transform .3s ease;
        }

        .category-card:hover .card-link i {
            transform: translateX(4px);
        }

        /* ========== 资讯列表 ========== */
        .latest-section {
            background: var(--ht-surface);
        }

        .news-card {
            background: var(--ht-bg);
            border: 1px solid var(--ht-border);
            border-radius: var(--ht-radius-lg);
            padding: 1.4rem 1.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: var(--ht-transition);
        }

        .news-card:hover {
            background: var(--ht-surface);
            border-color: transparent;
            box-shadow: var(--ht-shadow);
            transform: translateY(-4px);
        }

        .news-card .news-cat {
            display: inline-block;
            background: var(--ht-accent-soft);
            color: var(--ht-accent);
            border-radius: 50px;
            font-size: .75rem;
            font-weight: 600;
            padding: .18rem .8rem;
            align-self: flex-start;
            margin-bottom: .8rem;
        }

        .news-card h3 {
            font-size: 1.02rem;
            font-weight: 700;
            line-height: 1.45;
            margin-bottom: .55rem;
        }

        .news-card h3 a {
            color: var(--ht-ink);
        }

        .news-card h3 a:hover {
            color: var(--ht-accent);
        }

        .news-card p {
            color: var(--ht-text-soft);
            font-size: .88rem;
            line-height: 1.6;
            flex: 1;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card .news-foot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--ht-border);
            padding-top: .85rem;
            font-size: .82rem;
            color: var(--ht-text-faint);
        }

        .news-card .read-more {
            color: var(--ht-text-soft);
            font-weight: 500;
        }

        .news-card .read-more:hover {
            color: var(--ht-accent);
        }

        .news-card .read-more i {
            transition: transform .3s ease;
        }

        .news-card .read-more:hover i {
            transform: translateX(3px);
        }

        .empty-state {
            background: var(--ht-bg);
            border: 2px dashed var(--ht-border);
            border-radius: var(--ht-radius-lg);
            width: 100%;
            padding: 3rem 2rem;
            text-align: center;
            color: var(--ht-text-soft);
        }

        .empty-state i {
            color: var(--ht-text-faint);
        }

        /* ========== 数据统计 ========== */
        .stats-section {
            background: linear-gradient(135deg, var(--ht-ink) 0%, #0e3555 100%), url('/assets/images/backpic/back-2.png') center / cover no-repeat;
            position: relative;
            color: #fff;
            border-radius: var(--ht-radius-xl);
            overflow: hidden;
            padding: 4rem 0;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 42, 67, .55);
        }

        .stats-section .container {
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
        }

        .stat-item .stat-num {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: .5rem;
        }

        .stat-item .stat-num sup {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--ht-amber);
            top: -.6em;
        }

        .stat-item .stat-label {
            font-size: .9rem;
            color: rgba(255, 255, 255, .7);
            letter-spacing: .04em;
        }

        .stat-item .stat-icon {
            font-size: 1.4rem;
            color: var(--ht-amber);
            margin-bottom: .5rem;
        }

        .stats-section .section-header h2 {
            color: #fff;
        }

        .stats-section .section-header p {
            color: rgba(255, 255, 255, .65);
        }

        /* ========== 服务流程 ========== */
        .flow-item {
            text-align: center;
            padding: 1.5rem;
            position: relative;
        }

        .flow-step {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--ht-accent), var(--ht-amber));
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            box-shadow: 0 6px 18px rgba(255, 90, 60, .25);
            position: relative;
            z-index: 2;
        }

        .flow-item h3 {
            font-size: 1.05rem;
            margin-bottom: .5rem;
        }

        .flow-item p {
            color: var(--ht-text-soft);
            font-size: .88rem;
            line-height: 1.65;
            max-width: 260px;
            margin: 0 auto;
        }

        .flow-arrow {
            position: absolute;
            top: 2.8rem;
            right: -1.2rem;
            color: var(--ht-border);
            font-size: 1.2rem;
            z-index: 1;
        }

        @media (max-width: 991.98px) {
            .flow-arrow {
                display: none;
            }
        }

        /* ========== 精选专题 ========== */
        .feature-section {
            background: var(--ht-bg);
        }

        .feature-card {
            border-radius: var(--ht-radius-lg);
            overflow: hidden;
            background: var(--ht-surface);
            box-shadow: var(--ht-shadow);
            height: 100%;
            border: 1px solid var(--ht-border);
            transition: var(--ht-transition);
        }

        .feature-card:hover {
            box-shadow: var(--ht-shadow-lg);
            transform: translateY(-4px);
        }

        .feature-card .feature-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .feature-card .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .feature-card:hover .feature-img img {
            transform: scale(1.05);
        }

        .feature-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
            background: var(--ht-accent);
            color: #fff;
            border-radius: 50px;
            font-size: .72rem;
            font-weight: 600;
            padding: .2rem .8rem;
            letter-spacing: .03em;
            box-shadow: 0 4px 12px rgba(255, 90, 60, .3);
        }

        .feature-card .feature-body {
            padding: 1.4rem 1.5rem 1.6rem;
        }

        .feature-card .feature-body h3 {
            font-size: 1.05rem;
            line-height: 1.45;
            margin-bottom: .5rem;
        }

        .feature-card .feature-body p {
            color: var(--ht-text-soft);
            font-size: .88rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ========== FAQ ========== */
        .faq-section {
            background: var(--ht-surface);
        }

        .accordion.custom-accordion {
            --bs-accordion-border-color: var(--ht-border);
            --bs-accordion-border-radius: var(--ht-radius);
            --bs-accordion-bg: var(--ht-surface);
            --bs-accordion-btn-color: var(--ht-ink);
            --bs-accordion-active-bg: var(--ht-bg);
            --bs-accordion-active-color: var(--ht-accent);
            --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(255, 90, 60, .15);
        }

        .accordion.custom-accordion .accordion-item {
            border: 1px solid var(--ht-border);
            border-radius: var(--ht-radius) !important;
            margin-bottom: .8rem;
            overflow: hidden;
        }

        .accordion.custom-accordion .accordion-button {
            font-weight: 600;
            font-size: .98rem;
            padding: 1.05rem 1.3rem;
            background: var(--ht-surface);
        }

        .accordion.custom-accordion .accordion-button:not(.collapsed) {
            background: var(--ht-bg);
            box-shadow: none;
        }

        .accordion.custom-accordion .accordion-button::after {
            opacity: .6;
        }

        .accordion.custom-accordion .accordion-body {
            font-size: .9rem;
            color: var(--ht-text-soft);
            line-height: 1.7;
            padding: 0 1.3rem 1.3rem;
        }

        /* ========== CTA ========== */
        .cta-section {
            border-radius: var(--ht-radius-xl);
            background: linear-gradient(135deg, var(--ht-accent) 0%, #ff7c4d 100%), url('/assets/images/backpic/back-3.png') center / cover no-repeat;
            position: relative;
            overflow: hidden;
            color: #fff;
            padding: 4rem 0;
            margin-bottom: 4rem;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 90, 60, .82);
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-section h2 {
            color: #fff;
            font-size: 2rem;
            margin-bottom: .8rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, .9);
            max-width: 620px;
            margin: 0 auto 1.8rem;
            font-size: 1.02rem;
        }

        .cta-section .btn {
            margin: 0 .4rem .6rem;
        }

        /* ========== Footer ========== */
        .site-footer {
            background: var(--ht-ink);
            color: rgba(255, 255, 255, .72);
            border-radius: var(--ht-radius-xl) var(--ht-radius-xl) 0 0;
            padding: 4rem 0 2rem;
            margin-top: 2rem;
        }

        .site-footer .footer-brand {
            font-size: 1.35rem;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: .5rem;
            margin-bottom: 1rem;
        }

        .site-footer .footer-brand .brand-mark {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--ht-accent), var(--ht-amber));
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #fff;
            font-weight: 800;
        }

        .site-footer .footer-desc {
            font-size: .88rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, .58);
            margin-bottom: 1.2rem;
        }

        .site-footer .footer-title {
            color: #fff;
            font-size: .98rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-links li {
            margin-bottom: .5rem;
        }

        .site-footer .footer-links a {
            color: rgba(255, 255, 255, .65);
            font-size: .88rem;
        }

        .site-footer .footer-links a:hover {
            color: var(--ht-amber);
            padding-left: 3px;
        }

        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 1.5rem;
            margin-top: 2.5rem;
            text-align: center;
            font-size: .82rem;
            color: rgba(255, 255, 255, .4);
        }

        .site-footer .footer-bottom a {
            color: rgba(255, 255, 255, .55);
        }

        .site-footer .footer-bottom a:hover {
            color: var(--ht-amber);
        }

        @media (max-width: 767.98px) {
            .site-footer {
                padding: 3rem 0 1.5rem;
            }
        }

        /* ========== 通用响应式 ========== */
        @media (max-width: 767.98px) {
            .section {
                padding: 3rem 0;
            }
            .section-header h2 {
                font-size: 1.7rem;
            }
            .hero-section {
                border-radius: var(--ht-radius-lg);
            }
            .ticker-bar {
                flex-wrap: wrap;
            }
            .ticker-track {
                white-space: normal;
                flex-wrap: wrap;
            }
            .stats-section {
                padding: 3rem 0;
            }
            .stat-item .stat-num {
                font-size: 2rem;
            }
        }

        @media (max-width: 520px) {
            .hero-actions .btn {
                width: 100%;
                margin-right: 0;
            }
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }
            .core-card {
                padding: 1.4rem 1rem;
            }
            .cta-section h2 {
                font-size: 1.5rem;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #0f1c2e;
            --primary-light: #16283f;
            --accent: #e63946;
            --accent-hover: #c92a35;
            --secondary: #f4a261;
            --bg-body: #f4f6fa;
            --bg-white: #ffffff;
            --bg-soft: #eef2f6;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 4px 24px rgba(15, 28, 46, 0.06);
            --shadow-lg: 0 14px 40px rgba(15, 28, 46, 0.10);
            --spacer: 76px;
            --transition: all 0.3s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-main);
            background-color: var(--bg-body);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent);
        }

        button,
        input {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
        }

        .section-padding {
            padding: var(--spacer) 0;
        }

        .section-title-wrap {
            margin-bottom: 36px;
        }

        .section-title-wrap .section-tag {
            display: inline-block;
            background: rgba(230, 57, 70, 0.08);
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 24px;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .section-title-wrap h2 {
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            margin-bottom: 8px;
        }

        .section-title-wrap p {
            color: var(--text-muted);
            max-width: 620px;
            margin-bottom: 0;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1b2f4a 100%);
            padding: 20px 0 0;
            position: relative;
            z-index: 100;
        }

        .custom-navbar {
            background: rgba(255, 255, 255, 0.96);
            border-radius: 18px;
            padding: 10px 22px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(6px);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--primary) !important;
        }

        .brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--accent), #ff6b6b);
            color: #fff;
            border-radius: 12px;
            font-size: 17px;
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.25);
        }

        .brand-text {
            letter-spacing: 0.5px;
        }

        .custom-navbar .navbar-toggler {
            border: none;
            color: var(--primary);
            font-size: 1.4rem;
            padding: 4px 10px;
            border-radius: 8px;
            background: var(--bg-soft);
        }

        .custom-navbar .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu .nav-link {
            display: inline-block;
            padding: 9px 20px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-main);
            border-radius: 10px;
            position: relative;
            transition: var(--transition);
        }

        .nav-menu .nav-link:hover {
            color: var(--accent);
            background: rgba(230, 57, 70, 0.06);
        }

        .nav-menu .nav-link.active {
            color: #fff;
            background: linear-gradient(135deg, var(--accent), #ff5257);
            box-shadow: 0 4px 14px rgba(230, 57, 70, 0.22);
        }

        .nav-cta .btn-accent {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            padding: 9px 22px;
            box-shadow: 0 4px 14px rgba(15, 28, 46, 0.18);
            transition: var(--transition);
        }

        .nav-cta .btn-accent:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(230, 57, 70, 0.28);
        }

        /* ===== Category Banner ===== */
        .category-banner {
            background: linear-gradient(135deg, rgba(15, 28, 46, 0.92), rgba(27, 47, 74, 0.72)), url('/assets/images/backpic/back-1.png') center/cover no-repeat;
            padding: 70px 0 76px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .category-banner::after {
            content: "";
            position: absolute;
            right: -80px;
            top: -80px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(230, 57, 70, 0.22);
            filter: blur(30px);
            z-index: 0;
        }

        .category-banner .container {
            position: relative;
            z-index: 2;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 18px;
        }

        .breadcrumb-custom a {
            color: rgba(255, 255, 255, 0.65);
        }

        .breadcrumb-custom a:hover {
            color: var(--secondary);
        }

        .breadcrumb-custom .sep {
            opacity: 0.5;
        }

        .category-banner h1 {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .category-banner h1 .banner-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            background: var(--accent);
            border-radius: 16px;
            font-size: 22px;
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
        }

        .category-banner .lead {
            font-size: 1.1rem;
            max-width: 680px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 30px;
        }

        .banner-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .banner-stats .stat-item {
            text-align: left;
        }

        .banner-stats .stat-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            line-height: 1.2;
        }

        .banner-stats .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 2px;
        }

        /* ===== Filter tags ===== */
        .news-filter {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }

        .filter-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .filter-tags .badge-tag {
            display: inline-block;
            padding: 7px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-soft);
            border-radius: 24px;
            cursor: pointer;
            border: 1px solid transparent;
            transition: var(--transition);
        }

        .filter-tags .badge-tag:hover {
            color: var(--accent);
            background: rgba(230, 57, 70, 0.06);
            border-color: rgba(230, 57, 70, 0.3);
        }

        .filter-tags .badge-tag.active {
            color: #fff;
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
        }

        .update-time {
            font-size: 14px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .update-time i {
            color: var(--accent);
        }

        .update-time strong {
            color: var(--text-main);
        }

        /* ===== Latest News Grid ===== */
        .latest-news {
            padding: var(--spacer) 0;
        }

        .news-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(230, 57, 70, 0.2);
        }

        .news-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            height: 180px;
        }

        .news-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-card:hover .card-img-wrap img {
            transform: scale(1.05);
        }

        .news-card .card-cat {
            position: absolute;
            left: 14px;
            top: 14px;
            background: rgba(230, 57, 70, 0.95);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            z-index: 2;
        }

        .news-card .card-body-pad {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.5;
            color: var(--text-main);
            margin-bottom: 10px;
        }

        .news-card h3 a:hover {
            color: var(--accent);
        }

        .news-card .card-desc {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 16px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-footer-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
            padding-top: 14px;
        }

        .card-footer-meta .meta-time i {
            margin-right: 4px;
        }

        .card-footer-meta .meta-view i {
            margin-right: 4px;
        }

        .news-card.large .card-img-wrap {
            height: 260px;
        }

        .news-card.large h3 {
            font-size: 1.4rem;
        }

        /* ===== Focus Block ===== */
        .focus-block {
            background: var(--bg-white);
            padding: var(--spacer) 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .focus-wrapper {
            border-radius: 24px;
            overflow: hidden;
            background: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .focus-wrapper .row {
            align-items: stretch;
        }

        .focus-img-col {
            min-height: 360px;
            position: relative;
            overflow: hidden;
        }

        .focus-img-col img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .focus-img-col::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 40%, rgba(15, 28, 46, 0.6));
            pointer-events: none;
        }

        .focus-content-col {
            padding: 48px 44px 40px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .focus-content-col .focus-tag {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 16px;
            align-self: flex-start;
        }

        .focus-content-col h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .focus-content-col p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 15px;
            margin-bottom: 20px;
        }

        .focus-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin: 16px 0 24px;
        }

        .focus-stats .f-item .f-num {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--secondary);
        }

        .focus-stats .f-item .f-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            display: block;
            margin-top: 2px;
        }

        .btn-light-solid {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--primary);
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            font-size: 15px;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .btn-light-solid:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(244, 162, 97, 0.3);
        }

        /* ===== Timeline ===== */
        .timeline-section {
            padding: var(--spacer) 0;
            background: var(--bg-body);
        }

        .timeline-list {
            position: relative;
            margin-top: 10px;
            padding-left: 0;
            list-style: none;
        }

        .timeline-list::before {
            content: "";
            position: absolute;
            left: 108px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--accent), var(--border));
        }

        .timeline-item {
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 28px;
            padding: 20px 0;
        }

        .timeline-item::after {
            content: "";
            flex-shrink: 0;
            width: 14px;
            height: 14px;
            margin-top: 8px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid #fff;
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
            position: relative;
            z-index: 2;
        }

        .timeline-item .tl-time {
            flex-shrink: 0;
            width: 80px;
            text-align: right;
            font-weight: 700;
            font-size: 15px;
            color: var(--primary);
            padding-top: 8px;
        }

        .timeline-item .tl-content {
            background: var(--bg-white);
            border-radius: 14px;
            padding: 18px 22px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            flex: 1;
            transition: var(--transition);
        }

        .timeline-item .tl-content:hover {
            border-color: rgba(230, 57, 70, 0.25);
            box-shadow: var(--shadow-lg);
        }

        .timeline-item .tl-content h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .timeline-item .tl-content p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        .timeline-item .tl-league {
            display: inline-block;
            background: var(--bg-soft);
            color: var(--text-muted);
            font-size: 12px;
            font-weight: 600;
            padding: 2px 12px;
            border-radius: 12px;
            margin-bottom: 8px;
        }

        /* ===== Ranking ===== */
        .ranking-section {
            padding: var(--spacer) 0;
            background: linear-gradient(135deg, var(--primary) 0%, #172b44 100%);
            color: #fff;
        }

        .ranking-section .section-title-wrap h2 {
            color: #fff;
        }

        .ranking-section .section-title-wrap p {
            color: rgba(255, 255, 255, 0.6);
        }

        .ranking-section .section-tag {
            background: rgba(230, 57, 70, 0.2);
            color: #ff8b90;
        }

        .ranking-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .ranking-item {
            display: flex;
            align-items: center;
            gap: 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 18px 22px;
            margin-bottom: 12px;
            transition: var(--transition);
        }

        .ranking-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(6px);
            border-color: rgba(230, 57, 70, 0.4);
        }

        .ranking-item .rank-no {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--secondary);
        }

        .ranking-item:first-child .rank-no {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
        }

        .ranking-item .rank-main {
            flex: 1;
            min-width: 0;
        }

        .ranking-item .rank-main h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ranking-item .rank-main span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .ranking-item .rank-heat {
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary);
            white-space: nowrap;
        }

        .ranking-item .rank-heat i {
            margin-right: 4px;
            color: var(--accent);
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: var(--spacer) 0;
            background: var(--bg-white);
        }

        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 14px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: var(--transition);
            background: var(--bg-white);
        }

        .faq-item:hover {
            border-color: rgba(230, 57, 70, 0.25);
            box-shadow: var(--shadow);
        }

        .faq-item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 24px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            list-style: none;
            color: var(--text-main);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary i {
            color: var(--accent);
            font-size: 18px;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .faq-item[open] summary i {
            transform: rotate(45deg);
        }

        .faq-item .faq-answer {
            padding: 0 24px 18px;
            color: var(--text-muted);
            font-size: 14px;
            border-top: 1px dashed var(--border);
            padding-top: 14px;
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 70px 0;
            background: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "\f005";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 200px;
            color: rgba(255, 255, 255, 0.08);
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            max-width: 720px;
        }

        .cta-inner h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .cta-inner p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 28px;
        }

        .cta-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 520px;
        }

        .cta-form .form-control {
            flex: 1;
            min-width: 200px;
            border-radius: 12px;
            border: none;
            padding: 14px 20px;
            font-size: 15px;
        }

        .cta-form .form-control:focus {
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
        }

        .cta-form .btn-subscribe {
            background: #fff;
            color: var(--accent);
            font-weight: 700;
            border: none;
            border-radius: 12px;
            padding: 14px 30px;
            transition: var(--transition);
        }

        .cta-form .btn-subscribe:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 0;
            font-size: 14px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-desc {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-title {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 28px;
            height: 3px;
            background: var(--accent);
            border-radius: 4px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 4px;
        }

        .footer-links a i {
            margin-right: 6px;
            font-size: 13px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== Responsive ===== */
        @media (max-width: 991.98px) {
            .custom-navbar {
                border-radius: 16px;
                padding: 12px 16px;
            }

            .nav-menu {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                margin-top: 14px;
                gap: 4px;
            }

            .nav-menu .nav-link {
                width: 100%;
                padding: 10px 16px;
            }

            .nav-cta {
                margin-top: 14px;
                width: 100%;
            }

            .nav-cta .btn-accent {
                width: 100%;
                justify-content: center;
            }

            .category-banner h1 {
                font-size: 2.3rem;
            }

            .focus-content-col {
                padding: 36px 30px;
            }

            .timeline-list::before {
                left: 10px;
            }

            .timeline-item {
                gap: 16px;
                padding-left: 34px;
            }

            .timeline-item .tl-time {
                width: auto;
                text-align: left;
                position: absolute;
                top: 20px;
                left: 16px;
                font-size: 12px;
                padding-top: 0;
            }

            .timeline-item::after {
                margin-top: 2px;
            }

            .timeline-item .tl-content {
                margin-top: 26px;
                width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            :root {
                --spacer: 56px;
            }

            .category-banner {
                padding: 50px 0 56px;
            }

            .category-banner h1 {
                font-size: 1.8rem;
            }

            .category-banner .lead {
                font-size: 1rem;
            }

            .banner-stats {
                gap: 20px;
            }

            .banner-stats .stat-num {
                font-size: 1.4rem;
            }

            .section-title-wrap h2 {
                font-size: 1.6rem;
            }

            .news-card .card-img-wrap {
                height: 200px;
            }

            .news-card.large .card-img-wrap {
                height: 200px;
            }

            .news-card.large h3 {
                font-size: 1.1rem;
            }

            .focus-wrapper .row {
                flex-direction: column;
            }

            .focus-img-col {
                min-height: 220px;
            }

            .focus-content-col {
                padding: 30px 24px;
            }

            .focus-content-col h2 {
                font-size: 1.4rem;
            }

            .cta-inner h2 {
                font-size: 1.6rem;
            }

            .ranking-item {
                flex-wrap: wrap;
                gap: 10px;
                padding: 14px 16px;
            }

            .ranking-item .rank-heat {
                margin-left: auto;
            }
        }

        @media (max-width: 520px) {
            .navbar-brand {
                font-size: 1.05rem;
            }

            .brand-mark {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }

            .brand-text {
                letter-spacing: 0;
            }

            .custom-navbar {
                padding: 10px 12px;
            }

            .category-banner h1 {
                font-size: 1.55rem;
                gap: 10px;
            }

            .category-banner h1 .banner-icon {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }

            .banner-stats {
                gap: 14px;
                flex-direction: column;
                gap: 12px;
            }

            .filter-tags {
                gap: 8px;
            }

            .filter-tags .badge-tag {
                padding: 5px 14px;
                font-size: 13px;
            }

            .update-time {
                width: 100%;
            }

            .faq-item summary {
                padding: 15px 16px;
                font-size: 14px;
            }

            .faq-item .faq-answer {
                padding: 0 16px 16px;
            }

            .cta-form .form-control,
            .cta-form .btn-subscribe {
                width: 100%;
                min-width: 0;
            }
        }

/* roulang page: article */
:root {
            --primary: #0b1f3a;
            --primary-dark: #081627;
            --primary-light: #16345e;
            --accent: #ff4d24;
            --accent-dark: #e63c12;
            --accent-soft: #fff1ec;
            --bg: #f4f6fb;
            --card: #ffffff;
            --text: #182536;
            --text-weak: #6b7a8d;
            --border: #e4e8f0;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 8px 28px rgba(11, 31, 58, .08);
            --shadow-hover: 0 18px 42px rgba(11, 31, 58, .16);
            --transition: .3s ease;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: inline-block;
            vertical-align: middle;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
        }

        button,
        input {
            border: none;
            background: none;
            font-family: inherit;
        }

        button:focus-visible,
        a:focus-visible {
            outline: 3px solid rgba(255, 77, 36, .4);
            outline-offset: 2px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: var(--primary);
            margin: 0 0 .5rem;
        }

        .container {
            max-width: 1280px;
        }

        .section-pad {
            padding: 5rem 0;
        }

        .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 2.8rem;
        }

        .section-tag {
            display: inline-block;
            background: var(--accent-soft);
            color: var(--accent);
            padding: .35rem 1.1rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: .8rem;
            letter-spacing: .5px;
            margin-bottom: .9rem;
        }

        .section-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--primary);
            margin-bottom: .8rem;
        }

        .section-desc {
            color: var(--text-weak);
            font-size: .98rem;
            line-height: 1.8;
        }

        .btn-accent {
            background: var(--accent);
            color: #fff;
            border-radius: 12px;
            font-weight: 700;
            border: 2px solid transparent;
            padding: .65rem 1.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .btn-accent:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 77, 36, .35);
        }

        .btn-outline-light {
            border: 2px solid rgba(255, 255, 255, .4);
            color: #fff;
            border-radius: 12px;
            font-weight: 600;
            padding: .6rem 1.4rem;
            transition: var(--transition);
        }

        .btn-outline-light:hover {
            background: #fff;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
        }

        .btn-outline-accent {
            border: 2px solid var(--accent);
            color: var(--accent);
            border-radius: 12px;
            font-weight: 700;
            padding: .55rem 1.3rem;
            display: inline-block;
            transition: var(--transition);
        }

        .btn-outline-accent:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 77, 36, .25);
        }

        .site-header {
            background: var(--primary);
            box-shadow: 0 4px 20px rgba(11, 31, 58, .35);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--accent);
        }

        .custom-navbar {
            padding: .8rem 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: .6rem;
            padding: 0;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            box-shadow: 0 4px 14px rgba(255, 77, 36, .45);
            flex-shrink: 0;
        }

        .brand-text {
            font-weight: 800;
            font-size: 1.25rem;
            color: #fff;
            letter-spacing: .5px;
            white-space: nowrap;
        }

        .navbar-toggler {
            border: none;
            color: #fff;
            font-size: 1.5rem;
            padding: .25rem .5rem;
        }

        .navbar-toggler:hover {
            color: var(--accent);
        }

        .custom-navbar .nav-menu {
            display: flex;
            align-items: center;
            gap: .3rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .custom-navbar .nav-menu .nav-link {
            color: rgba(255, 255, 255, .85);
            font-weight: 600;
            font-size: .95rem;
            padding: .5rem 1.1rem;
            border-radius: 10px;
            transition: var(--transition);
            display: block;
        }

        .custom-navbar .nav-menu .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, .12);
        }

        .custom-navbar .nav-menu .nav-link.active {
            color: #fff;
            background: var(--accent);
            box-shadow: 0 4px 12px rgba(255, 77, 36, .3);
        }

        .nav-cta .btn-accent {
            color: #fff;
            box-shadow: 0 4px 14px rgba(255, 77, 36, .35);
        }

        .nav-cta .btn-accent:hover {
            box-shadow: 0 8px 22px rgba(255, 77, 36, .45);
        }

        .article-hero {
            background: linear-gradient(135deg, rgba(11, 31, 58, .93), rgba(11, 31, 58, .80)), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            color: #fff;
            padding: 4.5rem 0 3.8rem;
            position: relative;
            border-bottom: 4px solid var(--accent);
        }

        .article-hero::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 1px;
        }

        .article-breadcrumb {
            display: flex;
            align-items: center;
            gap: .4rem;
            font-size: .88rem;
            color: rgba(255, 255, 255, .55);
            margin-bottom: 1.2rem;
            flex-wrap: wrap;
        }

        .article-breadcrumb a {
            color: rgba(255, 255, 255, .75);
        }

        .article-breadcrumb a:hover {
            color: #fff;
        }

        .article-breadcrumb .current {
            color: rgba(255, 255, 255, .95);
        }

        .hero-badge-group {
            display: flex;
            gap: .6rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .badge-cat {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: .35rem 1rem;
            border-radius: 999px;
            font-size: .78rem;
            font-weight: 700;
        }

        .badge-star {
            display: inline-flex;
            align-items: center;
            gap: .3rem;
            background: rgba(255, 255, 255, .14);
            color: #fff;
            padding: .35rem 1rem;
            border-radius: 999px;
            font-size: .78rem;
        }

        .article-hero h1 {
            color: #fff;
            font-size: clamp(1.75rem, 3.5vw, 2.7rem);
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: .9rem;
            max-width: 900px;
        }

        .article-hero .lead {
            color: rgba(255, 255, 255, .85);
            font-size: 1.05rem;
            line-height: 1.8;
            max-width: 860px;
            margin-bottom: 1.3rem;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.4rem;
            font-size: .85rem;
            color: rgba(255, 255, 255, .7);
            border-top: 1px solid rgba(255, 255, 255, .12);
            padding-top: 1.1rem;
            margin-top: .6rem;
        }

        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
        }

        .article-main {
            padding: 3rem 0 4rem;
        }

        .article-body {
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2.8rem;
        }

        .article-content-area {
            font-size: 1.02rem;
            line-height: 1.85;
            color: #2d3a4d;
        }

        .article-content-area h2,
        .article-content-area h3,
        .article-content-area h4 {
            margin-top: 2rem;
            color: var(--primary);
        }

        .article-content-area p {
            margin-bottom: 1.3rem;
        }

        .article-content-area img {
            border-radius: 12px;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
        }

        .article-content-area blockquote {
            border-left: 4px solid var(--accent);
            padding: 1rem 1.5rem;
            background: var(--accent-soft);
            border-radius: 8px;
            margin: 1.5rem 0;
            color: #4a5a6e;
        }

        .article-content-area ul,
        .article-content-area ol {
            padding-left: 1.3rem;
            margin-bottom: 1.3rem;
        }

        .article-content-area a {
            color: var(--accent);
            font-weight: 600;
        }

        .article-content-area a:hover {
            color: var(--accent-dark);
        }

        .article-tags-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: .5rem;
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px dashed var(--border);
        }

        .tag-link {
            display: inline-block;
            background: var(--accent-soft);
            color: var(--accent);
            padding: .3rem .8rem;
            border-radius: 999px;
            font-size: .8rem;
            font-weight: 600;
        }

        .tag-link:hover {
            background: var(--accent);
            color: #fff;
        }

        .not-found-box {
            background: var(--card);
            border-radius: var(--radius);
            padding: 4rem 2rem;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .not-found-box .icon-circle {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.4rem;
        }

        .not-found-box h2 {
            font-size: 1.6rem;
            margin-bottom: .6rem;
        }

        .not-found-box p {
            color: var(--text-weak);
            margin-bottom: 1.6rem;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
            position: sticky;
            top: 90px;
        }

        .sidebar-widget {
            background: var(--card);
            border-radius: var(--radius);
            padding: 1.6rem;
            box-shadow: var(--shadow);
            border: 1px solid #f0f2f7;
        }

        .widget-title {
            font-size: 1.02rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: .6rem;
            border-bottom: 2px solid var(--border);
            position: relative;
        }

        .widget-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 36px;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
        }

        .widget-cat-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .widget-cat-list li {
            margin-bottom: .7rem;
        }

        .widget-cat-list a {
            display: flex;
            align-items: center;
            gap: .7rem;
            padding: .6rem .8rem;
            border-radius: 10px;
            background: #f8f9fc;
            color: var(--text);
            font-weight: 600;
            font-size: .9rem;
            transition: var(--transition);
        }

        .widget-cat-list a:hover {
            background: var(--accent-soft);
            color: var(--accent);
            transform: translateX(4px);
        }

        .widget-cat-list a i {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: var(--accent);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .8rem;
        }

        .rank-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .rank-list li {
            display: flex;
            align-items: flex-start;
            gap: .7rem;
            padding: .65rem 0;
            border-bottom: 1px dashed var(--border);
        }

        .rank-list li:last-child {
            border-bottom: none;
        }

        .rank-num {
            width: 26px;
            height: 26px;
            border-radius: 8px;
            background: var(--accent-soft);
            color: var(--accent);
            font-weight: 800;
            font-size: .78rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .rank-num.top {
            background: var(--accent);
            color: #fff;
        }

        .rank-link {
            font-size: .88rem;
            font-weight: 600;
            color: var(--text);
            line-height: 1.45;
        }

        .rank-link:hover {
            color: var(--accent);
        }

        .widget-guide-card {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 12px;
            padding: 1.5rem;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .widget-guide-card::after {
            content: "\f0e7";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: -10px;
            bottom: -10px;
            font-size: 5rem;
            opacity: .08;
        }

        .widget-guide-card h5 {
            color: #fff;
            font-weight: 800;
            margin-bottom: .5rem;
        }

        .widget-guide-card p {
            color: rgba(255, 255, 255, .78);
            font-size: .85rem;
            margin-bottom: 1rem;
        }

        .widget-guide-card .btn-accent {
            padding: .5rem 1.1rem;
            font-size: .85rem;
        }

        .news-ticker {
            background: var(--primary);
            border-top: 3px solid var(--accent);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            padding: .9rem 0;
        }

        .ticker-wrap {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            overflow: hidden;
        }

        .ticker-label {
            background: var(--accent);
            color: #fff;
            padding: .4rem 1.1rem;
            border-radius: 999px;
            font-size: .8rem;
            font-weight: 700;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(255, 77, 36, .35);
        }

        .ticker-viewport {
            flex: 1;
            overflow: hidden;
        }

        .ticker-list {
            display: flex;
            gap: 2.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
            white-space: nowrap;
            animation: tickerMove 32s linear infinite;
        }

        .ticker-list li {
            color: rgba(255, 255, 255, .85);
            font-size: .86rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        .ticker-list li i {
            color: var(--accent);
            font-size: .65rem;
        }

        @keyframes tickerMove {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .related-section {
            padding: 4.5rem 0;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .related-card {
            background: var(--card);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #f0f2f7;
        }

        .related-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .related-card .thumb-wrap {
            position: relative;
            overflow: hidden;
        }

        .related-card .thumb-wrap img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .related-card:hover .thumb-wrap img {
            transform: scale(1.06);
        }

        .related-card .overlay-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent);
            color: #fff;
            font-size: .72rem;
            font-weight: 700;
            padding: .25rem .7rem;
            border-radius: 999px;
        }

        .related-card .card-body {
            padding: 1.2rem 1.3rem 1.4rem;
        }

        .related-card .card-title {
            font-size: .98rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.5;
            margin-bottom: .5rem;
        }

        .related-card .card-title a:hover {
            color: var(--accent);
        }

        .related-card .card-text {
            color: var(--text-weak);
            font-size: .85rem;
            margin-bottom: .9rem;
        }

        .related-card .card-meta {
            font-size: .78rem;
            color: #9aa7b8;
        }

        .related-card .card-meta i {
            color: var(--accent);
            margin-right: .2rem;
        }

        .empty-related {
            background: var(--card);
            border-radius: var(--radius);
            padding: 3rem 1.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px dashed var(--border);
        }

        .empty-related i {
            font-size: 2.4rem;
            color: #c0cad9;
            margin-bottom: .8rem;
        }

        .empty-related p {
            color: var(--text-weak);
            margin-bottom: 0;
        }

        .faq-section {
            padding: 4.5rem 0;
            background: #fff;
            border-top: 1px solid var(--border);
        }

        .faq-list {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }

        .faq-item {
            background: var(--bg);
            border-radius: 14px;
            padding: 1.4rem 1.6rem;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(255, 77, 36, .3);
            box-shadow: var(--shadow);
        }

        .faq-item h4 {
            font-size: 1.02rem;
            font-weight: 700;
            margin-bottom: .5rem;
            display: flex;
            align-items: center;
            gap: .6rem;
        }

        .faq-item h4 i {
            color: var(--accent);
        }

        .faq-item p {
            color: var(--text-weak);
            font-size: .9rem;
            margin: 0;
            line-height: 1.8;
        }

        .cta-panel {
            background: linear-gradient(135deg, var(--primary) 0%, #123a6b 100%);
            border-radius: 24px;
            padding: 3.2rem 3rem;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-panel::before {
            content: "";
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 77, 36, .2);
        }

        .cta-panel::after {
            content: "\f3cd";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            bottom: -20px;
            left: 30px;
            font-size: 7rem;
            opacity: .06;
            color: #fff;
        }

        .cta-panel h2 {
            color: #fff;
            font-size: clamp(1.6rem, 3vw, 2.1rem);
            font-weight: 800;
            margin-bottom: .8rem;
            position: relative;
            z-index: 1;
        }

        .cta-panel p {
            color: rgba(255, 255, 255, .82);
            max-width: 600px;
            margin-bottom: 1.6rem;
            position: relative;
            z-index: 1;
        }

        .cta-panel .cta-btns {
            display: flex;
            gap: .8rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .site-footer {
            background: #081627;
            color: rgba(255, 255, 255, .65);
            padding: 4rem 0 0;
            margin-top: 4.5rem;
            border-top: 4px solid var(--accent);
            font-size: .88rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: .6rem;
            font-weight: 800;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: .8rem;
        }

        .footer-desc {
            color: rgba(255, 255, 255, .5);
            font-size: .85rem;
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }

        .footer-title {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: .5rem;
        }

        .footer-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 24px;
            height: 2px;
            background: var(--accent);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: .55rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .55);
            font-size: .86rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: .4rem;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 1.3rem 0;
            margin-top: 2.5rem;
            text-align: center;
            color: rgba(255, 255, 255, .4);
            font-size: .8rem;
        }

        @media (max-width: 991.98px) {
            .custom-navbar .navbar-collapse {
                background: var(--primary-dark);
                border-radius: 16px;
                padding: 1.2rem;
                margin-top: .8rem;
                border: 1px solid rgba(255, 255, 255, .08);
            }

            .custom-navbar .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: .3rem;
            }

            .custom-navbar .nav-menu .nav-link {
                display: block;
                padding: .7rem 1.2rem;
            }

            .nav-cta {
                margin-top: .8rem;
                width: 100%;
            }

            .nav-cta .btn-accent {
                width: 100%;
            }

            .sidebar {
                position: static;
                margin-top: 1.5rem;
            }

            .article-body {
                padding: 1.8rem;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }

            .cta-panel {
                padding: 2.4rem 1.8rem;
            }
        }

        @media (max-width: 767.98px) {
            .section-pad {
                padding: 3.2rem 0;
            }

            .article-hero {
                padding: 3rem 0 2.5rem;
            }

            .article-hero h1 {
                font-size: 1.6rem;
            }

            .article-body {
                padding: 1.4rem;
                border-radius: 14px;
            }

            .article-tags-row {
                flex-direction: column;
                align-items: flex-start;
                gap: .4rem;
            }

            .news-ticker .ticker-label {
                font-size: .72rem;
                padding: .3rem .8rem;
            }

            .ticker-list li {
                font-size: .78rem;
            }

            .faq-item {
                padding: 1.1rem 1.2rem;
            }

            .cta-panel {
                border-radius: 18px;
            }
        }

        @media (max-width: 520px) {
            .brand-text {
                font-size: 1.05rem;
            }

            .brand-mark {
                width: 36px;
                height: 36px;
                font-size: 15px;
                border-radius: 10px;
            }

            .article-meta {
                gap: .8rem;
                font-size: .8rem;
            }

            .article-meta span {
                margin-right: .2rem;
            }

            .article-content-area {
                font-size: .96rem;
                line-height: 1.75;
            }

            .related-card .thumb-wrap img {
                height: 140px;
            }

            .cta-panel {
                padding: 2rem 1.3rem;
            }

            .cta-panel .cta-btns .btn-accent,
            .cta-panel .cta-btns .btn-outline-light {
                width: 100%;
            }
        }

/* roulang page: category2 */
/* ===== 设计变量 ===== */
        :root {
            --ht-primary: #0b1b3a;
            --ht-primary-light: #13294b;
            --ht-accent: #e8482c;
            --ht-accent-hover: #d13d22;
            --ht-gold: #f5b301;
            --ht-bg: #f3f6fb;
            --ht-surface: #ffffff;
            --ht-text: #152033;
            --ht-muted: #66748e;
            --ht-border: #e3e9f2;
            --ht-radius-lg: 22px;
            --ht-radius-md: 16px;
            --ht-radius-sm: 10px;
            --ht-shadow: 0 8px 28px rgba(11, 27, 58, .08);
            --ht-shadow-lg: 0 18px 48px rgba(11, 27, 58, .14);
            --ht-transition: all .25s ease;
        }

        /* ===== 基础 Reset ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--ht-text);
            background: var(--ht-bg);
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--ht-transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
        }

        /* ===== 顶部快讯条 ===== */
        .top-ticker {
            background: var(--ht-primary);
            color: rgba(255, 255, 255, .85);
            font-size: 13px;
            padding: 8px 0;
            letter-spacing: .3px;
        }

        .ticker-icon {
            color: var(--ht-gold);
            margin-right: 6px;
        }

        .ticker-text {
            display: inline-block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 78%;
            vertical-align: middle;
        }

        /* ===== 导航 ===== */
        .site-header {
            background: linear-gradient(180deg, #e8edf6 0%, rgba(243, 246, 251, 0) 100%);
            padding-bottom: 8px;
        }

        .custom-navbar {
            margin-top: 18px;
            background: var(--ht-surface);
            border-radius: var(--ht-radius-md);
            padding: 12px 20px !important;
            box-shadow: var(--ht-shadow);
            border: 1px solid rgba(255, 255, 255, .6);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 20px;
            color: var(--ht-primary) !important;
            letter-spacing: .5px;
        }

        .brand-mark {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--ht-accent), #ff8b5c);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(232, 72, 44, .3);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu .nav-link {
            padding: 8px 16px !important;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            color: var(--ht-text);
            background: transparent;
            border: 1px solid transparent;
            transition: var(--ht-transition);
        }

        .nav-menu .nav-link:hover {
            background: rgba(232, 72, 44, .08);
            color: var(--ht-accent);
        }

        .nav-menu .nav-link.active {
            background: var(--ht-primary);
            color: #fff;
            box-shadow: 0 6px 16px rgba(11, 27, 58, .2);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--ht-accent), #ff6b3d);
            color: #fff !important;
            border: none;
            font-weight: 700;
            border-radius: 999px;
            box-shadow: 0 6px 18px rgba(232, 72, 44, .3);
            transition: var(--ht-transition);
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(232, 72, 44, .4);
            color: #fff !important;
        }

        .btn-accent:focus,
        .btn-primary:focus,
        .btn-outline-light:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(232, 72, 44, .25);
        }

        .navbar-toggler {
            border: none;
            color: var(--ht-primary);
            font-size: 22px;
            padding: 4px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--ht-accent);
        }

        /* ===== 页面横幅 ===== */
        .page-banner {
            position: relative;
            background: url('/assets/images/backpic/back-2.png') center center / cover no-repeat;
            padding: 90px 0 100px;
            color: #fff;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, rgba(11, 27, 58, .92) 0%, rgba(11, 27, 58, .72) 55%, rgba(11, 27, 58, .35) 100%);
        }

        .page-banner .container {
            position: relative;
            z-index: 2;
        }

        .page-banner .breadcrumb {
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
            margin-bottom: 18px;
        }

        .page-banner .breadcrumb a {
            color: rgba(255, 255, 255, .8);
        }

        .page-banner .breadcrumb a:hover {
            color: var(--ht-gold);
        }

        .page-banner h1 {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 900;
            letter-spacing: 1px;
            margin-bottom: 14px;
            line-height: 1.2;
        }

        .page-banner .lead-text {
            max-width: 680px;
            font-size: 17px;
            color: rgba(255, 255, 255, .88);
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .banner-search {
            max-width: 460px;
        }

        .banner-search .input-group {
            background: rgba(255, 255, 255, .15);
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: 999px;
            padding: 5px 5px 5px 20px;
            backdrop-filter: blur(8px);
        }

        .banner-search .form-control {
            background: transparent;
            border: none;
            color: #fff;
            font-size: 15px;
            box-shadow: none;
        }

        .banner-search .form-control::placeholder {
            color: rgba(255, 255, 255, .65);
        }

        .banner-search .btn-search {
            background: var(--ht-accent);
            color: #fff;
            border: none;
            border-radius: 999px;
            padding: 8px 22px;
            font-weight: 600;
            transition: var(--ht-transition);
        }

        .banner-search .btn-search:hover {
            background: var(--ht-accent-hover);
        }

        .banner-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 30px;
            font-size: 14px;
            color: rgba(255, 255, 255, .8);
        }

        .banner-meta span {
            background: rgba(255, 255, 255, .12);
            border-radius: 999px;
            padding: 6px 16px;
            backdrop-filter: blur(4px);
        }

        /* ===== 内容区块通用 ===== */
        .section-block {
            padding: 80px 0;
        }

        .section-block-alt {
            background: var(--ht-surface);
        }

        .section-head {
            margin-bottom: 40px;
        }

        .section-head .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--ht-accent);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .section-head .eyebrow::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--ht-accent);
            border-radius: 2px;
        }

        .section-head h2 {
            font-size: clamp(26px, 3.4vw, 36px);
            font-weight: 800;
            color: var(--ht-primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .section-head .sub-text {
            color: var(--ht-muted);
            font-size: 16px;
            max-width: 680px;
        }

        /* ===== 指南分类卡片 ===== */
        .cat-card {
            background: var(--ht-surface);
            border-radius: var(--ht-radius-lg);
            overflow: hidden;
            border: 1px solid var(--ht-border);
            box-shadow: var(--ht-shadow);
            transition: var(--ht-transition);
            height: 100%;
        }

        .cat-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--ht-shadow-lg);
            border-color: rgba(232, 72, 44, .3);
        }

        .cat-card-img {
            height: 150px;
            background: center center / cover no-repeat;
            position: relative;
        }

        .cat-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(11, 27, 58, .4));
        }

        .cat-card-body {
            padding: 22px 20px 24px;
        }

        .cat-card-body .cat-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            background: rgba(232, 72, 44, .1);
            color: var(--ht-accent);
            border-radius: 999px;
            padding: 4px 12px;
            margin-bottom: 12px;
        }

        .cat-card-body h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--ht-primary);
        }

        .cat-card-body p {
            color: var(--ht-muted);
            font-size: 14px;
            margin-bottom: 14px;
            line-height: 1.7;
        }

        .cat-card-link {
            font-weight: 700;
            font-size: 14px;
            color: var(--ht-accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .cat-card-link i {
            transition: transform .2s ease;
        }

        .cat-card:hover .cat-card-link i {
            transform: translateX(4px);
        }

        /* ===== 精选推荐卡片 ===== */
        .feature-card {
            background: var(--ht-surface);
            border-radius: var(--ht-radius-lg);
            overflow: hidden;
            border: 1px solid var(--ht-border);
            box-shadow: var(--ht-shadow);
            transition: var(--ht-transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--ht-shadow-lg);
        }

        .feature-card .card-img-wrap {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .feature-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .feature-card:hover .card-img-wrap img {
            transform: scale(1.05);
        }

        .feature-card .card-img-wrap .time-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(11, 27, 58, .8);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 999px;
            backdrop-filter: blur(4px);
            z-index: 2;
        }

        .feature-card .card-body-custom {
            padding: 22px 22px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .feature-card .post-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: var(--ht-accent);
            background: rgba(232, 72, 44, .08);
            border-radius: 999px;
            padding: 4px 12px;
            margin-bottom: 12px;
            align-self: flex-start;
        }

        .feature-card h3 {
            font-size: 19px;
            font-weight: 800;
            line-height: 1.45;
            margin-bottom: 10px;
            color: var(--ht-primary);
        }

        .feature-card h3 a:hover {
            color: var(--ht-accent);
        }

        .feature-card p {
            font-size: 14px;
            color: var(--ht-muted);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 16px;
        }

        .feature-card .post-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--ht-muted);
            border-top: 1px solid var(--ht-border);
            padding-top: 16px;
        }

        .feature-card .post-meta i {
            color: var(--ht-accent);
        }

        /* ===== 流程步骤 ===== */
        .steps-section {
            background: var(--ht-primary);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .steps-section::after {
            content: '';
            position: absolute;
            right: -120px;
            top: -120px;
            width: 360px;
            height: 360px;
            background: rgba(255, 255, 255, .05);
            border-radius: 50%;
        }

        .steps-section .section-head h2 {
            color: #fff;
        }

        .steps-section .section-head .sub-text {
            color: rgba(255, 255, 255, .75);
        }

        .steps-section .section-head .eyebrow {
            color: var(--ht-gold);
        }

        .steps-section .section-head .eyebrow::before {
            background: var(--ht-gold);
        }

        .step-card {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: var(--ht-radius-lg);
            padding: 28px 24px;
            height: 100%;
            backdrop-filter: blur(6px);
            transition: var(--ht-transition);
            position: relative;
        }

        .step-card:hover {
            background: rgba(255, 255, 255, .14);
            transform: translateY(-4px);
        }

        .step-num {
            font-size: 42px;
            font-weight: 900;
            color: var(--ht-gold);
            line-height: 1;
            margin-bottom: 18px;
            display: block;
        }

        .step-card h3 {
            font-size: 19px;
            font-weight: 800;
            margin-bottom: 10px;
            color: #fff;
        }

        .step-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, .8);
            line-height: 1.7;
            margin-bottom: 0;
        }

        .step-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(245, 179, 1, .18);
            color: var(--ht-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 16px;
        }

        /* ===== 观赛贴士 ===== */
        .tip-card {
            background: var(--ht-surface);
            border-radius: var(--ht-radius-md);
            border: 1px solid var(--ht-border);
            padding: 24px;
            height: 100%;
            transition: var(--ht-transition);
        }

        .tip-card:hover {
            box-shadow: var(--ht-shadow);
            border-color: rgba(232, 72, 44, .3);
        }

        .tip-card .tip-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(232, 72, 44, .12), rgba(245, 179, 1, .12));
            color: var(--ht-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 16px;
        }

        .tip-card h3 {
            font-size: 17px;
            font-weight: 800;
            color: var(--ht-primary);
            margin-bottom: 8px;
        }

        .tip-card p {
            font-size: 14px;
            color: var(--ht-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ===== 最新指南 + 侧边栏 ===== */
        .guide-list-wrap {
            background: var(--ht-surface);
            border-radius: var(--ht-radius-lg);
            border: 1px solid var(--ht-border);
            box-shadow: var(--ht-shadow);
            padding: 28px;
        }

        .guide-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 18px 0;
            border-bottom: 1px solid var(--ht-border);
            transition: var(--ht-transition);
        }

        .guide-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .guide-item:first-child {
            padding-top: 0;
        }

        .guide-item:hover .guide-title {
            color: var(--ht-accent);
        }

        .guide-date {
            flex-shrink: 0;
            text-align: center;
            width: 58px;
            background: var(--ht-bg);
            border-radius: var(--ht-radius-sm);
            padding: 8px 4px;
            border: 1px solid var(--ht-border);
        }

        .guide-date .day {
            font-size: 20px;
            font-weight: 800;
            color: var(--ht-primary);
            line-height: 1.2;
            display: block;
        }

        .guide-date .month {
            font-size: 12px;
            color: var(--ht-muted);
            display: block;
        }

        .guide-info {
            flex: 1;
            min-width: 0;
        }

        .guide-cat {
            font-size: 12px;
            font-weight: 600;
            color: var(--ht-accent);
            margin-bottom: 2px;
        }

        .guide-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--ht-text);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: var(--ht-transition);
        }

        .sidebar-card {
            background: var(--ht-surface);
            border-radius: var(--ht-radius-lg);
            border: 1px solid var(--ht-border);
            box-shadow: var(--ht-shadow);
            padding: 26px;
            margin-bottom: 24px;
        }

        .sidebar-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--ht-primary);
            padding-bottom: 14px;
            border-bottom: 2px solid var(--ht-border);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sidebar-title i {
            color: var(--ht-accent);
        }

        .hot-rank-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hot-rank-list li {
            display: flex;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px dashed var(--ht-border);
            align-items: flex-start;
        }

        .hot-rank-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .hot-rank-list .rank-num {
            font-size: 16px;
            font-weight: 900;
            color: #c0c8d8;
            line-height: 1.4;
            min-width: 28px;
            font-style: italic;
        }

        .hot-rank-list li:nth-child(1) .rank-num,
        .hot-rank-list li:nth-child(2) .rank-num,
        .hot-rank-list li:nth-child(3) .rank-num {
            color: var(--ht-accent);
        }

        .hot-rank-list a {
            font-size: 14px;
            color: var(--ht-text);
            line-height: 1.5;
            font-weight: 600;
        }

        .hot-rank-list a:hover {
            color: var(--ht-accent);
        }

        .hot-rank-list .views {
            display: block;
            font-size: 12px;
            color: var(--ht-muted);
            font-weight: 400;
            margin-top: 2px;
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-cloud a {
            font-size: 13px;
            font-weight: 600;
            color: var(--ht-muted);
            background: var(--ht-bg);
            border: 1px solid var(--ht-border);
            border-radius: 999px;
            padding: 5px 14px;
            transition: var(--ht-transition);
        }

        .tag-cloud a:hover {
            color: #fff;
            background: var(--ht-accent);
            border-color: var(--ht-accent);
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--ht-surface);
        }

        .faq-accordion .accordion-item {
            border: 1px solid var(--ht-border);
            border-radius: var(--ht-radius-md) !important;
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(11, 27, 58, .04);
        }

        .faq-accordion .accordion-button {
            font-size: 16px;
            font-weight: 700;
            color: var(--ht-primary);
            background: var(--ht-surface);
            padding: 18px 22px;
            box-shadow: none;
        }

        .faq-accordion .accordion-button::after {
            background-size: 14px;
            filter: hue-rotate(140deg);
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgba(232, 72, 44, .04);
            color: var(--ht-accent);
        }

        .faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(232, 72, 44, .15);
        }

        .faq-accordion .accordion-body {
            font-size: 15px;
            color: var(--ht-muted);
            line-height: 1.8;
            padding: 18px 22px 22px;
            border-top: 1px solid var(--ht-border);
            background: #fbfcfe;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: url('/assets/images/backpic/back-3.png') center center / cover no-repeat;
            position: relative;
            padding: 80px 0;
            color: #fff;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(11, 27, 58, .92), rgba(232, 72, 44, .82));
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: clamp(26px, 3.6vw, 38px);
            font-weight: 900;
            margin-bottom: 14px;
        }

        .cta-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, .9);
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-section .btn-cta {
            background: var(--ht-gold);
            color: var(--ht-primary);
            font-weight: 800;
            border: none;
            border-radius: 999px;
            padding: 14px 36px;
            font-size: 16px;
            box-shadow: 0 10px 30px rgba(245, 179, 1, .35);
            transition: var(--ht-transition);
        }

        .cta-section .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(245, 179, 1, .45);
            background: #ffd54d;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--ht-primary);
            color: rgba(255, 255, 255, .8);
            padding: 70px 0 30px;
        }

        .footer-brand {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .65);
            margin-bottom: 18px;
            max-width: 340px;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background: var(--ht-accent);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .7);
            font-size: 14px;
            transition: var(--ht-transition);
        }

        .footer-links a:hover {
            color: var(--ht-gold);
            padding-left: 4px;
        }

        .footer-bottom {
            margin-top: 44px;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .12);
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, .5);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 991.98px) {
            .custom-navbar {
                padding: 12px 14px !important;
            }

            .nav-menu {
                flex-direction: column;
                align-items: stretch;
                gap: 6px;
                padding: 16px 0 8px;
            }

            .nav-menu .nav-link {
                text-align: center;
                border-radius: var(--ht-radius-sm);
            }

            .nav-cta {
                text-align: center;
                margin-top: 4px;
                margin-bottom: 10px;
            }

            .section-block {
                padding: 60px 0;
            }

            .page-banner {
                padding: 70px 0 80px;
            }

            .guide-list-wrap {
                padding: 20px;
            }
        }

        @media (max-width: 767.98px) {
            .section-block {
                padding: 48px 0;
            }

            .page-banner {
                padding: 56px 0 64px;
            }

            .page-banner h1 {
                font-size: 30px;
            }

            .banner-meta span {
                font-size: 12px;
                padding: 4px 12px;
            }

            .guide-item {
                flex-direction: row;
                gap: 14px;
            }

            .guide-date {
                width: 50px;
            }

            .step-card {
                padding: 22px 18px;
            }

            .cta-section {
                padding: 56px 0;
            }

            .section-head h2 {
                font-size: 24px;
            }
        }

        @media (max-width: 520px) {
            .custom-navbar {
                margin-top: 12px;
            }

            .navbar-brand {
                font-size: 17px;
            }

            .brand-mark {
                width: 32px;
                height: 32px;
                font-size: 14px;
                border-radius: 10px;
            }

            .page-banner {
                padding: 44px 0 52px;
            }

            .page-banner h1 {
                font-size: 26px;
            }

            .page-banner .lead-text {
                font-size: 15px;
            }

            .banner-search .btn-search {
                padding: 6px 14px;
                font-size: 14px;
            }

            .guide-list-wrap,
            .sidebar-card {
                padding: 18px;
            }

            .guide-title {
                font-size: 14px;
            }

            .guide-date .day {
                font-size: 17px;
            }

            .hot-rank-list a {
                font-size: 13px;
            }
        }

/* roulang page: category3 */
:root {
    --primary: #1e2b4f;
    --primary-light: #2a3d6e;
    --primary-dark: #141d36;
    --accent: #e8963d;
    --accent-dark: #d07e22;
    --accent-soft: #fdf3e7;
    --bg-body: #f4f6fb;
    --bg-soft: #eef1f7;
    --bg-deep: #121a30;
    --text-main: #1c2333;
    --text-muted: #67708a;
    --text-light: #9aa3bc;
    --border-color: #e3e8f2;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(30, 43, 79, .06);
    --shadow-md: 0 8px 28px rgba(30, 43, 79, .1);
    --shadow-lg: 0 18px 48px rgba(30, 43, 79, .14);
    --transition: .25s ease;
    --font-body: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

button,
input,
select {
    font-family: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
}

.section-pad {
    padding: 84px 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

.text-accent {
    color: var(--accent) !important;
}

.text-muted-2 {
    color: var(--text-muted);
}

.btn-accent {
    background: var(--accent);
    border: none;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all var(--transition);
}

.btn-accent:hover,
.btn-accent:focus {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 150, 61, .35);
}

.btn-outline-brand {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .7);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 26px;
    transition: all var(--transition);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.badge-tag {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 30px;
    padding: 5px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}

.badge-rank {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

/* Header & Nav */
.site-header {
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.custom-navbar {
    padding: 14px 0;
    min-height: 76px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
    padding: 0;
}

.navbar-brand:hover {
    color: #fff;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #ffb15e);
    color: var(--primary-dark);
    font-size: 17px;
    box-shadow: 0 4px 14px rgba(232, 150, 61, .4);
}

.brand-text {
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 12px;
    transition: all var(--transition);
    position: relative;
}

.nav-menu .nav-link i {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    transition: color var(--transition);
}

.nav-menu .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.nav-menu .nav-link.active {
    background: rgba(232, 150, 61, .16);
    color: #fff;
}

.nav-menu .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent);
}

.nav-cta .btn-accent {
    padding: 10px 22px;
    font-size: 14px;
}

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Banner */
.page-banner {
    background: linear-gradient(120deg, #0e1428 30%, #19264a 70%), var(--bg-deep);
    background-image: url('/assets/images/backpic/back-2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 76px 0 90px;
    color: #fff;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 20, 40, .92) 30%, rgba(14, 20, 40, .55) 70%, rgba(14, 20, 40, .68));
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    margin-bottom: 18px;
}

.banner-breadcrumb a {
    color: rgba(255, 255, 255, .65);
    transition: color var(--transition);
}

.banner-breadcrumb a:hover {
    color: var(--accent);
}

.banner-breadcrumb .separator {
    color: rgba(255, 255, 255, .35);
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.page-banner h1 .high-light {
    color: var(--accent);
}

.page-banner .banner-lead {
    font-size: 17px;
    max-width: 640px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    margin-bottom: 28px;
}

.banner-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.banner-stats .stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(6px);
    border-radius: 30px;
    padding: 15px 24px;
    transition: all var(--transition);
}

.banner-stats .stat-pill:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.banner-stats .stat-pill .num {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
}

.banner-stats .stat-pill .label {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.3;
}

/* Rank Overview Cards */
.overview-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, .9);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
    width: 0;
    transition: width .4s ease;
}

.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.overview-card:hover::before {
    width: 100%;
}

.overview-card .oc-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-dark);
}

.overview-card .oc-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.overview-card .oc-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 8px;
}

/* Section Title */
.section-head {
    margin-bottom: 44px;
}

.section-head .mtitle {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.35;
}

.section-head .msub {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 660px;
    line-height: 1.7;
}

.sec-line {
    width: 48px;
    height: 4px;
    border-radius: 4px;
    background: var(--accent);
    margin-bottom: 16px;
}

.section-foot-link {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.section-foot-link:hover {
    color: var(--accent-dark);
}

/* Rank List Card */
.rank-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    height: 100%;
    transition: box-shadow var(--transition);
    border: 1px solid #f0f3f9;
}

.rank-box:hover {
    box-shadow: var(--shadow-md);
}

.rank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.rank-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rank-header .league-badge {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 6px;
    border-radius: 10px;
    transition: background var(--transition);
}

.rank-item:hover {
    background: var(--bg-soft);
}

.rank-item .rank-no {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #eef1f7;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    line-height: 32px;
}

.rank-item:first-child .rank-no {
    background: var(--accent);
    color: #fff;
}

.rank-item:nth-child(2) .rank-no {
    background: #c0c8d8;
    color: #fff;
}

.rank-item:nth-child(3) .rank-no {
    background: #d8a56a;
    color: #fff;
}

.rank-item .rank-info {
    flex: 1;
    min-width: 0;
}

.rank-item .rank-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-item .rank-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.rank-item .rank-val {
    font-weight: 800;
    font-size: 18px;
    color: var(--primary);
    text-align: right;
    min-width: 56px;
}

.rank-item .rank-val small {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 2px;
}

.rank-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-soft);
    color: var(--text-muted);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.rank-tag i {
    color: var(--accent);
}

/* Video/Image Cards */
.img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}

.img-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.img-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.img-card:hover img {
    transform: scale(1.04);
}

.img-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(14, 20, 40, .78) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
}

.img-card .card-overlay h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 3px;
}

.img-card .card-overlay .meta {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

/* Article Cards */
.article-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.article-card .ac-img {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.article-card .ac-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.article-card:hover .ac-img img {
    transform: scale(1.06);
}

.article-card .ac-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(232, 150, 61, .92);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.article-card .ac-body {
    padding: 18px 18px 14px;
    flex: 1;
}

.article-card .ac-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition);
}

.article-card .ac-title a:hover {
    color: var(--accent-dark);
}

.article-card .ac-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.article-card .ac-meta {
    font-size: 12px;
    color: var(--text-light);
    border-top: 1px solid #f2f4fa;
    padding-top: 12px;
}

/* Hot Rank List */
.hot-rank-list {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    height: 100%;
}

.hot-rank-list .hr-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-soft);
}

.hot-rank-list .hr-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 10px;
    border-radius: 12px;
    transition: background var(--transition);
}

.hot-rank-list .hr-item:hover {
    background: var(--bg-soft);
}

.hot-rank-list .hr-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-light);
    width: 28px;
    text-align: center;
    font-style: italic;
    font-family: Georgia, serif;
}

.hot-rank-list .hr-item:nth-child(2) .hr-num {
    color: var(--accent);
}

.hot-rank-list .hr-item:nth-child(3) .hr-num {
    color: #b8c0d2;
}

.hot-rank-list .hr-item:nth-child(4) .hr-num {
    color: #d29b67;
}

.hot-rank-list .hr-title {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color var(--transition);
}

.hot-rank-list .hr-title:hover {
    color: var(--accent-dark);
}

.hot-rank-list .hr-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-dark);
    background: var(--accent-soft);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: var(--primary-dark);
    background-image: url('/assets/images/backpic/back-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 72px 0;
    color: #fff;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(20, 29, 54, .9), rgba(42, 61, 110, .72));
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 26px;
    line-height: 1.7;
}

/* FAQ */
.faq-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 22px 24px;
    margin-bottom: 14px;
    transition: box-shadow var(--transition);
}

.faq-card:hover {
    box-shadow: var(--shadow-md);
}

.faq-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
}

.faq-card h4 i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 5px;
}

.faq-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 24px;
}

/* Footer */
.site-footer {
    background: var(--bg-deep);
    color: rgba(255, 255, 255, .65);
    padding: 64px 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 320px;
    color: rgba(255, 255, 255, .55);
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
    margin-top: 42px;
    text-align: center;
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .custom-navbar {
        padding: 12px 0;
    }

    .nav-menu {
        margin-top: 14px;
        align-items: stretch;
    }

    .nav-menu .nav-link {
        display: flex;
        justify-content: flex-start;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .nav-menu .nav-link.active::after {
        left: 12px;
        transform: none;
        width: 3px;
        height: 20px;
        bottom: 50%;
        margin-bottom: -10px;
    }

    .nav-cta {
        margin-top: 10px;
        margin-bottom: 14px;
        text-align: center;
    }

    .page-banner {
        padding: 56px 0 64px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .section-pad {
        padding: 60px 0;
    }

    .section-head .mtitle {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-brand {
        font-size: 17px;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .page-banner {
        padding: 44px 0 52px;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .page-banner .banner-lead {
        font-size: 14px;
    }

    .banner-stats .stat-pill {
        padding: 10px 16px;
    }

    .banner-stats .stat-pill .num {
        font-size: 20px;
    }

    .section-pad {
        padding: 48px 0;
    }

    .section-head .mtitle {
        font-size: 22px;
    }

    .overview-card {
        padding: 22px 16px;
    }

    .overview-card .oc-num {
        font-size: 28px;
    }

    .rank-box,
    .hot-rank-list {
        padding: 18px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .faq-card {
        padding: 18px 16px;
    }

    .site-footer {
        padding-top: 44px;
    }
}

@media (max-width: 520px) {
    .page-banner h1 {
        font-size: 23px;
    }

    .banner-stats {
        flex-direction: column;
    }

    .banner-stats .stat-pill {
        width: 100%;
    }

    .rank-item .rank-sub {
        display: none;
    }

    .rank-item .rank-val {
        min-width: 48px;
        font-size: 15px;
    }

    .img-card img {
        height: 180px;
    }
}
