/* roulang page: index */
:root {
            --body-bg: #F5F1EA;
            --card-bg: #FFFFFF;
            --ink: #231C18;
            --muted: #6F625A;
            --line: #E3D9CC;
            --primary: #E94F22;
            --primary-hover: #C23C10;
            --primary-soft: #FCE8DE;
            --gold: #C9912B;
            --green: #18805C;
            --deep: #171310;
            --deep-soft: #241D18;
            --radius-card: 14px;
            --radius-img: 12px;
            --radius-btn: 50rem;
            --shadow-card: 0 8px 24px rgba(35, 20, 10, 0.08);
            --shadow-hover: 0 16px 36px rgba(35, 20, 10, 0.14);
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", system-ui, -apple-system, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            margin: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--ink);
            background: var(--body-bg);
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--ink);
            font-weight: 700;
            line-height: 1.25;
        }

        h1 {
            font-size: clamp(32px, 5vw, 54px);
        }
        h2 {
            font-size: clamp(24px, 3vw, 34px);
        }
        h3 {
            font-size: 20px;
        }

        p {
            margin: 0 0 1em;
        }

        a {
            color: var(--primary);
            text-decoration: none;
        }

        a:hover {
            color: var(--primary-hover);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1200px;
        }

        .hero-backdrop {
            background-color: var(--deep) !important;
        }

        .wrapper {
            overflow: hidden;
        }

        section,
        footer {
            position: relative;
        }

        .section {
            padding: 96px 0;
        }

        .section-sm {
            padding: 56px 0;
        }

        .section-head {
            margin-bottom: 44px;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .section-eyebrow::before {
            content: "";
            width: 26px;
            height: 3px;
            border-radius: 4px;
            background: var(--gold);
        }

        .section-title {
            margin-bottom: 8px;
        }

        .section-sub {
            color: var(--muted);
            max-width: 640px;
            margin-bottom: 0;
        }

        .section-title + .section-sub {
            margin-top: 12px;
        }

        .mt-88 {
            margin-top: -88px;
        }

        .bg-light {
            --bs-bg-opacity: 1;
            background-color: var(--card-bg) !important;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-btn);
            font-weight: 600;
            line-height: 1.5;
            padding: 0 28px;
            min-height: 46px;
            border: 1px solid transparent;
            transition: all 0.25s ease;
            letter-spacing: .02em;
        }

        .btn-lg {
            min-height: 56px;
            padding: 0 36px;
            font-size: 17px;
        }

        .btn-primary {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(233, 79, 34, .25);
        }

        .btn-gold-line {
            background: transparent;
            border-color: rgba(201, 145, 43, .55);
            color: #E9C88E;
        }

        .btn-gold-line:hover {
            background: rgba(201, 145, 43, .14);
            border-color: var(--gold);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-white-line {
            background: transparent;
            border-color: rgba(255, 255, 255, .45);
            color: rgba(255, 255, 255, .92);
        }

        .btn-white-line:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn:focus-visible,
        .form-control:focus-visible,
        .form-control:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(233, 79, 34, .18);
            border-color: var(--primary);
        }

        .pill {
            display: inline-flex;
            align-items: center;
            background: var(--primary-soft);
            color: #B3370C;
            font-size: 12px;
            font-weight: 600;
            border-radius: 999px;
            padding: 3px 12px;
            letter-spacing: .04em;
            line-height: 1.5;
            border: 1px solid rgba(233, 79, 34, .12);
        }

        .pill-gold {
            background: rgba(201, 145, 43, .12);
            color: #89601B;
            border-color: rgba(201, 145, 43, .16);
        }

        .pill-green {
            background: rgba(24, 128, 92, .1);
            color: #116344;
            border-color: rgba(24, 128, 92, .16);
        }

        .avatar-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green);
            margin-right: 6px;
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 78px;
            background: rgba(23, 19, 16, 0.96);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 78px;
            position: relative;
            z-index: 2;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #F4E9DD;
            line-height: 1.1;
            min-width: 0;
        }

        .brand-logo:hover {
            color: #fff;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            flex: none;
            border-radius: 11px;
            background: linear-gradient(135deg, var(--primary), #c3300a);
            color: #fff;
            font-size: 23px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(233, 79, 34, .24);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-text strong {
            font-size: 17px;
            letter-spacing: .02em;
            color: #fff;
            font-weight: 800;
        }

        .brand-text small {
            font-size: 12px;
            color: #B7A69B;
            letter-spacing: .08em;
            margin-top: 2px;
        }

        .site-nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .site-nav a.nav-link {
            display: inline-flex;
            align-items: center;
            padding: 9px 14px;
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, .76);
            border-radius: 8px;
            position: relative;
            transition: color .2s;
        }

        .site-nav a.nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, .04);
        }

        .site-nav a.nav-link.nav-active {
            color: var(--primary);
            font-weight: 600;
        }

        .site-nav a.nav-link.nav-active::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 3px;
            border-radius: 4px;
            background: var(--gold);
        }

        .header-cta-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 16px;
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: #fff;
            min-height: 40px;
            padding: 0 20px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            transition: background .2s, transform .2s;
            white-space: nowrap;
        }

        .header-cta:hover {
            background: var(--primary-hover);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: 10px;
            padding: 0;
        }

        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: #eee;
            margin: 2.5px 0;
            border-radius: 2px;
            transition: transform .2s, opacity .2s;
        }

        .hero {
            position: relative;
            min-height: 820px;
            display: flex;
            align-items: center;
            padding: 170px 0 60px;
            background: var(--deep);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, rgba(23, 19, 16, .62) 8%, rgba(23, 19, 16, .8) 48%, rgba(23, 19, 16, .92) 100%), linear-gradient(to top, rgba(23, 19, 16, 0.88), transparent 52%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: #fff;
            width: 100%;
        }

        .hero-inner {
            max-width: 760px;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(201, 145, 43, .45);
            background: rgba(23, 19, 16, .35);
            color: #DFC491;
            font-size: 13px;
            border-radius: 999px;
            padding: 5px 14px;
            letter-spacing: .05em;
            margin-bottom: 26px;
            backdrop-filter: none;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 0 rgba(233, 79, 34, .5);
            animation: livePulse 1.6s infinite;
        }

        @keyframes livePulse {
            0% {
                box-shadow: 0 0 0 0 rgba(233, 79, 34, .45);
            }
            70% {
                box-shadow: 0 0 0 7px rgba(233, 79, 34, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(233, 79, 34, 0);
            }
        }

        .hero-title {
            color: #fff;
            font-weight: 800;
            margin-bottom: 22px;
            letter-spacing: .01em;
            text-wrap: balance;
        }

        .hero-lead {
            font-size: 17px;
            color: rgba(255, 255, 255, .8);
            max-width: 660px;
            margin-bottom: 34px;
        }

        .hero-countdown {
            margin-bottom: 28px;
        }

        .countdown-label {
            font-size: 14px;
            color: #C6B6AA;
            margin-bottom: 12px;
            letter-spacing: .08em;
        }

        .countdown-grid {
            display: flex;
            gap: 12px;
        }

        .count-cell {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 12px;
            min-width: 72px;
            padding: 12px 10px 10px;
            text-align: center;
        }

        .count-cell strong {
            display: block;
            font-size: 30px;
            line-height: 1.05;
            color: #fff;
            font-weight: 700;
            font-family: "PingFang SC", "Helvetica Neue", sans-serif;
            letter-spacing: .02em;
        }

        .count-cell span {
            display: block;
            font-size: 12px;
            color: #A9998E;
            margin-top: 5px;
        }

        .hero-points {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            list-style: none;
            margin: 0 0 28px;
            padding: 0;
        }

        .hero-points li {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: rgba(255, 255, 255, .82);
        }

        .hero-points li::before {
            content: "";
            width: 18px;
            height: 2px;
            border-radius: 3px;
            background: var(--gold);
            flex: none;
        }

        .hero-form-area {
            margin-bottom: 26px;
        }

        .form-label-text {
            font-size: 14px;
            color: #D9CBC1;
            margin-bottom: 10px;
            display: block;
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            max-width: 560px;
        }

        .subscribe-form input {
            flex: 1 1 220px;
            height: 50px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .2);
            background: #FFFDF8;
            color: var(--ink);
            padding: 0 20px;
            font-size: 14px;
        }

        .subscribe-form input::placeholder {
            color: #A39A92;
        }

        .subscribe-form input:focus {
            border-color: var(--primary);
            outline: none;
        }

        .form-note {
            font-size: 13px;
            color: rgba(255, 255, 255, .45);
            margin-top: 8px;
        }

        .subscribe-success {
            display: none;
            font-size: 14px;
            color: #B8E6CF;
            background: rgba(24, 128, 92, .15);
            border: 1px solid rgba(24, 128, 92, .3);
            padding: 10px 18px;
            border-radius: 999px;
            max-width: 560px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .hero-actions .btn {
            min-height: 56px;
            padding: 0 32px;
            font-size: 17px;
        }

        .quickbar {
            position: relative;
            z-index: 4;
            margin-top: 52px;
            border-top: 1px solid rgba(255, 255, 255, .12);
            padding-top: 26px;
        }

        .quickbar-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
        }

        .quickbar-list a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, .78);
            font-size: 15px;
            padding: 6px 14px;
            border-radius: 8px;
            transition: color .2s, background .2s;
        }

        .quickbar-list a::before {
            content: "→";
            color: var(--gold);
            font-size: 18px;
            line-height: 1;
        }

        .quickbar-list a:hover {
            color: #fff;
            background: rgba(255, 255, 255, .05);
        }

        .section-steps {
            padding-bottom: 96px;
        }

        .steps-wrap {
            margin-top: 52px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .step-card {
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 36px 30px 28px;
            position: relative;
            transition: transform .24s, box-shadow .24s;
        }

        .step-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .step-no {
            font-size: 14px;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: .12em;
            margin-bottom: 22px;
            display: block;
        }

        .step-no::after {
            content: "";
            width: 42px;
            height: 2px;
            background: var(--line);
            display: block;
            margin-top: 10px;
        }

        .step-card h3 {
            font-size: 19px;
            margin-bottom: 10px;
        }

        .step-card p {
            color: var(--muted);
            font-size: 15px;
            margin: 0;
        }

        .section-news {
            background: var(--body-bg);
            padding-top: 30px;
        }

        .featured-news {
            background: var(--card-bg);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            margin-bottom: 28px;
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
            transition: box-shadow .25s, transform .25s;
        }

        .featured-news:hover {
            box-shadow: var(--shadow-hover);
        }

        .featured-image {
            position: relative;
            display: block;
            min-height: 310px;
        }

        .featured-image img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 38px 40px;
        }

        .featured-body .pill {
            margin-bottom: 14px;
        }

        .featured-body h3 {
            font-size: 26px;
            line-height: 1.35;
            margin-bottom: 12px;
        }

        .featured-body h3 a {
            color: var(--ink);
        }

        .featured-body h3 a:hover {
            color: var(--primary);
        }

        .featured-body .excerpt {
            color: var(--muted);
            font-size: 15px;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .meta-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
            flex-wrap: wrap;
            margin-top: auto;
        }

        .meta-row time {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .meta-row .read-link {
            font-weight: 600;
            color: var(--primary);
        }

        .news-grid {
            margin-top: 0;
        }

        .news-card {
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform .24s, box-shadow .24s;
        }

        .news-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .news-card .card-cover {
            display: block;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #e9e0d5;
            position: relative;
        }

        .news-card .card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .35s ease;
        }

        .news-card:hover .card-cover img {
            transform: scale(1.04);
        }

        .news-card-body {
            padding: 22px 24px 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .news-card-body .pill {
            align-self: flex-start;
            margin-bottom: 12px;
        }

        .news-card-body h3 {
            font-size: 19px;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .news-card-body h3 a {
            color: var(--ink);
            transition: color .2s;
        }

        .news-card-body h3 a:hover {
            color: var(--primary);
        }

        .news-card-body p {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-body .meta-row {
            margin-top: auto;
        }

        .empty-status {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            background: var(--card-bg);
            border: 1px dashed var(--line);
            border-radius: var(--radius-card);
            padding: 68px 20px;
            color: var(--muted);
            font-size: 15px;
        }

        .empty-status::before {
            content: "";
            width: 54px;
            height: 54px;
            border-radius: 50%;
            border: 2px solid var(--line);
            background: linear-gradient(90deg, transparent 45%, var(--line) 45% 55%, transparent 55%);
            display: block;
            opacity: .8;
        }

        .section-status {
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .status-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--card-bg);
            box-shadow: var(--shadow-card);
        }

        .status-item {
            padding: 30px 24px 28px;
            border-right: 1px solid var(--line);
        }

        .status-item:last-child {
            border-right: 0;
        }

        .status-item .status-label {
            font-size: 13px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }

        .status-label-hint::before {
            content: "";
            width: 7px;
            height: 7px;
            background: var(--green);
            border-radius: 50%;
            display: inline-block;
        }

        .status-item .status-value {
            font-size: 21px;
            font-weight: 800;
            color: var(--ink);
            line-height: 1.3;
        }

        .status-note {
            margin-top: 20px;
            font-size: 13px;
            color: var(--muted);
        }

        .sec-guide {
            background: var(--card-bg);
        }

        .guide-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .guide-article h2 {
            margin-bottom: 18px;
        }

        .guide-article > p {
            color: var(--muted);
        }

        .guideline-list {
            list-style: none;
            margin: 24px 0 0;
            padding: 0;
        }

        .guideline-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            font-size: 15px;
            color: var(--ink);
            padding: 12px 0;
            border-bottom: 1px solid var(--line);
        }

        .guideline-list li:last-child {
            border-bottom: 0;
        }

        .guideline-list li::before {
            content: "✓";
            flex: none;
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(24, 128, 92, .1);
            color: var(--green);
            border-radius: 50%;
            font-size: 13px;
            margin-top: 3px;
        }

        .guide-image {
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            margin-bottom: 22px;
        }

        .guide-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .guide-aside {
            background: var(--primary-soft);
            border-radius: var(--radius-card);
            padding: 22px 24px;
            font-size: 14px;
            color: var(--ink);
            border: 1px solid rgba(233, 79, 34, .1);
        }

        .guide-aside strong {
            color: var(--primary-hover);
            display: block;
            margin-bottom: 4px;
        }

        .faq-panel h3 {
            margin-bottom: 12px;
        }

        .accordion-item {
            background-color: transparent;
            border: 0;
            border-bottom: 1px solid var(--line);
        }

        .accordion-button {
            background-color: transparent;
            color: var(--ink);
            box-shadow: none;
            font-size: 16px;
            font-weight: 600;
            padding: 18px 42px 18px 16px;
            position: relative;
            border-radius: 0;
            transition: color .2s;
        }

        .accordion-button:not(.collapsed) {
            color: var(--primary);
            background-color: transparent;
            box-shadow: none;
        }

        .accordion-button:hover {
            color: var(--primary-hover);
            background: rgba(233, 79, 34, .03);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .accordion-button::after {
            width: 18px;
            height: 18px;
            background-size: contain;
            font-weight: 300;
            transition: transform .28s ease;
            filter: invert(48%) sepia(55%) saturate(1500%) hue-rotate(350deg) brightness(0.9);
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(135deg);
            filter: invert(33%) sepia(67%) saturate(2814%) hue-rotate(350deg) brightness(0.96);
        }

        .accordion-body {
            padding: 0 16px 18px;
            color: var(--muted);
            font-size: 14px;
        }

        .cta-banner {
            background: var(--deep);
            border-radius: 24px;
            overflow: hidden;
            padding: 96px 0;
            margin-top: 0;
            margin-bottom: 0;
        }

        .cta-inner {
            background-size: cover;
            background-position: center;
            border-radius: 24px;
            position: relative;
            padding: 88px 0;
        }

        .cta-overlay {
            position: absolute;
            inset: 0;
            background: rgba(23, 19, 16, .86);
            border-radius: 24px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            max-width: 720px;
            margin: 0 auto;
        }

        .cta-content h2 {
            color: #fff;
            margin-bottom: 14px;
        }

        .cta-content p {
            color: rgba(255, 255, 255, .78);
            margin-bottom: 30px;
        }

        .cta-content .btn {
            min-width: 200px;
        }

        .site-footer {
            background: var(--deep);
            color: #A9998E;
            padding-top: 84px;
            padding-bottom: 30px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr .8fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }

        .footer-brand .brand-logo {
            margin-bottom: 16px;
        }

        .footer-desc {
            font-size: 14px;
            color: #A9998E;
            max-width: 320px;
            margin: 0;
        }

        .footer-title {
            color: #EDE0D5;
            font-size: 15px;
            margin-bottom: 18px;
            font-weight: 700;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #A9998E;
            font-size: 14px;
            transition: color .2s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 26px;
            font-size: 12px;
            color: #71675F;
        }

        .copyright a {
            color: #71675F;
        }


        @media (max-width: 1199.98px) {
            .featured-body {
                padding: 30px 28px;
            }
            .featured-body h3 {
                font-size: 23px;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding: 70px 0;
            }
            .site-nav {
                display: none;
                position: absolute;
                top: 78px;
                left: 0;
                right: 0;
                background: var(--deep);
                border-top: 1px solid rgba(255, 255, 255, .06);
                padding: 18px 24px 26px;
                box-shadow: 0 40px 60px rgba(0, 0, 0, 0.4);
            }
            .site-nav.nav-open {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
                margin-bottom: 16px;
            }
            .site-nav a.nav-link {
                font-size: 17px;
                padding: 12px 10px;
                width: 100%;
            }
            .site-nav a.nav-link.nav-active::after {
                left: 10px;
                right: auto;
                width: 28px;
            }
            .header-cta-wrap {
                margin-left: 0;
            }
            .nav-toggle {
                display: inline-flex;
            }
            .featured-news {
                grid-template-columns: 1fr;
            }
            .featured-image {
                min-height: 220px;
            }
            .featured-image img {
                position: relative;
                height: 100%;
                min-height: 220px;
            }
            .steps-wrap {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .status-grid {
                grid-template-columns: 1fr 1fr;
            }
            .status-item {
                border-bottom: 1px solid var(--line);
            }
            .status-item:nth-child(2n) {
                border-right: 0;
            }
            .status-item:nth-child(3),
            .status-item:nth-child(4) {
                border-bottom: 0;
            }
            .guide-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
            .hero {
                min-height: auto;
                padding: 140px 0 50px;
            }
            .hero-lead {
                font-size: 16px;
            }
            .hero-actions .btn {
                width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 56px 0;
            }
            .header-cta {
                display: none;
            }
            .hero-title {
                font-size: 38px;
            }
            .countdown-grid {
                gap: 8px;
            }
            .count-cell {
                min-width: 64px;
                padding: 10px 6px;
            }
            .count-cell strong {
                font-size: 24px;
            }
            .hero-points {
                gap: 8px 12px;
            }
            .hero-points li {
                font-size: 13px;
            }
            .featured-body {
                padding: 26px 22px;
            }
            .featured-body h3 {
                font-size: 21px;
            }
            .news-card-body {
                padding: 20px 18px 16px;
            }
            .status-grid {
                grid-template-columns: 1fr;
            }
            .status-item {
                border-bottom: 1px solid var(--line);
                border-right: 0;
            }
            .status-item:last-child {
                border-bottom: 0;
            }
            .site-footer {
                padding-top: 60px;
            }
            .footer-main {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .quickbar-list {
                justify-content: flex-start;
            }
            .quickbar-list li {
                width: calc(50% - 5px);
            }
            .quickbar-list a {
                width: 100%;
            }
            .guide-image img {
                height: 180px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-inner {
                padding-top: 0;
            }
            .brand-mark {
                width: 38px;
                height: 38px;
                font-size: 20px;
            }
            .brand-text strong {
                font-size: 15px;
            }
            .brand-text small {
                font-size: 11px;
            }
            .hero-title {
                font-size: 32px;
            }
            .countdown-grid {
                flex-wrap: wrap;
            }
            .count-cell {
                flex: 1 1 42%;
                min-width: 0;
            }
            .subscribe-form .btn {
                width: 100%;
            }
            .hero-actions .btn {
                min-height: 50px;
                font-size: 16px;
            }
            .quickbar-list li {
                width: 100%;
            }
            .cta-banner,
            .cta-inner {
                padding: 60px 0;
            }
            .featured-body {
                padding: 24px 18px;
            }
            .featured-image {
                min-height: 180px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: .01ms !important;
                transition-duration: .01ms !important;
            }
        }

/* roulang page: category1 */
:root {
            --body-bg: #F5F1EA;
            --card-bg: #FFFFFF;
            --ink: #231C18;
            --muted: #6F625A;
            --line: #E3D9CC;
            --primary: #E94F22;
            --primary-hover: #C23C10;
            --primary-soft: #FCE8DE;
            --gold: #C9912B;
            --green: #18805C;
            --deep: #171310;
            --deep-soft: #241E18;
            --white-warm: #FAF6F0;
            --radius: 14px;
            --radius-lg: 20px;
            --shadow: 0 8px 24px rgba(35, 20, 10, .08);
            --shadow-hover: 0 16px 36px rgba(35, 20, 10, .14);
            --container: 1200px;
            --nav-h: 78px;
            --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", system-ui, sans-serif;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: var(--font);
            background: var(--body-bg);
            color: var(--ink);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }
        body.menu-open {
            overflow: hidden;
        }
        img {
            max-width: 100%;
            display: inline-block;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .25s ease;
        }
        a:hover {
            color: var(--primary-hover);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0 0 .5em;
            font-weight: 800;
            line-height: 1.25;
            color: var(--ink);
        }
        p {
            margin: 0 0 1em;
        }
        ul,
        ol {
            margin: 0;
            padding: 0;
        }
        button {
            border: 0;
        }
        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        .btn-entry {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 1px solid var(--primary);
            background: var(--primary);
            color: #fff;
            height: 50px;
            padding: 0 28px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 16px;
            line-height: 1;
            cursor: pointer;
            transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
        }
        .btn-entry:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(233, 79, 34, .28);
        }
        .btn-entry:focus-visible {
            outline: 3px solid rgba(233, 79, 34, .32);
            outline-offset: 3px;
        }
        .btn-entry.btn-lg {
            height: 56px;
            padding: 0 36px;
            font-size: 17px;
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, .35);
            background: transparent;
            color: #fff;
            height: 50px;
            padding: 0 28px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 16px;
            line-height: 1;
            cursor: pointer;
            transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
        }
        .btn-ghost:hover {
            background: rgba(255, 255, 255, .1);
            border-color: rgba(255, 255, 255, .55);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-ghost:focus-visible {
            outline: 3px solid rgba(255, 255, 255, .45);
            outline-offset: 3px;
        }
        .btn-ghost-light {
            width: auto;
            display: flex;
            gap: 6px;
            border: 1px solid var(--line);
            background: var(--card-bg);
            color: var(--primary);
            height: 46px;
            padding: 0 24px;
            border-radius: 999px;
            font-weight: 700;
            align-items: center;
            justify-content: center;
            transition: all .25s ease;
        }
        .btn-ghost-light:hover {
            background: var(--primary-soft);
            border-color: var(--primary);
            color: var(--primary-hover);
            transform: translateY(-2px);
        }

        .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 0 rgba(233, 79, 34, .45);
            animation: livePulse 2s infinite;
            flex: 0 0 auto;
        }
        @keyframes livePulse {
            0% {
                box-shadow: 0 0 0 0 rgba(233, 79, 34, .5);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(233, 79, 34, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(233, 79, 34, 0);
            }
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1080;
            height: var(--nav-h);
            background: var(--deep);
            border-bottom: 1px solid rgba(255, 255, 255, .04);
            transition: box-shadow .3s ease, background .3s ease;
        }
        .site-header.is-scrolled {
            background: rgba(23, 19, 16, .94);
            box-shadow: 0 8px 30px rgba(0, 0, 0, .22);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-h);
            gap: 20px;
        }
        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            line-height: 1.2;
            flex-shrink: 0;
        }
        .brand-logo:hover {
            color: #fff;
        }
        .brand-mark {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #fff;
            font-size: 25px;
            font-weight: 900;
            border-radius: 12px;
            letter-spacing: -1px;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
        }
        .brand-text {
            display: flex;
            flex-direction: column;
            color: #fff;
        }
        .brand-text strong {
            font-size: 19px;
            font-weight: 800;
            letter-spacing: .04em;
        }
        .brand-text small {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: .18em;
            color: rgba(255, 255, 255, .66);
            margin-top: 2px;
        }
        .site-nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 28px;
            flex: 1;
            min-width: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .nav-link {
            display: inline-flex;
            align-items: center;
            height: 45px;
            padding: 0 18px;
            color: rgba(255, 255, 255, .74);
            font-size: 16px;
            font-weight: 600;
            position: relative;
            border-radius: 10px;
            transition: color .25s ease, background .25s ease;
        }
        .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, .05);
        }
        .nav-link.nav-active {
            color: var(--primary);
        }
        .nav-link.nav-active::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            height: 3px;
            border-radius: 999px;
            background: var(--gold);
            bottom: 2px;
        }
        .header-cta-wrap {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            height: 46px;
            padding: 0 22px;
            border-radius: 999px;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            border: 1px solid var(--primary);
            transition: all .25s ease;
            line-height: 1;
        }
        .header-cta:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 10px 26px rgba(233, 79, 34, .25);
        }
        .header-cta:focus-visible {
            outline: 3px solid rgba(233, 79, 34, .36);
            outline-offset: 3px;
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
            width: 48px;
            height: 48px;
            padding: 12px;
            background: transparent;
            border: 0;
            cursor: pointer;
            border-radius: 12px;
        }
        .nav-toggle span {
            display: block;
            height: 2px;
            border-radius: 2px;
            background: #fff;
            transition: all .3s ease;
        }
        .nav-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .nav-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .category-hero {
            position: relative;
            background: linear-gradient(90deg, rgba(23, 19, 16, .96), rgba(23, 19, 16, .72), rgba(23, 19, 16, .55)), url('/assets/images/backpic/back-1.png') center / cover no-repeat;
            padding: 154px 0 86px;
            margin-top: 0;
            color: #fff;
        }
        .breadcrumb-custom {
            margin-bottom: 48px;
        }
        .breadcrumb-custom ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, .62);
            font-size: 14px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb-custom li {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb-custom li + li::before {
            content: ">";
            color: rgba(255, 255, 255, .42);
        }
        .breadcrumb-custom a {
            color: rgba(255, 255, 255, .7);
            transition: color .2s ease;
        }
        .breadcrumb-custom a:hover {
            color: #fff;
        }
        .breadcrumb-custom li[aria-current="page"] {
            color: #fff;
            font-weight: 600;
        }
        .hero-copy {
            max-width: 760px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 999px;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            padding: 6px 14px 6px 12px;
            margin-bottom: 26px;
        }
        .category-hero h1 {
            color: #fff;
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: .02em;
            margin-bottom: 22px;
        }
        .hero-lead {
            color: rgba(255, 255, 255, .8);
            font-size: 17px;
            max-width: 680px;
            line-height: 1.85;
            margin-bottom: 34px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }

        .section-pad {
            padding: 92px 0 100px;
        }
        .section-pad-sm {
            padding: 78px 0 90px;
        }
        section[id] {
            scroll-margin-top: 100px;
        }
        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 800;
            font-size: 13px;
            letter-spacing: .14em;
            margin-bottom: 14px;
            padding: 6px 12px;
            border-radius: 999px;
            background: var(--primary-soft);
        }
        .section-heading {
            font-size: clamp(24px, 3vw, 34px);
            line-height: 1.28;
            color: var(--ink);
            margin-bottom: 16px;
            font-weight: 800;
        }
        .section-intro {
            color: var(--muted);
            max-width: 680px;
            line-height: 1.85;
            font-size: 16px;
        }
        .section-line {
            width: 52px;
            height: 4px;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            margin: 22px 0 28px;
        }

        .usage-card {
            border: 1px solid var(--line);
            background: var(--card-bg);
            border-radius: 24px;
            padding: 34px;
            box-shadow: var(--shadow);
        }
        .usage-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
        }
        .usage-list li {
            display: flex;
            gap: 16px;
            padding: 20px 0;
            border-bottom: 1px solid var(--line);
        }
        .usage-list li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }
        .usage-num {
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 800;
            color: var(--gold);
            background: rgba(201, 145, 43, .12);
            letter-spacing: .02em;
        }
        .usage-copy h3 {
            font-size: 17px;
            margin-bottom: 2px;
            font-weight: 700;
        }
        .usage-copy p {
            color: var(--muted);
            font-size: 15px;
            margin: 0;
            line-height: 1.7;
        }

        .guide-section {
            background: #EDE5D8;
        }
        .guide-wrap {
            position: relative;
            padding: 42px;
            border-radius: var(--radius-lg);
            background: var(--deep);
            color: #fff;
            overflow: hidden;
        }
        .guide-wrap::before {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            right: -90px;
            top: -90px;
            border-radius: 50%;
            background: rgba(201, 145, 43, .09);
            pointer-events: none;
        }
        .guide-overline {
            color: var(--gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
            margin-bottom: 14px;
            display: inline-block;
        }
        .guide-title {
            color: #fff;
            font-size: 24px;
            font-weight: 800;
            line-height: 1.3;
        }
        .guide-desc {
            color: rgba(255, 255, 255, .68);
            margin: 20px 0 0;
            font-size: 15px;
            line-height: 1.8;
        }
        .guide-steps {
            list-style: none;
            margin: 0;
            padding: 0;
            counter-reset: guideStep;
        }
        .guide-steps > li {
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 22px;
            padding: 0 0 32px 0;
            margin-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }
        .guide-steps > li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        .step-index {
            width: 52px;
            height: 52px;
            flex: 0 0 52px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            font-size: 19px;
            font-weight: 900;
            color: var(--deep);
            background: var(--gold);
            box-shadow: 0 8px 20px rgba(201, 145, 43, .25);
            letter-spacing: -.03em;
        }
        .step-copy h3 {
            color: #fff;
            font-size: 18px;
            margin: 0 0 6px;
            font-weight: 800;
        }
        .step-copy p {
            color: rgba(255, 255, 255, .68);
            margin: 0;
            font-size: 15px;
            line-height: 1.8;
        }

        .media-wrap {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .media-wrap img {
            width: 100%;
            height: 100%;
            min-height: 290px;
            object-fit: cover;
            display: block;
            transition: transform .6s ease;
        }
        .media-wrap:hover img {
            transform: scale(1.02);
        }
        .media-caption {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 38px 24px 20px;
            background: linear-gradient(0deg, rgba(23, 19, 16, .86), rgba(23, 19, 16, .16), rgba(0, 0, 0, 0));
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }
        .attention-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .attention-list li {
            display: flex;
            gap: 14px;
            padding: 18px;
            border-radius: 16px;
            background: var(--card-bg);
            border: 1px solid var(--line);
            transition: box-shadow .25s ease, transform .25s ease;
        }
        .attention-list li:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }
        .attention-ico {
            width: 34px;
            height: 34px;
            flex: 0 0 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--primary-soft);
            color: var(--primary);
            font-weight: 900;
            font-size: 16px;
        }
        .attention-copy strong {
            display: block;
            color: var(--ink);
            font-weight: 800;
            margin-bottom: 2px;
        }
        .attention-copy span {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            display: block;
        }

        .faq-section {
            background: var(--body-bg);
        }
        .faq-panel {
            margin-top: 10px;
        }
        .faq-panel .accordion-item {
            background: transparent;
            border: 0;
            border-bottom: 1px solid var(--line);
            border-radius: 0 !important;
        }
        .faq-panel .accordion-button {
            position: relative;
            background: transparent;
            color: var(--ink);
            font-weight: 700;
            font-size: 17px;
            line-height: 1.6;
            padding: 24px 50px 24px 58px;
            border: 0;
            box-shadow: none;
            text-align: left;
            border-radius: 0 !important;
        }
        .faq-panel .accordion-button:hover {
            background: rgba(233, 79, 34, .045);
        }
        .faq-panel .accordion-button:focus {
            box-shadow: none;
            border: 0;
        }
        .faq-panel .accordion-button:not(.collapsed) {
            background: transparent;
            color: var(--primary);
            box-shadow: none;
        }
        .faq-panel .accordion-button .faq-index {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(201, 145, 43, .12);
            color: var(--gold);
            font-weight: 800;
            font-size: 13px;
            letter-spacing: -.03em;
        }
        .faq-panel .accordion-button .faq-q {
            display: block;
        }
        .faq-panel .accordion-button::after {
            width: 18px;
            height: 18px;
            background-size: 18px 18px;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23E94F22' stroke-width='2' stroke-linecap='round'%3e%3cpath d='M8 2v12M2 8h12'/%3e%3c/svg%3e");
            background-position: center;
            transition: transform .35s ease;
            transform: none;
            position: absolute;
            right: 8px;
        }
        .faq-panel .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
        }
        .faq-panel .accordion-body {
            padding: 0 26px 30px 58px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.85;
            background: transparent;
        }

        .cta-block {
            position: relative;
            background: linear-gradient(180deg, rgba(23, 19, 16, .94), rgba(23, 19, 16, .82)), url('/assets/images/backpic/back-2.png') center / cover no-repeat;
            padding: 88px 0 94px;
            color: #fff;
            text-align: center;
        }
        .cta-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            font-weight: 800;
            letter-spacing: .14em;
            font-size: 13px;
            margin-bottom: 14px;
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid rgba(201, 145, 43, .4);
        }
        .cta-block h2 {
            color: #fff;
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 800;
            margin-bottom: 16px;
        }
        .cta-block p {
            color: rgba(255, 255, 255, .72);
            max-width: 560px;
            margin: 0 auto 32px;
            font-size: 16px;
        }
        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }

        .site-footer {
            background: var(--deep);
            color: rgba(255, 255, 255, .64);
            padding: 70px 0 36px;
            position: relative;
        }
        .site-footer::before {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            margin: 0 auto;
            max-width: 1200px;
        }
        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 44px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }
        .footer-brand .brand-logo {
            margin-bottom: 16px;
        }
        .footer-desc {
            max-width: 320px;
            color: rgba(255, 255, 255, .6);
            font-size: 14px;
            line-height: 1.9;
            margin: 0;
        }
        .footer-title {
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 18px;
        }
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 0;
            padding: 0;
        }
        .footer-links a {
            color: rgba(255, 255, 255, .6);
            font-size: 14px;
            line-height: 1.6;
            transition: color .25s ease, padding-left .25s ease;
        }
        .footer-links a:hover {
            color: #fff;
            padding-left: 5px;
        }
        .footer-links a:focus-visible {
            outline: 2px solid rgba(255, 255, 255, .35);
            border-radius: 4px;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            color: rgba(255, 255, 255, .44);
            font-size: 13px;
            padding-top: 30px;
        }

        .text-highlight {
            color: var(--primary);
            font-weight: 700;
        }
        .info-note {
            border-left: 4px solid var(--gold);
            background: var(--primary-soft);
            border-radius: 0 12px 12px 0;
            padding: 16px 20px;
            color: var(--ink);
            font-size: 14px;
            line-height: 1.8;
            margin-top: 24px;
        }

        @media (max-width: 1199.98px) {
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }
            .site-nav {
                gap: 18px;
            }
            .nav-link {
                padding: 0 12px;
            }
            .header-cta {
                padding: 0 18px;
            }
        }
        @media (max-width: 991.98px) {
            .nav-toggle {
                display: flex;
                flex-shrink: 0;
            }
            .site-nav {
                position: fixed;
                top: var(--nav-h);
                left: 0;
                right: 0;
                background: var(--deep);
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 0;
                padding: 18px 24px 28px;
                border-top: 1px solid rgba(255, 255, 255, .08);
                max-height: 0;
                min-height: 0;
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-6px);
                transition: max-height .4s ease, opacity .3s ease, transform .3s ease, visibility .3s;
                z-index: 1070;
            }
            .site-nav.open {
                max-height: calc(100vh - 78px);
                overflow: auto;
                opacity: 1;
                visibility: visible;
                transform: none;
            }
            .nav-links {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                width: 100%;
            }
            .nav-link {
                display: flex;
                align-items: center;
                height: 54px;
                color: rgba(255, 255, 255, .82);
                font-size: 17px;
                border-radius: 16px;
                padding: 0 16px;
            }
            .nav-link.nav-active {
                color: var(--primary);
                background: rgba(233, 79, 34, .08);
            }
            .nav-link.nav-active::after {
                left: 16px;
                right: auto;
                width: 22px;
                height: 3px;
                bottom: 8px;
            }
            .header-cta-wrap {
                width: 100%;
                padding-top: 18px;
                margin-top: 14px;
                border-top: 1px solid rgba(255, 255, 255, .08);
            }
            .header-cta {
                width: 100%;
                justify-content: center;
            }
            .section-pad {
                padding: 68px 0 74px;
            }
            .section-pad-sm {
                padding: 60px 0 66px;
            }
            .category-hero {
                padding: 132px 0 68px;
            }
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
        }
        @media (max-width: 767.98px) {
            .container {
                padding-left: 18px;
                padding-right: 18px;
            }
            .brand-text strong {
                font-size: 17px;
            }
            .brand-text small {
                font-size: 10px;
                letter-spacing: .08em;
            }
            .brand-mark {
                width: 40px;
                height: 40px;
                font-size: 22px;
                border-radius: 11px;
            }
            .category-hero {
                padding: 116px 0 52px;
            }
            .hero-lead {
                font-size: 16px;
                line-height: 1.75;
            }
            .hero-actions .btn-entry,
            .hero-actions .btn-ghost {
                width: 100%;
            }
            .btn-entry,
            .btn-ghost {
                height: 48px;
            }
            .guide-wrap {
                padding: 28px 20px;
                border-radius: 18px;
            }
            .guide-steps > li {
                gap: 14px;
                padding-bottom: 28px;
                margin-bottom: 28px;
            }
            .guide-steps > li::after {
                left: 25px;
            }
            .step-index {
                width: 46px;
                height: 46px;
                flex: 0 0 46px;
                font-size: 17px;
                border-radius: 14px;
            }
            .usage-card {
                padding: 24px 18px;
                border-radius: 18px;
            }
            .usage-list li {
                padding: 16px 0;
                gap: 12px;
            }
            .faq-panel .accordion-button {
                padding: 20px 44px 20px 46px;
                font-size: 16px;
            }
            .faq-panel .accordion-body {
                padding: 0 18px 24px 46px;
            }
            .faq-panel .accordion-button .faq-index {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
            .cta-block {
                padding: 68px 0 72px;
            }
            .cta-actions .btn-entry,
            .cta-actions .btn-ghost {
                width: 100%;
            }
            .footer-main {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 575.98px) {
            body {
                font-size: 15px;
            }
            .brand-mark {
                display: none;
            }
            .brand-logo {
                gap: 0;
            }
            .brand-text strong {
                font-size: 18px;
            }
            .brand-text small {
                font-size: 11px;
                letter-spacing: .06em;
            }
            .section-heading {
                font-size: 23px;
            }
            .section-intro {
                font-size: 15px;
                line-height: 1.8;
            }
            .category-hero h1 {
                font-size: 30px;
            }
            .media-caption {
                font-size: 13px;
                padding: 30px 16px 14px;
            }
            .attention-list li {
                flex-direction: column;
                gap: 10px;
            }
            .btn-lg.btn-entry {
                padding: 0 22px;
                font-size: 16px;
            }
            .copyright {
                font-size: 12px;
                line-height: 1.7;
            }
        }

/* roulang page: article */
:root {
            --body-bg: #F5F1EA;
            --card-bg: #FFFFFF;
            --ink: #231C18;
            --muted: #6F625A;
            --line: #E3D9CC;
            --primary: #E94F22;
            --primary-hover: #C23C10;
            --primary-soft: #FCE8DE;
            --gold: #C9912B;
            --green: #18805C;
            --deep: #171310;
            --radius: 14px;
            --radius-lg: 20px;
            --shadow-1: 0 8px 24px rgba(35, 20, 10, .08);
            --shadow-2: 0 16px 36px rgba(35, 20, 10, .14);
            --container: 1240px;
            --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", system-ui, sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--ink);
            background-color: var(--body-bg);
            -webkit-font-smoothing: antialiased;
            padding-top: 78px;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .2s ease;
        }

        a:hover {
            color: var(--primary-hover);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        ul,
        ol {
            padding-left: 1.25rem;
        }

        .container {
            max-width: var(--container);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin-top: 0;
            color: var(--ink);
            line-height: 1.3;
            word-break: break-word;
        }

        h1 {
            font-size: clamp(32px, 5vw, 54px);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 800;
        }

        h3 {
            font-size: 20px;
            font-weight: 700;
        }

        /* ===== Button System ===== */
        .btn-main,
        .btn-ghost,
        .btn-outline-light,
        .header-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 46px;
            padding: 0 26px;
            border-radius: 999px;
            border: 1px solid transparent;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            transition: all .25s ease;
            cursor: pointer;
        }

        .btn-main {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .btn-main:hover,
        .btn-main:focus {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(233, 79, 34, .25);
        }

        .btn-ghost {
            background: transparent;
            border-color: var(--line);
            color: var(--ink);
        }

        .btn-ghost:hover,
        .btn-ghost:focus {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-soft);
            transform: translateY(-2px);
        }

        .btn-outline-light {
            background: transparent;
            border-color: rgba(255, 255, 255, .55);
            color: #fff;
        }

        .btn-outline-light:hover,
        .btn-outline-light:focus {
            background: #fff;
            color: var(--deep);
            border-color: #fff;
            transform: translateY(-2px);
        }

        /* ===== Header & Nav ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            height: 78px;
            background: var(--deep);
            box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
        }

        .site-header .container {
            height: 78px;
        }

        .header-inner {
            height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            color: #fff;
        }

        .brand-logo:hover {
            color: #fff;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: var(--primary);
            color: #fff;
            font-size: 21px;
            font-weight: 800;
            border-radius: 12px;
            box-shadow: 0 6px 16px rgba(233, 79, 34, .35);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-text strong {
            font-size: 18px;
            font-weight: 800;
            letter-spacing: .02em;
        }

        .brand-text small {
            font-size: 12px;
            color: rgba(255, 255, 255, .68);
            letter-spacing: .08em;
            margin-top: 2px;
        }

        .site-nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 34px;
            flex: 1;
        }

        .nav-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-link {
            position: relative;
            color: rgba(255, 255, 255, .78);
            font-size: 15px;
            font-weight: 500;
            padding: 26px 0 22px;
            transition: color .2s ease;
            text-decoration: none;
        }

        .nav-link:hover {
            color: #fff;
        }

        .nav-link.nav-active {
            color: var(--primary);
        }

        .nav-link.nav-active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 12px;
            width: 100%;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }

        .header-cta {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            height: 42px;
            padding: 0 22px;
            font-size: 14px;
        }

        .header-cta:hover,
        .header-cta:focus {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            transform: translateY(-1px);
        }

        .live-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            background: #fff;
            border-radius: 50%;
            animation: livePulse 1.6s ease-in-out infinite;
        }

        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .55;
                transform: scale(.8);
            }
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            border: 0;
            background: transparent;
            padding: 10px;
            border-radius: 10px;
            cursor: pointer;
        }

        .nav-toggle span {
            display: block;
            height: 2px;
            width: 100%;
            background: #fff;
            border-radius: 3px;
            transition: all .3s ease;
        }

        body.nav-open .nav-toggle span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        body.nav-open .nav-toggle span:nth-child(2) {
            opacity: 0;
        }

        body.nav-open .nav-toggle span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb-bar {
            background: var(--body-bg);
            border-bottom: 1px solid var(--line);
            padding: 20px 0;
            min-height: 56px;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 14px;
            color: var(--muted);
        }

        .breadcrumb-nav a {
            color: var(--muted);
            text-decoration: none;
        }

        .breadcrumb-nav a:hover {
            color: var(--primary);
        }

        .breadcrumb-sep {
            color: var(--gold);
            font-weight: 700;
        }

        .breadcrumb-current {
            color: var(--ink);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 520px;
        }

        /* ===== Article Main ===== */
        .article-section {
            padding: 64px 0 72px;
        }

        .article-panel {
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-1);
            padding: clamp(28px, 5vw, 56px);
        }

        .article-head {
            max-width: 860px;
            margin: 0 auto clamp(28px, 4vw, 40px);
            text-align: center;
        }

        .article-pills {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 22px;
        }

        .cat-pill {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 4px 14px;
            background: var(--primary-soft);
            color: var(--primary-hover);
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.2;
            text-decoration: none;
        }

        .cat-pill:hover {
            color: var(--primary);
            background: var(--primary-soft);
        }

        .article-title {
            font-size: clamp(28px, 4.4vw, 44px);
            line-height: 1.3;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            color: var(--muted);
            font-size: 14px;
        }

        .article-meta .dot {
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            display: inline-block;
        }

        .article-cover {
            margin: 36px auto 0;
            max-width: 860px;
        }

        .article-cover img {
            width: 100%;
            border-radius: 14px;
            object-fit: cover;
            box-shadow: var(--shadow-1);
        }

        .article-cover figcaption {
            margin-top: 10px;
            color: var(--muted);
            font-size: 13px;
            text-align: center;
        }

        /* ===== CMS Content ===== */
        .cms-content {
            max-width: 720px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.8;
            color: var(--ink);
        }

        .cms-content > * + * {
            margin-top: 1.25em;
        }

        .cms-content p {
            margin-bottom: 1.25em;
        }

        .cms-content h2,
        .cms-content h3,
        .cms-content h4 {
            margin-top: 1.8em;
            margin-bottom: .6em;
            font-weight: 800;
            line-height: 1.4;
        }

        .cms-content h2 {
            font-size: 26px;
            padding-bottom: .4em;
            border-bottom: 1px solid var(--line);
        }

        .cms-content h3 {
            font-size: 21px;
        }

        .cms-content a {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 4px;
            transition: color .2s ease;
        }

        .cms-content a:hover {
            color: var(--primary-hover);
        }

        .cms-content ul {
            list-style: disc;
            padding-left: 1.4rem;
            margin: 1.2em 0;
        }

        .cms-content ol {
            list-style: decimal;
            padding-left: 1.4rem;
            margin: 1.2em 0;
        }

        .cms-content li {
            margin-bottom: .4em;
        }

        .cms-content img {
            display: block;
            max-width: 100%;
            margin: 1.8em auto;
            border-radius: 12px;
        }

        .cms-content img + em {
            display: block;
            text-align: center;
            color: var(--muted);
            font-size: 13px;
            margin-top: -0.8em;
        }

        .cms-content blockquote {
            position: relative;
            margin: 1.8em 0;
            padding: 18px 22px 18px 26px;
            background: var(--primary-soft);
            border-left: 4px solid var(--gold);
            border-radius: 0 12px 12px 0;
            color: #5a3a2a;
        }

        .cms-content blockquote p {
            margin-bottom: 0;
        }

        .cms-content code {
            background: #f2ece3;
            color: var(--primary-hover);
            padding: 2px 8px;
            border-radius: 6px;
            font-size: .92em;
        }

        .cms-content pre {
            background: var(--deep);
            color: #f5f1ea;
            padding: 20px;
            border-radius: 12px;
            overflow-x: auto;
            margin: 1.8em 0;
        }

        .cms-content pre code {
            background: transparent;
            color: inherit;
            padding: 0;
        }

        .cms-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8em 0;
            font-size: 15px;
        }

        .cms-content th,
        .cms-content td {
            border: 1px solid var(--line);
            padding: 12px 14px;
            text-align: left;
        }

        .cms-content th {
            background: var(--primary-soft);
            font-weight: 700;
        }

        .cms-content hr {
            border: 0;
            border-top: 1px solid var(--line);
            margin: 2em 0;
        }

        .article-footer-line {
            max-width: 720px;
            margin: 40px auto 0;
            padding-top: 28px;
            border-top: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .article-footer-line .back-home {
            color: var(--muted);
            font-size: 14px;
        }

        .article-footer-line .back-home:hover {
            color: var(--primary);
        }

        /* ===== Not Found Panel ===== */
        .missing-panel {
            max-width: 880px;
            margin: 0 auto;
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-1);
            padding: clamp(36px, 6vw, 72px);
            text-align: center;
        }

        .missing-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            margin: 0 auto 20px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 34px;
            font-weight: 800;
            border-radius: 50%;
        }

        .missing-title {
            margin-bottom: 12px;
        }

        .missing-desc {
            color: var(--muted);
            margin-bottom: 28px;
        }

        .missing-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        /* ===== Recommended ===== */
        .recommend-section {
            padding: 72px 0 64px;
            background: var(--body-bg);
        }

        .section-title-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 30px;
        }

        .section-title-wrap h2 {
            margin-bottom: 0;
            font-size: clamp(24px, 3vw, 32px);
        }

        .section-title-line {
            flex: 0 0 44px;
            height: 4px;
            background: var(--gold);
            border-radius: 4px;
        }

        .rec-card {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 14px;
            box-shadow: var(--shadow-1);
            transition: all .25s ease;
            text-decoration: none;
            color: var(--ink);
            height: 100%;
        }

        .rec-card:hover {
            box-shadow: var(--shadow-2);
            transform: translateY(-2px);
            color: var(--ink);
        }

        .rec-thumb {
            flex-shrink: 0;
            width: 152px;
            height: 112px;
            border-radius: 12px;
            overflow: hidden;
        }

        .rec-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .rec-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
            min-width: 0;
            padding-right: 8px;
        }

        .rec-info .rec-cat {
            color: var(--primary-hover);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .05em;
        }

        .rec-info strong {
            font-size: 18px;
            line-height: 1.4;
            word-break: break-all;
        }

        .rec-info span.text-muted {
            color: var(--muted);
            font-size: 13px;
            line-height: 1.5;
        }

        /* ===== Deep CTA ===== */
        .safety-callout {
            position: relative;
            background-image: linear-gradient(rgba(23, 19, 16, .82), rgba(23, 19, 16, .88)), url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center;
            background-color: var(--deep);
            color: #fff;
            padding: clamp(48px, 7vw, 88px) 0;
        }

        .safety-callout .callout-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #f0c290;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .safety-callout h2 {
            color: #fff;
            font-size: clamp(24px, 3vw, 34px);
            margin-bottom: 16px;
        }

        .safety-callout p {
            color: rgba(255, 255, 255, .78);
            max-width: 680px;
            margin-bottom: 28px;
        }

        .safety-callout .callout-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--deep);
            color: rgba(255, 255, 255, .72);
            padding: 72px 0 32px;
            font-size: 14px;
        }

        .site-footer .brand-logo {
            margin-bottom: 14px;
        }

        .site-footer .brand-text small {
            color: rgba(255, 255, 255, .56);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr .8fr .8fr;
            gap: 48px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            margin-bottom: 26px;
        }

        .footer-desc {
            color: rgba(255, 255, 255, .6);
            max-width: 380px;
            margin: 10px 0 0;
            line-height: 1.7;
        }

        .footer-title {
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .64);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .copyright {
            color: rgba(255, 255, 255, .46);
            text-align: center;
            font-size: 13px;
        }

        /* ===== Focus ===== */
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
        }

        /* ===== Responsive ===== */
        @media (min-width: 1200px) {
            .article-panel {
                padding: clamp(32px, 4vw, 56px);
            }
        }

        @media (min-width: 992px) {
            .site-nav .header-cta-wrap {
                display: block;
            }
        }

        @media (max-width: 991.98px) {
            .nav-toggle {
                display: flex;
            }

            .site-nav {
                position: fixed;
                top: 78px;
                left: 0;
                right: 0;
                bottom: auto;
                max-height: calc(100vh - 78px);
                overflow-y: auto;
                background: var(--deep);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 22px;
                padding: 26px 28px 36px;
                transform: translateY(-12px);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: all .3s ease;
                border-top: 1px solid rgba(255, 255, 255, .08);
                box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
            }

            body.nav-open .site-nav {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .nav-links {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
                width: 100%;
            }

            .nav-link {
                display: block;
                width: 100%;
                padding: 14px 0;
                font-size: 17px;
                color: rgba(255, 255, 255, .82);
            }

            .nav-link.nav-active::after {
                bottom: 4px;
            }

            .header-cta-wrap {
                width: 100%;
                margin-top: 10px;
            }

            .header-cta {
                width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            body {
                padding-top: 72px;
            }

            .site-header,
            .site-header .container,
            .header-inner {
                height: 72px;
            }

            .site-nav {
                top: 72px;
            }

            .article-section {
                padding: 36px 0 48px;
            }

            .recommend-section {
                padding: 48px 0 40px;
            }

            .article-panel {
                padding: 24px 20px;
                border-radius: 16px;
            }

            .article-head {
                margin-bottom: 26px;
            }

            .article-meta {
                gap: 8px;
            }

            .article-cover {
                margin-top: 24px;
            }

            .cms-content h2 {
                font-size: 22px;
            }

            .cms-content h3 {
                font-size: 19px;
            }

            .article-footer-line {
                margin-top: 30px;
                flex-direction: column;
                align-items: flex-start;
            }

            .rec-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 0;
                overflow: hidden;
            }

            .rec-thumb {
                width: 100%;
                height: 180px;
                border-radius: 0;
            }

            .rec-info {
                padding: 0 16px 18px;
            }

            .missing-panel {
                padding: 30px 18px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 32px;
                padding-bottom: 32px;
            }
        }

        @media (max-width: 575.98px) {
            .brand-text strong {
                font-size: 16px;
            }

            .brand-text small {
                font-size: 11px;
            }

            .brand-mark {
                width: 38px;
                height: 38px;
                font-size: 18px;
            }

            .cat-pill {
                font-size: 12px;
                padding: 3px 12px;
            }

            .article-meta {
                flex-direction: column;
                gap: 4px;
            }

            .article-meta .dot {
                display: none;
            }

            .btn-main,
            .btn-ghost,
            .btn-outline-light {
                width: 100%;
                padding: 0 18px;
            }

            .section-title-wrap {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .breadcrumb-current {
                max-width: 180px;
            }
        }

/* roulang page: category2 */
:root {
            --body-bg: #F5F1EA;
            --card-bg: #FFFFFF;
            --ink: #231C18;
            --muted: #6F625A;
            --line: #E3D9CC;
            --primary: #E94F22;
            --primary-hover: #C23C10;
            --primary-soft: #FCE8DE;
            --gold: #C9912B;
            --green: #18805C;
            --deep: #171310;
            --deep-soft: #211B17;
            --shadow: 0 8px 24px rgba(35, 20, 10, .08);
            --shadow-hover: 0 16px 36px rgba(35, 20, 10, .14);
            --radius-card: 14px;
            --radius-img: 12px;
            --radius-block: 20px;
            --section-space: 92px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--body-bg);
            color: var(--ink);
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", system-ui, -apple-system, sans-serif;
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        p,
        ul,
        ol,
        figure {
            margin-top: 0;
        }

        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.35;
            color: var(--ink);
        }

        p {
            margin-bottom: 1em;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        a,
        button,
        input {
            transition: all .2s ease;
        }

        .container {
            width: 100%;
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1050;
            height: 78px;
            background: var(--deep);
            border-bottom: 1px solid rgba(255, 255, 255, .06);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 78px;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            flex-shrink: 0;
            transition: opacity .2s ease;
        }

        .brand-logo:hover {
            opacity: .88;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            font-size: 22px;
            box-shadow: 0 6px 18px rgba(233, 79, 34, .3);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
        }

        .brand-text strong {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            letter-spacing: .02em;
        }

        .brand-text small {
            color: rgba(255, 255, 255, .7);
            font-size: 11px;
            letter-spacing: .12em;
            margin-top: 2px;
        }

        .site-nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 22px;
            flex: 1;
            margin-left: 40px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 8px;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            padding: 22px 14px 20px;
            color: rgba(255, 255, 255, .72);
            font-weight: 500;
            position: relative;
        }

        .nav-link:hover {
            color: #fff;
        }

        .nav-link.nav-active {
            color: #fff;
        }

        .nav-link.nav-active::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 14px;
            height: 3px;
            border-radius: 6px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
        }

        .header-cta-wrap {
            margin-left: 8px;
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 10px 18px;
            border-radius: 999px;
        }

        .header-cta:hover {
            background: var(--primary-hover);
            color: #fff;
            transform: translateY(-1px);
        }

        .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fff;
            display: inline-block;
            position: relative;
        }

        .live-dot::after {
            content: "";
            position: absolute;
            inset: -4px;
            border: 1px solid rgba(255, 255, 255, .6);
            border-radius: 50%;
            animation: livePulse 1.8s infinite;
        }

        @keyframes livePulse {
            0% {
                transform: scale(.7);
                opacity: .9;
            }
            70% {
                transform: scale(1.6);
                opacity: 0;
            }
            100% {
                transform: scale(1.6);
                opacity: 0;
            }
        }

        .nav-toggle {
            display: none;
            border: 0;
            background: transparent;
            padding: 8px 4px;
            cursor: pointer;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            margin: 5px 0;
            background: #fff;
            border-radius: 20px;
            transition: transform .2s ease;
        }

        .page-banner {
            position: relative;
            min-height: 300px;
            display: flex;
            align-items: flex-end;
            margin-top: 78px;
            color: #fff;
            overflow: hidden;
            border-radius: 0;
        }

        .banner-bg {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.png') center/cover no-repeat;
        }

        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(23, 19, 16, .32) 0%, rgba(23, 19, 16, .88) 100%);
        }

        .banner-content {
            position: relative;
            z-index: 3;
            padding-top: 70px;
            padding-bottom: 44px;
        }

        .breadcrumb-line {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: rgba(255, 255, 255, .65);
            margin-bottom: 14px;
            gap: 8px;
        }

        .breadcrumb-line a {
            color: rgba(255, 255, 255, .75);
        }

        .breadcrumb-line a:hover {
            color: var(--gold);
        }

        .breadcrumb-line span {
            color: rgba(255, 255, 255, .4);
        }

        .breadcrumb-line .current {
            color: #fff;
        }

        .banner-content h1 {
            color: #fff;
            font-size: clamp(32px, 5vw, 50px);
            letter-spacing: .04em;
            margin-bottom: 14px;
        }

        .banner-content p {
            max-width: 720px;
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .86);
            margin-bottom: 0;
        }

        .page-section {
            padding-top: var(--section-space);
            padding-bottom: var(--section-space);
        }

        .section-head {
            margin-bottom: 40px;
        }

        .head-kicker {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .08em;
            color: var(--primary);
            background: var(--primary-soft);
            border-radius: 999px;
            padding: 4px 12px;
            margin-bottom: 12px;
        }

        .section-head h2 {
            font-size: clamp(24px, 3vw, 34px);
            margin-bottom: 10px;
        }

        .section-divider {
            width: 56px;
            height: 4px;
            border-radius: 12px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            margin-top: 16px;
            margin-bottom: 20px;
        }

        .lead-text {
            max-width: 680px;
            color: var(--muted);
            font-size: 16px;
            margin-bottom: 0;
        }

        .state-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 32px;
        }

        .state-item {
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow);
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .state-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .state-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--primary-soft);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 14px;
        }

        .state-icon.gold {
            background: rgba(201, 145, 43, .14);
            color: var(--gold);
        }

        .state-icon.green {
            background: rgba(24, 128, 92, .14);
            color: var(--green);
        }

        .state-item h3 {
            font-size: 17px;
            margin-bottom: 8px;
        }

        .state-item p {
            color: var(--muted);
            font-size: 15px;
            margin-bottom: 0;
        }

        .announce-section {
            background: transparent;
        }

        .ann-feature {
            display: flex;
            flex-direction: column;
            background:
                linear-gradient(135deg, rgba(0, 0, 0, .1), transparent),
                var(--deep);
            background-image: radial-gradient(circle at 90% 20%, rgba(201, 145, 43, .13), transparent 30%), url('/assets/images/backpic/back-3.png');
            background-size: cover;
            color: #fff;
            border-radius: 22px;
            padding: 30px;
            margin: 30px 0 20px;
            min-height: 220px;
            position: relative;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .ann-feature::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(23, 19, 16, .8) 0%, rgba(23, 19, 16, .35) 100%);
            z-index: 1;
        }

        .ann-feature-top,
        .ann-feature-body,
        .ann-feature-meta {
            position: relative;
            z-index: 2;
        }

        .ann-feature-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
        }

        .ann-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .16);
            font-size: 13px;
            padding: 4px 12px;
            border-radius: 999px;
            color: var(--gold);
        }

        .ann-feature-body {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
            align-items: center;
            padding: 36px 0 22px;
        }

        .feature-date {
            min-width: 112px;
            padding: 12px 10px;
            text-align: center;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 16px;
        }

        .feature-date strong {
            display: block;
            font-size: 46px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: -.03em;
        }

        .feature-date span {
            font-size: 14px;
            color: rgba(255, 255, 255, .75);
        }

        .feature-content {
            flex: 1;
            min-width: 280px;
        }

        .feature-content h3 {
            color: #fff;
            font-size: 22px;
            margin-bottom: 8px;
        }

        .feature-content p {
            margin-bottom: 0;
            color: rgba(255, 255, 255, .78);
            max-width: 720px;
        }

        .ann-feature-meta {
            display: flex;
            justify-content: flex-end;
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 14px;
        }

        .meta-tag {
            font-size: 13px;
            color: rgba(255, 255, 255, .55);
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .ann-list-wrap {
            margin-top: 20px;
        }

        .ann-item {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 18px;
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 22px 24px;
            margin-bottom: 16px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .02);
            transition: border-color .25s ease, box-shadow .25s ease;
        }

        .ann-item:hover {
            border-color: rgba(233, 79, 34, .28);
            box-shadow: var(--shadow);
        }

        .ann-item-date {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            min-width: 78px;
            border-radius: 12px;
            background: var(--primary-soft);
            padding: 10px 12px;
        }

        .ann-item-date strong {
            color: var(--primary);
            font-size: 22px;
            line-height: 1;
        }

        .ann-item-date span {
            color: var(--muted);
            font-size: 12px;
            margin-top: 4px;
        }

        .ann-item-main {
            flex: 1;
            min-width: 260px;
        }

        .ann-item-main h3 {
            font-size: 16px;
            margin-bottom: 5px;
            line-height: 1.5;
        }

        .ann-item-main p {
            color: var(--muted);
            font-size: 15px;
            margin-bottom: 0;
        }

        .ann-item-state {
            flex-shrink: 0;
            align-self: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--green);
            background: rgba(24, 128, 92, .09);
            padding: 4px 12px;
            border-radius: 999px;
        }

        .split-tip {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 50px;
        }

        .tip-marker {
            display: flex;
            gap: 18px;
            margin-bottom: 24px;
        }

        .tip-num {
            flex-shrink: 0;
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: var(--deep);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 17px;
        }

        .tip-marker h4 {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .tip-marker p {
            color: var(--muted);
            margin-bottom: 0;
        }

        .split-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .split-image img {
            display: block;
            width: 100%;
            min-height: 300px;
            object-fit: cover;
        }

        .split-image figcaption {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 18px;
            background: rgba(23, 19, 16, .88);
            color: #fff;
            font-size: 14px;
            padding: 12px 16px;
            border-radius: 12px;
            line-height: 1.5;
        }

        .check-panel {
            background:
                linear-gradient(90deg, rgba(23, 19, 16, .82), rgba(23, 19, 16, .66)),
                url('/assets/images/backpic/back-1.png') center/cover no-repeat;
            background-color: var(--deep);
            border-radius: var(--radius-block);
            padding: 44px 42px;
            color: #fff;
        }

        .check-panel .section-divider {
            background: linear-gradient(90deg, var(--gold), var(--primary));
        }

        .check-panel h2 {
            color: #fff;
            font-size: clamp(24px, 3vw, 34px);
        }

        .check-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-top: 28px;
        }

        .check-chip {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 14px;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, .92);
        }

        .check-chip i {
            color: var(--gold);
            font-size: 18px;
        }

        .faq-section {
            padding-bottom: var(--section-space);
        }

        .accordion {
            background: transparent;
        }

        .accordion-item {
            border: 0;
            border-bottom: 1px solid var(--line);
            background: transparent;
        }

        .accordion-button {
            padding: 22px 4px;
            font-size: 17px;
            line-height: 1.6;
            font-weight: 600;
            color: var(--ink);
            background: transparent;
            box-shadow: none;
        }

        .accordion-button::after {
            background-image: none;
            content: "\f067";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary);
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .25s ease;
            width: 20px;
            height: 20px;
        }

        .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: transparent;
            box-shadow: none;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
            color: var(--primary);
        }

        .accordion-button:focus,
        .accordion-button:active {
            box-shadow: none;
            border: 0;
            outline: 0;
        }

        .accordion-body {
            padding: 0 30px 24px 4px;
            color: var(--muted);
            line-height: 1.85;
        }

        .cta-subscribe {
            background: var(--deep);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            color: #fff;
            padding: 56px 0;
            margin-bottom: var(--section-space);
        }

        .cta-subscribe::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 90% 0%, rgba(233, 79, 34, .25), transparent 24%),
                radial-gradient(circle at 5% 100%, rgba(201, 145, 43, .14), transparent 24%);
            pointer-events: none;
        }

        .subscribe-cols {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 48px;
            position: relative;
            z-index: 2;
            align-items: center;
        }

        .subscribe-cols h2 {
            color: #fff;
            font-size: 28px;
            margin-bottom: 12px;
        }

        .subscribe-cols p {
            color: rgba(255, 255, 255, .7);
        }

        .subscribe-actions {
            display: flex;
            gap: 14px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            padding: 14px 22px;
            line-height: 1.2;
            gap: 8px;
            text-decoration: none;
            color: #fff;
            background: var(--primary);
            transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
            cursor: pointer;
        }

        .btn:hover {
            color: #fff;
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(233, 79, 34, .25);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, .22);
            color: #fff;
        }

        .btn-outline:hover {
            border-color: rgba(255, 255, 255, .4);
            background: rgba(255, 255, 255, .06);
        }

        .btn:focus-visible,
        .header-cta:focus-visible,
        .nav-link:focus-visible,
        a:focus-visible {
            outline: 3px solid rgba(233, 79, 34, .4);
            outline-offset: 3px;
        }

        .content-form {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 20px;
            padding: 28px;
        }

        .content-form .form-label {
            color: #fff;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .form-control {
            height: 54px;
            border-radius: 999px;
            border: 0;
            background: #fff;
            color: var(--ink);
            padding: 0 20px;
        }

        .form-control:focus {
            border: 0;
            box-shadow: 0 0 0 4px rgba(201, 145, 43, .25);
            color: var(--ink);
            background: #fff;
        }

        .content-form .btn {
            width: 100%;
            margin-top: 12px;
        }

        .subscribe-status {
            font-size: 13px;
            color: rgba(255, 255, 255, .8);
            margin-top: 10px;
            min-height: 18px;
        }

        .site-footer {
            background: var(--deep);
            color: rgba(255, 255, 255, .7);
            padding: 62px 0 30px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr .8fr 1fr;
            gap: 40px;
            padding-bottom: 34px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .footer-brand .brand-text strong {
            color: #fff;
        }

        .footer-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, .58);
            margin: 20px 0 0;
            max-width: 340px;
        }

        .footer-title {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .62);
            font-size: 15px;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .copyright {
            margin-top: 24px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, .45);
        }

        @media (max-width: 1200px) {
            .cta-subscribe {
                padding: 48px 0;
            }
        }

        @media (max-width: 991px) {
            .site-nav {
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                width: min(320px, 85vw);
                background: var(--deep);
                flex-direction: column;
                align-items: flex-start;
                padding: 90px 30px 30px;
                border-radius: 18px 0 0 18px;
                box-shadow: -12px 0 28px rgba(0, 0, 0, .24);
                transform: translateX(105%);
                transition: transform .28s ease;
                z-index: 1040;
                overflow-y: auto;
                margin-left: 0;
                gap: 0;
            }

            .site-nav.is-open {
                transform: translateX(0);
            }

            .nav-links {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                margin-bottom: 28px;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(255, 255, 255, .06);
            }

            .nav-link {
                padding: 14px 0;
                width: 100%;
                color: rgba(255, 255, 255, .7);
            }

            .nav-link.nav-active::after {
                left: 0;
                right: auto;
                width: 26px;
                bottom: 8px;
            }

            .header-cta-wrap {
                margin-left: 0;
                width: 100%;
            }

            .header-cta {
                width: 100%;
                justify-content: center;
            }

            .nav-toggle {
                display: block;
                z-index: 1060;
                position: relative;
            }

            .nav-toggle.menu-close span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .nav-toggle.menu-close span:nth-child(2) {
                opacity: 0;
            }

            .nav-toggle.menu-close span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            .overlay-layer {
                position: fixed;
                inset: 0;
                z-index: 1035;
                display: none;
                background: rgba(23, 19, 16, .42);
            }

            .overlay-layer.show {
                display: block;
            }

            .state-grid {
                grid-template-columns: 1fr;
            }

            .split-tip {
                grid-template-columns: 1fr;
            }

            .check-grid {
                grid-template-columns: 1fr 1fr;
            }

            .subscribe-cols {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .page-section {
                --section-space: 66px;
            }
        }

        @media (max-width: 767px) {
            .container {
                padding-left: 18px;
                padding-right: 18px;
            }

            .page-banner {
                min-height: 250px;
                align-items: flex-end;
            }

            .ann-feature {
                padding: 22px 20px;
            }

            .ann-feature-body {
                padding-top: 26px;
            }

            .feature-date {
                min-width: 80px;
            }

            .feature-date strong {
                font-size: 34px;
            }

            .ann-item {
                padding: 18px 16px;
            }

            .ann-item-date {
                min-width: 64px;
            }

            .check-panel {
                padding: 30px 20px;
            }

            .check-grid {
                grid-template-columns: 1fr;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 26px;
            }

            .content-form {
                padding: 20px;
            }

            .btn {
                padding: 13px 18px;
                font-size: 14px;
            }

            .section-head h2 {
                font-size: 26px;
            }

            .feature-content h3 {
                font-size: 18px;
            }
        }

        @media (max-width: 575px) {
            body {
                font-size: 15px;
            }

            .site-header {
                height: 70px;
            }

            .header-inner {
                height: 70px;
            }

            .brand-mark {
                width: 38px;
                height: 38px;
                font-size: 19px;
            }

            .brand-text strong {
                font-size: 15px;
            }

            .brand-text small {
                font-size: 10px;
            }

            .header-cta {
                padding: 9px 14px;
                font-size: 13px;
            }

            .nav-links {
                margin-bottom: 18px;
            }

            .page-banner {
                min-height: 230px;
                margin-top: 70px;
            }

            .banner-content {
                padding: 40px 0 32px;
            }

            .banner-content h1 {
                font-size: 30px;
            }

            .banner-content p {
                font-size: 15px;
            }

            .page-section {
                --section-space: 50px;
            }

            .ann-item {
                display: block;
            }

            .ann-item-date {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                margin-bottom: 12px;
            }

            .ann-item-date strong {
                font-size: 18px;
            }

            .ann-feature-top {
                align-items: flex-start;
                flex-direction: column;
            }

            .feature-date strong {
                font-size: 30px;
            }

            .check-grid {
                grid-template-columns: 1fr;
            }

            .check-chip {
                padding: 12px 14px;
                font-size: 13px;
            }

            .accordion-button {
                font-size: 15px;
                padding: 18px 0;
            }

            .accordion-body {
                padding-right: 6px;
            }

            .cta-subscribe {
                border-radius: 18px;
            }

            .subscribe-actions {
                flex-direction: column;
            }

            .subscribe-actions .btn {
                width: 100%;
            }
        }
