/* roulang page: index */
*,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            line-height: 1.7;
            background: #F5F2EA;
            color: #3D4A44;
            font-size: 16px;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        button {
            background: none;
            border: none;
            cursor: pointer;
        }
        input {
            font-family: inherit;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0;
            color: #18231F;
            line-height: 1.25;
            font-weight: 800;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            height: 72px;
            background: rgba(245, 242, 234, 0.96);
            border-bottom: 1px solid #E7E1D4;
            transition: box-shadow .3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 24px rgba(15, 45, 38, .06);
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-logo svg {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
        }
        .brand-text {
            font-size: 18px;
            font-weight: 800;
            color: #0B3C33;
            letter-spacing: .5px;
            white-space: nowrap;
        }
        .brand-text span {
            color: #C19A5B;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: nowrap;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: #3D4A44;
            white-space: nowrap;
            padding: 8px 2px;
            position: relative;
            transition: color .2s ease;
        }
        .nav-links a:hover {
            color: #0B3C33;
        }
        .nav-links a.active {
            color: #0B3C33;
            font-weight: 700;
        }
        .nav-links a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -2px;
            height: 2px;
            border-radius: 2px;
            background: #C19A5B;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #E1EBE5;
            color: #2F7D5C;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 999px;
            line-height: 1;
            white-space: nowrap;
        }
        .status-pill .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #2F7D5C;
            animation: pulse-dot 1.8s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: .5;
                transform: scale(.75);
            }
        }
        .countdown-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #F0E6D4;
            color: #C19A5B;
            font-size: 13px;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 999px;
            font-variant-numeric: tabular-nums;
            line-height: 1;
            white-space: nowrap;
        }
        .countdown-pill i {
            font-style: normal;
            font-size: 11px;
            color: #8A6F45;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 999px;
            padding: 12px 26px;
            min-height: 44px;
            transition: all .2s ease;
            white-space: nowrap;
            cursor: pointer;
        }
        .btn-primary {
            background: #0B3C33;
            color: #fff;
            border: 1px solid #0B3C33;
        }
        .btn-primary:hover {
            background: #C19A5B;
            border-color: #C19A5B;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(193, 154, 91, .3);
        }
        .btn-primary .arrow {
            transition: transform .2s ease;
        }
        .btn-primary:hover .arrow {
            transform: translateX(4px);
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .65);
        }
        .btn-outline:hover {
            border-color: #C19A5B;
            color: #C19A5B;
        }
        .btn-outline-dark {
            background: transparent;
            color: #0B3C33;
            border: 1px solid #0B3C33;
        }
        .btn-outline-dark:hover {
            border-color: #C19A5B;
            color: #C19A5B;
        }
        .btn-accent {
            background: #C19A5B;
            color: #07241E;
            border: 1px solid #C19A5B;
            font-weight: 700;
        }
        .btn-accent:hover {
            background: #D4AE72;
            border-color: #D4AE72;
            transform: translateY(-1px);
        }
        .hero-section {
            position: relative;
            min-height: 80vh;
            min-height: 560px;
            display: flex;
            align-items: center;
            background-image: linear-gradient(75deg, rgba(7, 36, 30, .93), rgba(11, 60, 51, .58), rgba(11, 60, 51, .08)), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 40%;
            animation: hero-zoom 10s ease-in-out infinite alternate;
        }
        @keyframes hero-zoom {
            0% {
                background-position: center 30%;
            }
            100% {
                background-position: center 50%;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-section {
                animation: none;
            }
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(7, 36, 30, .4) 0%, rgba(7, 36, 30, .1) 60%, transparent 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .25);
            color: #F1EDE4;
            font-size: 13px;
            font-weight: 500;
            padding: 7px 16px;
            border-radius: 999px;
            margin-bottom: 24px;
            backdrop-filter: blur(4px);
        }
        .hero-badge svg {
            width: 14px;
            height: 14px;
        }
        .hero-title {
            font-size: clamp(32px, 5vw, 54px);
            color: #fff;
            font-weight: 900;
            max-width: 780px;
            line-height: 1.18;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }
        .hero-title .accent {
            color: #C19A5B;
        }
        .hero-subtitle {
            font-size: 17px;
            color: rgba(241, 237, 228, .85);
            max-width: 600px;
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .hero-btns {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .hero-trust {
            display: flex;
            align-items: center;
            gap: 0;
            flex-wrap: wrap;
            color: rgba(241, 237, 228, .7);
            font-size: 14px;
            font-weight: 500;
        }
        .hero-trust span {
            display: inline-flex;
            align-items: center;
            padding: 0 16px;
        }
        .hero-trust span:first-child {
            padding-left: 0;
        }
        .hero-trust span+span::before {
            content: "/";
            margin-right: 32px;
            color: rgba(193, 154, 91, .5);
            font-weight: 300;
        }
        .section-padding {
            padding: 96px 0;
        }
        @media (max-width: 1023px) {
            .section-padding {
                padding: 64px 0;
            }
        }
        @media (max-width: 639px) {
            .section-padding {
                padding: 48px 0;
            }
        }
        .container-site {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #C19A5B;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .section-tag::before {
            content: "";
            width: 24px;
            height: 2px;
            background: #C19A5B;
            border-radius: 2px;
        }
        .section-title {
            font-size: clamp(28px, 3.5vw, 38px);
            font-weight: 800;
            color: #18231F;
            line-height: 1.2;
            margin-bottom: 14px;
        }
        .section-subtitle {
            font-size: 16px;
            color: #77837C;
            max-width: 560px;
            line-height: 1.7;
        }
        .brand-story {
            background: #F5F2EA;
        }
        .brand-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .brand-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 1px 2px rgba(15, 45, 38, .04), 0 8px 24px rgba(15, 45, 38, .06);
            position: relative;
        }
        .brand-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .brand-image::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, .15);
            pointer-events: none;
        }
        .brand-copy h2 {
            font-size: clamp(26px, 3vw, 36px);
            margin-bottom: 20px;
        }
        .brand-copy>p {
            font-size: 16px;
            color: #3D4A44;
            line-height: 1.85;
            margin-bottom: 24px;
        }
        .principle-list {
            margin-top: 8px;
        }
        .principle-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 18px 0;
            border-bottom: 1px solid #E7E1D4;
            transition: transform .2s ease;
            cursor: default;
        }
        .principle-item:hover {
            transform: translateX(6px);
        }
        .principle-item:last-child {
            border-bottom: none;
        }
        .principle-num {
            font-size: 20px;
            font-weight: 800;
            color: #C19A5B;
            font-variant-numeric: tabular-nums;
            min-width: 34px;
            line-height: 1.4;
        }
        .principle-body h4 {
            font-size: 17px;
            font-weight: 700;
            color: #18231F;
            margin-bottom: 3px;
        }
        .principle-body p {
            font-size: 14px;
            color: #77837C;
            line-height: 1.7;
        }
        .news-section {
            background: #fff;
        }
        .news-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        .view-all {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: #0B3C33;
            transition: color .2s ease;
        }
        .view-all:hover {
            color: #C19A5B;
        }
        .view-all svg {
            width: 16px;
            height: 16px;
            transition: transform .2s ease;
        }
        .view-all:hover svg {
            transform: translateX(3px);
        }
        .news-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: stretch;
        }
        @media (min-width: 1024px) {
            .news-layout {
                grid-template-columns: 3fr 2fr;
            }
        }
        .news-featured {
            background: #F9F7F1;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #E7E1D4;
            transition: box-shadow .25s ease, transform .25s ease;
            display: flex;
            flex-direction: column;
        }
        .news-featured:hover {
            box-shadow: 0 2px 4px rgba(15, 45, 38, .06), 0 16px 40px rgba(15, 45, 38, .10);
            transform: translateY(-2px);
        }
        .news-featured .featured-img {
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
            background: #e8e2d6;
        }
        .news-featured .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .news-featured:hover .featured-img img {
            transform: scale(1.02);
        }
        .news-featured .featured-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .news-featured h3 {
            font-size: 20px;
            font-weight: 800;
            line-height: 1.35;
            margin: 10px 0 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-featured .excerpt {
            font-size: 14px;
            color: #3D4A44;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 14px;
            flex: 1;
        }
        .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: #77837C;
        }
        .news-meta .read-more {
            color: #0B3C33;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color .2s ease;
        }
        .news-meta .read-more:hover {
            color: #C19A5B;
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .news-item {
            background: #F9F7F1;
            border: 1px solid #E7E1D4;
            border-radius: 16px;
            padding: 20px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: box-shadow .2s ease, transform .2s ease;
            flex: 1;
        }
        .news-item:hover {
            box-shadow: 0 2px 4px rgba(15, 45, 38, .06), 0 8px 24px rgba(15, 45, 38, .08);
            transform: translateY(-2px);
        }
        .news-item .item-cover {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background: #e8e2d6;
        }
        .news-item .item-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-item .item-info {
            flex: 1;
            min-width: 0;
        }
        .news-item h4 {
            font-size: 15px;
            font-weight: 700;
            line-height: 1.4;
            margin: 6px 0 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color .2s ease;
        }
        .news-item:hover h4 {
            color: #0B3C33;
        }
        .news-item .item-excerpt {
            font-size: 13px;
            color: #77837C;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }
        .news-item time {
            font-size: 12px;
            color: #A8A29A;
        }
        .badge-default {
            display: inline-block;
            background: #E1EBE5;
            color: #0B3C33;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            line-height: 1.3;
        }
        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 24px;
            background: #F9F7F1;
            border: 2px dashed #E7E1D4;
            border-radius: 20px;
            grid-column: 1 / -1;
        }
        .empty-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            border: 2px dashed #C19A5B;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: #C19A5B;
        }
        .empty-state h4 {
            font-size: 18px;
            font-weight: 700;
            color: #18231F;
            margin-bottom: 4px;
        }
        .empty-state p {
            font-size: 14px;
            color: #77837C;
            margin-bottom: 18px;
        }
        .faq-section {
            background: #F5F2EA;
        }
        .faq-wrap {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            border-top: 1px solid #E7E1D4;
            padding: 0;
        }
        .faq-item:last-child {
            border-bottom: 1px solid #E7E1D4;
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            text-align: left;
            padding: 22px 4px;
            font-size: 17px;
            font-weight: 700;
            color: #18231F;
            transition: color .2s ease;
            min-height: 44px;
        }
        .faq-question:hover {
            color: #0B3C33;
        }
        .faq-question .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid #C19A5B;
            color: #C19A5B;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 400;
            flex-shrink: 0;
            transition: all .25s ease;
            line-height: 1;
        }
        .faq-item.active .faq-icon {
            background: #C19A5B;
            color: #fff;
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }
        .faq-answer-inner {
            padding: 0 4px 22px 24px;
            font-size: 15px;
            color: #77837C;
            line-height: 1.85;
            border-left: 3px solid #C19A5B;
            margin-left: 4px;
        }
        .trust-section {
            background: #F0EBDF;
        }
        .trust-stats {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 56px;
        }
        .trust-stat {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }
        .trust-stat .num {
            font-size: 38px;
            font-weight: 800;
            color: #C19A5B;
            font-variant-numeric: tabular-nums;
            line-height: 1.1;
            margin-bottom: 6px;
        }
        .trust-stat .label {
            font-size: 14px;
            color: #77837C;
        }
        .trust-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 24px 48px;
            border-top: 1px solid #E7E1D4;
            padding-top: 40px;
        }
        .trust-logos span {
            font-size: 18px;
            font-weight: 700;
            color: #A8A29A;
            letter-spacing: 2px;
            transition: color .2s ease;
            cursor: default;
            white-space: nowrap;
        }
        .trust-logos span:hover {
            color: #0B3C33;
        }
        .cta-section {
            background: #0B2A23;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #C19A5B, transparent 60%);
        }
        .cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .cta-left h2 {
            color: #F1EDE4;
            font-size: clamp(24px, 3vw, 32px);
            margin-bottom: 12px;
        }
        .cta-left p {
            color: rgba(241, 237, 228, .65);
            font-size: 15px;
            line-height: 1.8;
            max-width: 420px;
        }
        .subscribe-form {
            display: flex;
            gap: 12px;
            margin-top: 24px;
            flex-wrap: wrap;
        }
        .subscribe-form input {
            flex: 1;
            min-width: 220px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 12px;
            color: #F1EDE4;
            padding: 12px 16px;
            font-size: 14px;
            outline: none;
            transition: border-color .2s ease;
            min-height: 44px;
        }
        .subscribe-form input::placeholder {
            color: rgba(241, 237, 228, .4);
        }
        .subscribe-form input:focus {
            border-color: #C19A5B;
        }
        .cta-right {
            text-align: left;
        }
        .cta-right h3 {
            color: #F1EDE4;
            font-size: 22px;
            margin-bottom: 8px;
        }
        .cta-right p {
            color: rgba(241, 237, 228, .65);
            font-size: 14px;
            line-height: 1.75;
            margin-bottom: 24px;
            max-width: 360px;
        }
        .cta-btns {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .back-top {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: rgba(241, 237, 228, .5);
            transition: color .2s ease;
        }
        .back-top:hover {
            color: #C19A5B;
        }
        .site-footer {
            background: #07241E;
            color: rgba(241, 237, 228, .6);
        }
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            padding: 64px 0 40px;
        }
        .footer-brand .brand-logo {
            margin-bottom: 14px;
        }
        .footer-brand .brand-text {
            color: #F1EDE4;
        }
        .footer-brand p {
            font-size: 14px;
            color: rgba(241, 237, 228, .5);
            line-height: 1.75;
            max-width: 280px;
        }
        .footer-col h5 {
            color: #F1EDE4;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-col a {
            font-size: 14px;
            color: rgba(241, 237, 228, .55);
            transition: color .2s ease;
        }
        .footer-col a:hover {
            color: #C19A5B;
        }
        .footer-bottom {
            border-top: 1px solid rgba(241, 237, 228, .12);
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 13px;
            color: rgba(241, 237, 228, .4);
            flex-wrap: wrap;
        }
        .footer-bottom a {
            color: rgba(241, 237, 228, .4);
        }
        .footer-bottom a:hover {
            color: #C19A5B;
        }
        .mobile-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: 1px solid #E7E1D4;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .mobile-toggle svg {
            width: 20px;
            height: 20px;
            stroke: #0B3C33;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 49;
            background: #F5F2EA;
            padding: 80px 24px 24px;
            overflow-y: auto;
        }
        .mobile-menu.open {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 16px 8px;
            font-size: 18px;
            font-weight: 600;
            color: #18231F;
            border-bottom: 1px solid #E7E1D4;
        }
        .mobile-menu a.active {
            color: #0B3C33;
        }
        .mobile-actions {
            margin-top: 24px;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        @media (max-width: 1023px) {
            .nav-links {
                display: none;
            }
            .header-actions .status-pill,
            .header-actions .countdown-pill {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .brand-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .news-layout {
                grid-template-columns: 1fr;
            }
            .cta-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .trust-stats {
                gap: 24px;
            }
            .trust-stat .num {
                font-size: 30px;
            }
        }
        @media (max-width: 639px) {
            .site-header {
                height: 60px;
            }
            .header-inner {
                padding: 0 16px;
            }
            .brand-text {
                font-size: 16px;
            }
            .brand-logo svg {
                width: 32px;
                height: 32px;
            }
            .hero-section {
                min-height: 90vh;
            }
            .hero-title {
                font-size: 30px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .hero-btns .btn {
                width: 100%;
            }
            .hero-trust {
                font-size: 12px;
            }
            .hero-trust span+span::before {
                margin-right: 12px;
            }
            .hero-trust span {
                padding: 0 8px;
            }
            .section-padding {
                padding: 48px 0;
            }
            .container-site {
                padding: 0 16px;
            }
            .news-featured h3 {
                font-size: 17px;
            }
            .news-item {
                padding: 16px;
            }
            .news-item .item-cover {
                width: 60px;
                height: 60px;
            }
            .trust-stats {
                flex-direction: column;
                gap: 28px;
            }
            .cta-btns .btn {
                width: 100%;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

/* roulang page: category1 */
:root {
            --color-primary: #0B3C33;
            --color-primary-dark: #07241E;
            --color-primary-light: #175B4C;
            --color-accent: #C19A5B;
            --color-accent-light: #D4AE72;
            --color-accent-soft: #F0E6D4;
            --color-bg: #F5F2EA;
            --color-card: #FFFFFF;
            --color-dark: #0B2A23;
            --color-ink: #18231F;
            --color-ink-2: #3D4A44;
            --color-ink-3: #77837C;
            --color-line: #E7E1D4;
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow-card: 0 1px 2px rgba(15,45,38,.04), 0 8px 24px rgba(15,45,38,.06);
            --shadow-hover: 0 4px 8px rgba(15,45,38,.06), 0 16px 32px rgba(15,45,38,.10);
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            background: var(--color-bg);
            color: var(--color-ink-2);
            line-height: 1.75;
            font-size: 16px;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color .2s ease;
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(193, 154, 91, .5);
            outline-offset: 2px;
        }
        .container-site {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        /* ========== Header ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            height: 72px;
            background: rgba(245, 242, 234, .96);
            border-bottom: 1px solid var(--color-line);
            transition: box-shadow .2s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 16px rgba(7, 36, 30, .06);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-text {
            font-size: 18px;
            font-weight: 800;
            color: var(--color-primary);
            letter-spacing: .5px;
            line-height: 1.2;
            white-space: nowrap;
        }
        .brand-text span {
            color: var(--color-accent);
            font-weight: 900;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 26px;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--color-ink-2);
            padding: 6px 2px;
            position: relative;
            border-bottom: 2px solid transparent;
            transition: color .2s ease, border-color .2s ease;
        }
        .nav-links a:hover {
            color: var(--color-primary);
        }
        .nav-links a.active {
            color: var(--color-primary);
            font-weight: 700;
            border-bottom-color: var(--color-accent);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-primary);
            background: #E1EBE5;
            padding: 5px 14px;
            border-radius: 999px;
            white-space: nowrap;
        }
        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #2F7D5C;
            animation: pulse 1.8s ease-in-out infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: .55;
                transform: scale(.82);
            }
        }
        .countdown-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-primary);
            background: var(--color-accent-soft);
            padding: 5px 14px;
            border-radius: 999px;
            font-variant-numeric: tabular-nums;
            white-space: nowrap;
        }
        .countdown-pill .cd {
            color: var(--color-accent);
            font-weight: 800;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-primary);
            color: #F1EDE4;
            border: 1px solid transparent;
            font-size: 15px;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 999px;
            min-height: 44px;
            cursor: pointer;
            transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
            box-shadow: 0 2px 8px rgba(11, 60, 51, .18);
        }
        .btn-primary:hover {
            background: var(--color-accent);
            color: #0B2A23;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(193, 154, 91, .3);
        }
        .btn-primary .arrow {
            transition: transform .2s ease;
        }
        .btn-primary:hover .arrow {
            transform: translateX(4px);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: #F1EDE4;
            border: 1px solid rgba(241, 237, 228, .55);
            font-size: 15px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 999px;
            min-height: 44px;
            cursor: pointer;
            transition: border-color .2s ease, color .2s ease, transform .2s ease;
        }
        .btn-outline:hover {
            border-color: var(--color-accent);
            color: var(--color-accent-light);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 44px;
            height: 44px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            border-radius: 8px;
        }
        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--color-primary);
            border-radius: 2px;
            transition: transform .25s ease, opacity .25s ease;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: var(--color-bg);
            border-bottom: 1px solid var(--color-line);
            box-shadow: 0 16px 32px rgba(7, 36, 30, .08);
            z-index: 49;
            padding: 20px 24px 28px;
        }
        .mobile-menu.open {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 12px 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--color-ink);
            border-bottom: 1px solid var(--color-line);
        }
        .mobile-menu a.active {
            color: var(--color-primary);
            font-weight: 800;
        }
        .mobile-menu .m-actions {
            display: flex;
            gap: 10px;
            margin-top: 18px;
        }
        /* ========== 频道头 ========== */
        .cat-hero {
            position: relative;
            min-height: 300px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: var(--color-primary-dark);
        }
        .cat-hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1.02);
            animation: slowZoom 18s ease-in-out infinite alternate;
        }
        @keyframes slowZoom {
            0% {
                transform: scale(1.0);
            }
            100% {
                transform: scale(1.06);
            }
        }
        .cat-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(75deg, rgba(7, 36, 30, .95), rgba(11, 60, 51, .78), rgba(11, 60, 51, .35));
        }
        .cat-hero .container-site {
            position: relative;
            z-index: 2;
            padding-top: 56px;
            padding-bottom: 56px;
        }
        .cat-hero .badge {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--color-accent-light);
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(193, 154, 91, .35);
            padding: 5px 16px;
            border-radius: 999px;
            margin-bottom: 16px;
        }
        .cat-hero h1 {
            font-size: clamp(30px, 4vw, 42px);
            font-weight: 800;
            color: #F1EDE4;
            line-height: 1.3;
            margin-bottom: 14px;
            letter-spacing: .5px;
        }
        .cat-hero .subtitle {
            font-size: 16px;
            color: rgba(241, 237, 228, .82);
            max-width: 620px;
            line-height: 1.8;
        }
        /* ========== 图文交替 ========== */
        .section-pad {
            padding-top: 72px;
            padding-bottom: 72px;
        }
        @media (min-width:768px) {
            .section-pad {
                padding-top: 96px;
                padding-bottom: 96px;
            }
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--color-accent);
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .img-wrap {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-line);
            background: var(--color-card);
        }
        .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
        .img-wrap:hover img {
            transform: scale(1.03);
        }
        .text-block h2 {
            font-size: clamp(26px, 3vw, 32px);
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1.35;
            margin-bottom: 18px;
        }
        .text-block p {
            font-size: 16px;
            color: var(--color-ink-2);
            line-height: 1.85;
            margin-bottom: 22px;
        }
        .text-block .btn-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-solid {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--color-primary);
            color: #F1EDE4;
            border: 1px solid transparent;
            font-size: 15px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 999px;
            min-height: 44px;
            transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
            box-shadow: 0 2px 8px rgba(11, 60, 51, .12);
        }
        .btn-solid:hover {
            background: var(--color-accent);
            color: #0B2A23;
            transform: translateY(-2px);
        }
        .btn-ghost-dark {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--color-primary);
            border: 1px solid var(--color-primary);
            font-size: 15px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 999px;
            min-height: 44px;
            transition: border-color .2s ease, color .2s ease, transform .2s ease;
        }
        .btn-ghost-dark:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            transform: translateY(-2px);
        }
        /* ========== 编号资源列表 ========== */
        .resource-section {
            background: var(--color-card);
            border-top: 1px solid var(--color-line);
            border-bottom: 1px solid var(--color-line);
        }
        .resource-list {
            max-width: 820px;
            margin: 0 auto;
        }
        .resource-item {
            display: flex;
            align-items: center;
            gap: 28px;
            padding: 30px 16px;
            border-bottom: 1px solid var(--color-line);
            border-radius: 0;
            transition: background .2s ease, transform .2s ease, padding-left .2s ease;
        }
        .resource-item:last-child {
            border-bottom: none;
        }
        .resource-item:hover {
            background: #F0EBDF;
            padding-left: 24px;
        }
        .resource-num {
            font-size: 40px;
            font-weight: 800;
            color: var(--color-accent);
            font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
            line-height: 1;
            font-variant-numeric: tabular-nums;
            min-width: 60px;
            text-align: center;
        }
        .resource-content {
            flex: 1;
        }
        .resource-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 4px;
        }
        .resource-content p {
            font-size: 15px;
            color: var(--color-ink-2);
            line-height: 1.7;
            max-width: 560px;
        }
        .resource-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--color-line);
            background: var(--color-bg);
            color: var(--color-primary);
            font-size: 20px;
            transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
            flex-shrink: 0;
        }
        .resource-link:hover {
            background: var(--color-primary);
            color: #F1EDE4;
            border-color: var(--color-primary);
            transform: translateX(4px);
        }
        /* ========== 结尾 CTA ========== */
        .end-cta {
            position: relative;
            background: var(--color-dark);
            border-radius: var(--radius-lg);
            padding: 56px 40px;
            text-align: center;
            overflow: hidden;
        }
        .end-cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
        }
        .end-cta h2 {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 800;
            color: #F1EDE4;
            margin-bottom: 12px;
            line-height: 1.35;
        }
        .end-cta p {
            font-size: 16px;
            color: rgba(241, 237, 228, .78);
            max-width: 520px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }
        .end-cta .btn-primary {
            min-width: 160px;
        }
        /* ========== Footer ========== */
        .site-footer {
            background: var(--color-primary-dark);
            color: rgba(241, 237, 228, .75);
            padding-top: 64px;
            margin-top: 0;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }
        .footer-brand .brand-text {
            color: #F1EDE4;
        }
        .footer-brand .brand-text span {
            color: var(--color-accent);
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            margin-top: 16px;
            max-width: 320px;
        }
        .footer-col h5 {
            font-size: 14px;
            font-weight: 700;
            color: #F1EDE4;
            margin-bottom: 14px;
            letter-spacing: .5px;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-col a {
            font-size: 14px;
            color: rgba(241, 237, 228, .65);
            transition: color .2s ease;
        }
        .footer-col a:hover {
            color: var(--color-accent-light);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            padding: 20px 0;
            font-size: 13px;
            color: rgba(241, 237, 228, .5);
        }
        /* ========== 响应式 ========== */
        @media (max-width: 1023px) {
            .nav-links {
                display: none;
            }
            .header-actions .status-pill {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 767px) {
            .container-site {
                padding-left: 16px;
                padding-right: 16px;
            }
            .site-header {
                height: 60px;
            }
            .mobile-menu {
                top: 60px;
            }
            .header-inner .btn-primary {
                font-size: 13px;
                padding: 8px 16px;
                min-height: 40px;
            }
            .countdown-pill {
                display: none;
            }
            .cat-hero {
                min-height: 260px;
            }
            .cat-hero h1 {
                font-size: 28px;
            }
            .section-pad {
                padding-top: 56px;
                padding-bottom: 56px;
            }
            .resource-item {
                flex-wrap: wrap;
                gap: 14px;
                padding: 24px 8px;
            }
            .resource-num {
                font-size: 32px;
                min-width: 48px;
            }
            .resource-link {
                width: 40px;
                height: 40px;
            }
            .end-cta {
                padding: 40px 20px;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
            .cat-hero-bg {
                transform: none;
            }
        }

/* roulang page: article */
:root {
            --color-primary: #0B3C33;
            --color-primary-dark: #07241E;
            --color-primary-light: #175B4C;
            --color-accent: #C19A5B;
            --color-accent-light: #D4AE72;
            --color-accent-soft: #F0E6D4;
            --color-bg: #F5F2EA;
            --color-card: #FFFFFF;
            --color-dark: #0B2A23;
            --color-text: #18231F;
            --color-body: #3D4A44;
            --color-muted: #77837C;
            --color-dark-text: #F1EDE4;
            --color-border: #E7E1D4;
            --color-online: #2F7D5C;
            --color-warn: #D78A2C;
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --radius-full: 999px;
            --shadow-soft: 0 1px 2px rgba(15, 45, 38, .04), 0 8px 24px rgba(15, 45, 38, .06);
            --shadow-hover: 0 4px 8px rgba(15, 45, 38, .06), 0 16px 32px rgba(15, 45, 38, .10);
            --container: 1200px;
            --spacing-section: 96px;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-serif: "Noto Serif SC", "Songti SC", SimSun, serif;
            --font-num: "Inter", "Helvetica Neue", Arial, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg);
            color: var(--color-body);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }

        .container-site {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            height: 72px;
            background: rgba(245, 242, 234, 0.96);
            border-bottom: 1px solid var(--color-border);
            transition: box-shadow .2s ease;
        }

        .site-header.scrolled {
            box-shadow: 0 2px 12px rgba(7, 36, 30, .05);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 24px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .brand-logo svg {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
        }

        .brand-text {
            font-size: 19px;
            font-weight: 900;
            color: var(--color-text);
            letter-spacing: .01em;
            white-space: nowrap;
        }

        .brand-text span {
            color: var(--color-accent);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--color-body);
            border-radius: var(--radius-full);
            position: relative;
            transition: all .2s ease;
        }

        .nav-links a:hover {
            color: var(--color-primary);
            background: rgba(11, 60, 51, .06);
        }

        .nav-links a.active {
            color: var(--color-primary);
            font-weight: 700;
        }

        .nav-links a.active::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 2px;
            height: 2px;
            border-radius: 2px;
            background: var(--color-accent);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-online);
            background: rgba(47, 125, 92, .10);
            padding: 5px 14px;
            border-radius: var(--radius-full);
            white-space: nowrap;
        }

        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--color-online);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(47, 125, 92, .5);
            }
            50% {
                box-shadow: 0 0 0 5px rgba(47, 125, 92, 0);
            }
        }

        .countdown-badge {
            font-family: var(--font-num);
            font-variant-numeric: tabular-nums;
            font-size: 13px;
            font-weight: 700;
            color: var(--color-accent);
            background: var(--color-accent-soft);
            padding: 5px 12px;
            border-radius: var(--radius-full);
            white-space: nowrap;
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            background: transparent;
            cursor: pointer;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--color-text);
            border-radius: 2px;
            transition: all .25s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: all .2s ease;
            line-height: 1.2;
            min-height: 44px;
            border: 2px solid transparent;
            white-space: nowrap;
        }

        .btn svg {
            transition: transform .2s ease;
        }

        .btn:hover svg {
            transform: translateX(4px);
        }

        .btn-primary {
            background: var(--color-primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--color-accent);
            border-color: var(--color-accent);
        }

        .btn-outline {
            background: transparent;
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        .btn-outline:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
        }

        .btn-white {
            background: #fff;
            color: var(--color-primary);
        }

        .btn-white:hover {
            background: var(--color-accent);
            color: #fff;
        }

        .btn-sm {
            padding: 8px 20px;
            font-size: 14px;
            min-height: 38px;
        }

        .btn-lg {
            padding: 16px 36px;
            font-size: 17px;
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            padding: 32px 0 0;
            font-size: 14px;
            color: var(--color-muted);
        }

        .breadcrumb a {
            color: var(--color-muted);
            transition: color .2s;
        }

        .breadcrumb a:hover {
            color: var(--color-accent);
        }

        .breadcrumb .sep {
            color: #B8B3A8;
        }

        .breadcrumb .current {
            color: var(--color-primary);
            font-weight: 600;
            max-width: 300px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* ===== Article Header ===== */
        .article-header {
            padding: 32px 0 12px;
        }

        .article-title {
            font-size: 38px;
            line-height: 1.3;
            font-weight: 800;
            color: var(--color-text);
            letter-spacing: -0.01em;
            margin-bottom: 16px;
            max-width: 820px;
        }

        .article-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 14px;
            color: var(--color-muted);
        }

        .meta-cat {
            display: inline-block;
            background: #E1EBE5;
            color: var(--color-primary);
            padding: 4px 14px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 13px;
        }

        .meta-date {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .meta-read {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* ===== Article Cover ===== */
        .article-cover {
            margin: 28px 0 40px;
            border-radius: var(--radius-md);
            overflow: hidden;
            max-height: 440px;
        }

        .article-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* ===== Article Content ===== */
        .article-body-wrap {
            max-width: 760px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .article-content {
            font-size: 16px;
            line-height: 1.85;
            color: var(--color-body);
        }

        .article-content p {
            margin: 1.5em 0;
        }

        .article-content p:first-child {
            font-size: 18px;
            color: var(--color-text);
        }

        .article-content h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--color-text);
            margin: 2em 0 0.8em;
            padding-left: 14px;
            border-left: 4px solid var(--color-primary);
            line-height: 1.3;
        }

        .article-content h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--color-text);
            margin: 1.8em 0 .6em;
            line-height: 1.3;
        }

        .article-content h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--color-text);
            margin: 1.5em 0 .5em;
        }

        .article-content blockquote {
            margin: 1.8em 0;
            padding: 18px 24px;
            background: #F7F0E3;
            border-left: 4px solid var(--color-accent);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-family: var(--font-serif);
            font-size: 17px;
            color: var(--color-text);
            line-height: 1.7;
        }

        .article-content blockquote p {
            margin: .4em 0;
        }

        .article-content img {
            border-radius: var(--radius-sm);
            border: 1px solid var(--color-border);
            margin: 1.8em 0;
        }

        .article-content ul,
        .article-content ol {
            margin: 1.5em 0;
            padding-left: 1.6em;
        }

        .article-content li {
            margin: .5em 0;
        }

        .article-content ul li::marker {
            color: var(--color-accent);
        }

        .article-content a {
            color: var(--color-primary);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .article-content a:hover {
            color: var(--color-accent);
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8em 0;
            border-radius: var(--radius-sm);
            overflow: hidden;
            font-size: 15px;
        }

        .article-content table th {
            background: var(--color-primary);
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }

        .article-content table td {
            padding: 11px 16px;
            border-bottom: 1px solid var(--color-border);
            background: #fff;
        }

        .article-content table tr:nth-child(even) td {
            background: #F9F7F1;
        }

        .article-content table tr:hover td {
            background: var(--color-accent-soft);
        }

        /* ===== Tag List ===== */
        .article-tags {
            padding: 32px 0 8px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .article-tags .tag-label {
            font-size: 14px;
            color: var(--color-muted);
            font-weight: 600;
        }

        .tag-item {
            display: inline-block;
            font-size: 13px;
            font-weight: 500;
            color: var(--color-body);
            background: #ECE8DF;
            padding: 5px 16px;
            border-radius: var(--radius-full);
            transition: all .2s;
        }

        .tag-item:hover {
            background: var(--color-accent);
            color: #fff;
        }

        /* ===== Prev / Next ===== */
        .prev-next {
            margin: 36px 0 20px;
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .prev-next a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 18px 6px;
            transition: all .2s;
        }

        .prev-next a+.prev-next-item {
            border-top: 1px solid var(--color-border);
        }

        .prev-next .direction {
            font-size: 13px;
            color: var(--color-muted);
            flex-shrink: 0;
        }

        .prev-next .title {
            font-size: 15px;
            font-weight: 600;
            color: var(--color-text);
            flex: 1;
            text-align: left;
        }

        .prev-next .arrow {
            color: var(--color-accent);
            font-size: 18px;
            flex-shrink: 0;
        }

        .prev-next a:hover .title {
            color: var(--color-accent);
        }

        .prev-next a:hover .arrow {
            transform: translateX(4px);
        }

        /* ===== Related Section ===== */
        .related-section {
            margin: 48px 0 24px;
        }

        .related-section .section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .related-section .section-head h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--color-text);
            position: relative;
        }

        .related-section .section-head h2::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--color-accent);
            border-radius: 3px;
        }

        .related-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 4px 2px 20px;
            scroll-snap-type: x mandatory;
        }

        .related-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .related-scroll::-webkit-scrollbar-thumb {
            background: #D8D3C8;
            border-radius: 6px;
        }

        .related-card {
            flex: 0 0 260px;
            background: var(--color-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--color-border);
            transition: all .25s;
            scroll-snap-align: start;
        }

        .related-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: var(--color-accent);
        }

        .related-card .rc-cover {
            width: 100%;
            height: 146px;
            object-fit: cover;
        }

        .related-card .rc-body {
            padding: 16px 16px 18px;
        }

        .related-card .rc-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--color-text);
            line-height: 1.5;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-card .rc-time {
            font-size: 13px;
            color: var(--color-muted);
        }

        /* ===== Back Links ===== */
        .back-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 20px 0 40px;
            flex-wrap: wrap;
        }

        .back-links a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 600;
            color: var(--color-primary);
            padding: 10px 24px;
            border-radius: var(--radius-full);
            background: #fff;
            border: 1px solid var(--color-border);
            transition: all .2s;
        }

        .back-links a:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-soft);
        }

        /* ===== Not Found ===== */
        .not-found-section {
            padding: 120px 24px;
            text-align: center;
        }

        .not-found-card {
            max-width: 520px;
            margin: 0 auto;
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border);
            padding: 48px 40px;
            box-shadow: var(--shadow-soft);
        }

        .not-found-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--color-accent-soft);
            color: var(--color-accent);
            font-size: 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            line-height: 1;
        }

        .not-found-card h1 {
            font-size: 28px;
            font-weight: 800;
            color: var(--color-text);
            margin-bottom: 12px;
        }

        .not-found-card p {
            font-size: 15px;
            color: var(--color-muted);
            margin-bottom: 28px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--color-primary-dark);
            color: rgba(241, 237, 228, 0.72);
            font-size: 14px;
            margin-top: 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            padding: 60px 0 40px;
        }

        .footer-brand .brand-logo {
            margin-bottom: 14px;
        }

        .footer-brand .brand-text {
            color: var(--color-dark-text);
            font-size: 18px;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            max-width: 360px;
        }

        .footer-col h5 {
            color: var(--color-dark-text);
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 10px;
        }

        .footer-col a {
            color: rgba(241, 237, 228, 0.72);
            font-size: 14px;
            transition: color .2s;
        }

        .footer-col a:hover {
            color: var(--color-accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: rgba(241, 237, 228, 0.5);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1023px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 60px;
                right: 0;
                left: 0;
                bottom: 0;
                background: rgba(245, 242, 234, 0.98);
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding: 24px 24px 40px;
                overflow-y: auto;
                z-index: 99;
            }

            .nav-links.mobile-open {
                display: flex;
            }

            .nav-links a {
                padding: 16px 20px;
                font-size: 17px;
                border-radius: var(--radius-md);
                border-bottom: 1px solid var(--color-border);
            }

            .nav-links a.active::after {
                display: none;
            }

            .nav-links a.active {
                background: rgba(11, 60, 51, .08);
            }

            .menu-toggle {
                display: flex;
            }

            .header-actions .status-badge {
                display: none;
            }

            .site-header {
                height: 60px;
            }

            .brand-text {
                font-size: 17px;
            }
        }

        @media (max-width: 767px) {
            .container-site {
                padding: 0 16px;
            }

            .countdown-badge {
                display: none;
            }

            .article-title {
                font-size: 26px;
                line-height: 1.35;
            }

            .article-body-wrap {
                padding: 0 16px;
            }

            .article-content p:first-child {
                font-size: 16px;
            }

            .article-content h2 {
                font-size: 22px;
            }

            .article-content h3 {
                font-size: 18px;
            }

            .prev-next a {
                padding: 16px 4px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 40px 0 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                padding: 18px 0;
            }

            .back-links {
                gap: 12px;
                padding: 16px 0 32px;
            }

            .back-links a {
                font-size: 14px;
                padding: 10px 18px;
            }

            .not-found-section {
                padding: 60px 16px;
            }

            .not-found-card {
                padding: 32px 24px;
            }

            .related-card {
                flex-basis: 220px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

/* roulang page: category2 */
:root {
            --color-primary: #0B3C33;
            --color-primary-dark: #07241E;
            --color-primary-light: #175B4C;
            --color-accent: #C19A5B;
            --color-accent-light: #D4AE72;
            --color-accent-soft: #F0E6D4;
            --color-bg: #F5F2EA;
            --color-deep: #0B2A23;
            --color-text: #18231F;
            --color-body: #3D4A44;
            --color-muted: #77837C;
            --color-border: #E7E1D4;
            --radius-card: 16px;
            --radius-img: 20px;
            --shadow-soft: 0 1px 2px rgba(15,45,38,.04), 0 8px 24px rgba(15,45,38,.06);
            --shadow-hover: 0 4px 8px rgba(15,45,38,.06), 0 16px 32px rgba(15,45,38,.10);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            background: var(--color-bg);
            color: var(--color-body);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; transition: color .2s ease; }
        ul, ol { list-style: none; }
        button, input { font-family: inherit; outline: none; border: none; }
        h1, h2, h3, h4, h5 { color: var(--color-text); line-height: 1.3; font-weight: 700; }

        .container-site {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            height: 72px;
            background: rgba(245, 242, 234, 0.96);
            border-bottom: 1px solid var(--color-border);
            transition: box-shadow .3s ease;
        }
        .site-header.scrolled { box-shadow: 0 2px 12px rgba(7, 36, 30, 0.06); }
        .header-inner {
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-logo svg { width: 38px; height: 38px; }
        .brand-text {
            font-weight: 800;
            font-size: 19px;
            color: var(--color-primary);
            letter-spacing: 0.01em;
            white-space: nowrap;
        }
        .brand-text span {
            color: var(--color-accent);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav-links a {
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--color-body);
            border-radius: 8px;
            position: relative;
            transition: all .2s ease;
        }
        .nav-links a:hover { color: var(--color-primary); background: rgba(11, 60, 51, 0.05); }
        .nav-links a.active {
            color: var(--color-primary);
            font-weight: 700;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 2px;
            height: 2px;
            border-radius: 2px;
            background: var(--color-accent);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .status-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-online-green);
            background: rgba(47, 125, 92, 0.10);
            padding: 5px 14px;
            border-radius: 999px;
        }
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-online-green);
            animation: pulse-dot 2s ease infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { box-shadow: 0 0 0 0 rgba(47, 125, 92, 0.4); }
            50% { box-shadow: 0 0 0 6px rgba(47, 125, 92, 0); }
        }
        .countdown-tag {
            font-size: 13px;
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            color: var(--color-accent);
            background: var(--color-accent-soft);
            padding: 5px 12px;
            border-radius: 999px;
            letter-spacing: 0.04em;
        }
        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--color-primary);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 999px;
            transition: all .25s ease;
            white-space: nowrap;
        }
        .btn-cta:hover {
            background: var(--color-accent);
            color: var(--color-primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(193, 154, 91, 0.35);
        }
        .btn-cta svg { transition: transform .25s ease; }
        .btn-cta:hover svg { transform: translateX(4px); }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            background: transparent;
            cursor: pointer;
            border-radius: 10px;
            transition: background .2s;
        }
        .menu-toggle:hover { background: rgba(11, 60, 51, 0.06); }
        .menu-toggle svg { width: 24px; height: 24px; stroke: var(--color-primary); }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: var(--color-bg);
            border-bottom: 1px solid var(--color-border);
            padding: 16px 16px 24px;
            box-shadow: 0 12px 32px rgba(7, 36, 30, 0.12);
            z-index: 49;
        }
        .mobile-menu.open { display: block; }
        .mobile-menu .nav-links-mobile {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .mobile-menu .nav-links-mobile a {
            padding: 12px 16px;
            font-size: 16px;
            font-weight: 500;
            color: var(--color-body);
            border-radius: 10px;
        }
        .mobile-menu .nav-links-mobile a:hover { background: rgba(11, 60, 51, 0.05); color: var(--color-primary); }
        .mobile-menu .nav-links-mobile a.active { color: var(--color-primary); font-weight: 700; background: rgba(11, 60, 51, 0.06); }
        .mobile-menu-footer-action {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* Hero Band */
        .category-hero {
            background: var(--color-bg);
            padding: 72px 0 56px;
            border-bottom: 1px solid var(--color-border);
            position: relative;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--color-accent);
        }
        .category-hero .container-site {
            max-width: 840px;
            margin-left: auto;
            margin-right: auto;
        }
        .category-hero h1 {
            font-size: 40px;
            line-height: 1.25;
            color: var(--color-primary);
            font-weight: 800;
            letter-spacing: -0.01em;
            margin-bottom: 16px;
        }
        .category-hero h1 .brand-highlight { color: var(--color-accent); }
        .category-hero p {
            font-size: 17px;
            color: var(--color-body);
            line-height: 1.8;
            max-width: 720px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }
        .hero-tags span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-primary);
            background: #fff;
            border: 1px solid var(--color-border);
            padding: 6px 14px;
            border-radius: 999px;
        }
        .hero-tags span svg { width: 14px; height: 14px; stroke: var(--color-accent); }

        /* Anchor nav */
        .anchor-nav-wrap {
            background: #fff;
            border-bottom: 1px solid var(--color-border);
            padding: 14px 0;
            position: sticky;
            top: 72px;
            z-index: 30;
        }
        .anchor-nav {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }
        .anchor-nav::-webkit-scrollbar { display: none; }
        .anchor-nav a {
            display: inline-block;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--color-body);
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: 999px;
            white-space: nowrap;
            transition: all .2s ease;
        }
        .anchor-nav a:hover {
            color: var(--color-primary);
            border-color: var(--color-accent);
            background: var(--color-accent-soft);
        }
        .anchor-nav a.active {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
        }

        /* Section base */
        .section-block { padding: 80px 0; }
        .section-title-wrap { margin-bottom: 40px; }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-accent);
            margin-bottom: 12px;
        }
        .section-label svg { width: 18px; height: 18px; }
        .section-title {
            font-size: 32px;
            color: var(--color-primary);
            font-weight: 800;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }
        .section-desc {
            margin-top: 12px;
            font-size: 16px;
            color: var(--color-muted);
            max-width: 640px;
            line-height: 1.75;
        }

        /* Two column layout */
        .two-col-layout {
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 48px;
            align-items: start;
        }
        .content-main > * + * { margin-top: 40px; }

        .content-block h3 {
            font-size: 22px;
            color: var(--color-primary);
            margin-bottom: 14px;
            padding-left: 16px;
            position: relative;
            font-weight: 700;
        }
        .content-block h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 4px;
            border-radius: 2px;
            background: var(--color-accent);
        }
        .content-block p {
            font-size: 15.5px;
            line-height: 1.85;
            color: var(--color-body);
            margin-bottom: 16px;
        }
        .content-block ul.feature-list { margin-top: 12px; }
        .content-block ul.feature-list li {
            display: flex;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--color-border);
            font-size: 15px;
            color: var(--color-body);
            align-items: flex-start;
        }
        .content-block ul.feature-list li:last-child { border-bottom: none; }
        .content-block ul.feature-list li svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            stroke: var(--color-accent);
            margin-top: 3px;
        }
        .content-block ul.feature-list li strong { color: var(--color-primary); font-weight: 600; }

        /* Info box */
        .info-box {
            background: var(--color-accent-soft);
            border-radius: var(--radius-card);
            padding: 28px;
            border: 1px solid rgba(193, 154, 91, 0.25);
            position: sticky;
            top: 140px;
        }
        .info-box-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .info-box-title svg { width: 20px; height: 20px; stroke: var(--color-accent); }
        .info-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 12px 0;
            border-bottom: 1px solid rgba(193, 154, 91, 0.18);
        }
        .info-item:last-child { border-bottom: none; }
        .info-item .info-num {
            font-size: 14px;
            font-weight: 800;
            color: var(--color-accent);
            line-height: 1.6;
            min-width: 28px;
            font-variant-numeric: tabular-nums;
        }
        .info-item .info-text { flex: 1; }
        .info-item .info-text h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 4px;
        }
        .info-item .info-text p {
            font-size: 13.5px;
            line-height: 1.6;
            color: var(--color-body);
        }

        /* FAQ */
        .faq-section { padding: 72px 0; }
        .faq-container {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            border-top: 1px solid var(--color-border);
            padding: 0;
        }
        .faq-item:last-child { border-bottom: 1px solid var(--color-border); }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 20px 8px;
            cursor: pointer;
            font-size: 17px;
            font-weight: 600;
            color: var(--color-primary);
            background: transparent;
            width: 100%;
            text-align: left;
            transition: color .2s;
        }
        .faq-question:hover { color: var(--color-accent); }
        .faq-question .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--color-accent);
            border: 1.5px solid var(--color-accent);
            flex-shrink: 0;
            transition: all .3s ease;
        }
        .faq-item.active .faq-question { color: var(--color-accent); }
        .faq-item.active .faq-icon {
            background: var(--color-accent);
            color: #fff;
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .faq-answer-inner {
            padding: 0 8px 24px;
            font-size: 15px;
            line-height: 1.8;
            color: var(--color-body);
            border-left: 3px solid var(--color-accent);
            margin-left: 8px;
            padding-left: 20px;
        }

        /* Banner CTA */
        .banner-cta {
            background: var(--color-accent-soft);
            border-radius: var(--radius-img);
            padding: 52px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            border: 1px solid rgba(193, 154, 91, 0.3);
            margin: 32px 0 80px;
        }
        .banner-cta h3 {
            font-size: 24px;
            color: var(--color-primary);
            font-weight: 800;
            margin-bottom: 8px;
        }
        .banner-cta p {
            font-size: 15px;
            color: var(--color-body);
            max-width: 480px;
        }
        .btn-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--color-primary);
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            padding: 12px 32px;
            border-radius: 999px;
            transition: all .25s ease;
            white-space: nowrap;
        }
        .btn-light:hover {
            background: var(--color-primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(11, 60, 51, 0.25);
        }
        .btn-light svg { transition: transform .25s ease; }
        .btn-light:hover svg { transform: translateX(4px); }

        /* Footer */
        .site-footer {
            background: var(--color-primary-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 64px 0 24px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        .footer-brand .brand-logo { margin-bottom: 16px; }
        .footer-brand .brand-logo .brand-text { color: #fff; }
        .footer-brand .brand-logo .brand-text span { color: var(--color-accent); }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            max-width: 320px;
            margin-top: 14px;
        }
        .footer-col h5 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: 0.02em;
        }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: all .2s ease;
        }
        .footer-col ul li a:hover { color: var(--color-accent); padding-left: 4px; }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* Reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            * { animation: none !important; transition: none !important; }
            html { scroll-behavior: auto; }
        }

        /* Responsive */
        @media (max-width: 1023px) {
            .nav-links { display: none; }
            .menu-toggle { display: flex; }
            .header-actions .countdown-tag { display: none; }
            .two-col-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .info-box { position: static; }
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .section-block { padding: 64px 0; }
            .category-hero h1 { font-size: 34px; }
        }

        @media (max-width: 767px) {
            .container-site {
                padding-left: 16px;
                padding-right: 16px;
            }
            .site-header, .header-inner { height: 60px; }
            .anchor-nav-wrap { top: 60px; }
            .brand-logo svg { width: 32px; height: 32px; }
            .brand-text { font-size: 16px; }
            .status-badge { display: none; }
            .btn-cta { padding: 8px 18px; font-size: 13px; }
            .category-hero { padding: 48px 0 40px; }
            .category-hero h1 { font-size: 28px; }
            .category-hero p { font-size: 15px; }
            .section-block { padding: 48px 0; }
            .section-title { font-size: 26px; }
            .two-col-layout { gap: 24px; }
            .content-block h3 { font-size: 19px; }
            .info-box { padding: 20px; }
            .banner-cta {
                flex-direction: column;
                align-items: flex-start;
                padding: 32px 24px;
                margin: 16px 0 48px;
            }
            .banner-cta h3 { font-size: 20px; }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-bottom { flex-direction: column; align-items: flex-start; }
            .faq-question { font-size: 15px; padding: 16px 0; }
            .faq-answer-inner { font-size: 14px; padding-left: 16px; }
        }

        @media (max-width: 520px) {
            .hero-tags span { font-size: 12px; padding: 5px 10px; }
            .content-block ul.feature-list li { font-size: 14px; }
            .btn-light { width: 100%; justify-content: center; }
        }

/* roulang page: category3 */
:root {
  --color-primary: #0B3C33;
  --color-primary-dark: #07241E;
  --color-primary-light: #175B4C;
  --color-accent: #C19A5B;
  --color-accent-light: #D4AE72;
  --color-accent-soft: #F0E6D4;
  --color-bg: #F5F2EA;
  --color-white: #FFFFFF;
  --color-dark-bg: #0B2A23;
  --color-text-title: #18231F;
  --color-text-body: #3D4A44;
  --color-text-muted: #77837C;
  --color-text-light: #F1EDE4;
  --color-border: #E7E1D4;
  --color-soft-green: #E1EBE5;
  --color-soft-gold: #F0EBDF;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 1px 2px rgba(15,45,38,.04), 0 8px 24px rgba(15,45,38,.06);
  --shadow-hover: 0 4px 12px rgba(15,45,38,.08), 0 16px 32px rgba(15,45,38,.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--color-bg);
  color: var(--color-text-body);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }
.container-site {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-block { padding: 96px 0; }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(245, 242, 234, 0.96);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-soft);
  border-color: rgba(231, 225, 212, 0.4);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo svg { width: 38px; height: 38px; display: block; }
.brand-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: .5px;
  white-space: nowrap;
}
.brand-text span { color: var(--color-accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-body);
  padding: 8px 2px;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a.active {
  color: var(--color-primary);
  font-weight: 700;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.status-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-soft-green);
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.status-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2F7D5C;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 125, 92, .5); }
  50% { box-shadow: 0 0 0 4px rgba(47, 125, 92, 0); }
}
.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-body);
  background: var(--color-accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.countdown-num {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
  font-weight: 700;
}
.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn-header:hover {
  background: var(--color-accent);
  color: #18231F;
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1;
}

/* ========== Category Hero ========== */
.category-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 72px 0;
  overflow: hidden;
}
.hero-overlay-warm {
  position: absolute;
  inset: 0;
  background: linear-gradient(82deg, rgba(74, 44, 18, 0.94), rgba(17, 40, 30, 0.78), rgba(11, 42, 35, 0.35));
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-text-light);
  max-width: 820px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: .6px;
}
.category-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: .5px;
  color: #fff;
}
.category-hero h1 span { color: var(--color-accent-light); }
.hero-desc {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(241, 237, 228, 0.9);
  max-width: 720px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(241, 237, 228, 0.78);
}
.hero-meta span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ========== Section Head ========== */
.section-head { margin-bottom: 40px; max-width: 780px; }
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-soft-green);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
  letter-spacing: .8px;
}
.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-text-title);
  line-height: 1.3;
  margin-bottom: 12px;
}
.section-head p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ========== Data Table ========== */
.data-section {
  background: var(--color-soft-gold);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.table-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.data-table thead th {
  background: var(--color-primary);
  color: #fff;
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .4px;
  white-space: nowrap;
}
.data-table thead th:first-child {
  border-top-left-radius: 0;
}
.data-table thead th:last-child {
  border-top-right-radius: 0;
}
.data-table tbody td {
  padding: 17px 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  color: var(--color-text-body);
}
.data-table tbody tr:nth-child(even) {
  background: #F9F7F1;
}
.data-table tbody tr:hover {
  background: var(--color-accent-soft);
  transition: background .2s ease;
}
.data-table tbody tr:last-child td {
  border-bottom: none;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2F7D5C;
  margin-right: 7px;
  vertical-align: middle;
}
.table-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.table-note::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ========== Horizontal Cards ========== */
.cards-section { background: var(--color-bg); }
.h-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.h-scroll::-webkit-scrollbar {
  height: 6px;
  background: transparent;
}
.h-scroll::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 6px;
}
.h-card {
  flex: 0 0 280px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  scroll-snap-align: start;
}
.h-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent);
}
.h-card-img {
  height: 160px;
  overflow: hidden;
  background: var(--color-soft-green);
}
.h-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.h-card:hover .h-card-img img {
  transform: scale(1.05);
}
.h-card-body {
  padding: 20px;
}
.h-card-body .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-soft-green);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: .4px;
}
.h-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-title);
  line-height: 1.45;
  margin-bottom: 10px;
  transition: color .2s ease;
}
.h-card:hover .h-card-body h3 {
  color: var(--color-primary);
}
.h-card-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.h-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-muted);
}
.h-card-meta .read-link {
  color: var(--color-primary);
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.h-card-meta .read-link:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

/* ========== Wide CTA ========== */
.cta-section {
  background: var(--color-bg);
  padding-top: 20px;
}
.wide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--color-dark-bg);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.wide-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
}
.cta-left h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-light);
  margin-bottom: 12px;
  line-height: 1.35;
}
.cta-left p {
  font-size: 15px;
  color: rgba(241, 237, 228, 0.8);
  line-height: 1.8;
  max-width: 520px;
}
.cta-right {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-shrink: 0;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #18231F;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  min-height: 44px;
}
.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(241, 237, 228, 0.42);
  color: var(--color-text-light);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-light);
  transform: translateY(-2px);
}

/* ========== Footer ========== */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(241, 237, 228, 0.72);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .brand-text {
  color: var(--color-text-light);
}
.footer-brand .brand-text span {
  color: var(--color-accent);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(241, 237, 228, 0.58);
  max-width: 360px;
}
.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 18px;
  letter-spacing: .4px;
}
.footer-col ul li {
  margin-bottom: 11px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(241, 237, 228, 0.66);
  transition: color .2s ease, padding-left .2s ease;
}
.footer-col ul li a:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(241, 237, 228, 0.5);
}

/* ========== Responsive ========== */
@media (max-width: 1023px) {
  .nav-links {
    gap: 20px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .wide-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 40px;
  }
  .cta-right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
  .container-site {
    padding: 0 16px;
  }
  .section-block {
    padding: 64px 0;
  }
  .site-header {
    height: 60px;
  }
  .brand-logo svg {
    width: 34px;
    height: 34px;
  }
  .brand-text {
    font-size: 18px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    background: rgba(245, 242, 234, 0.98);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(231, 225, 212, 0.6);
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links a.active::after {
    bottom: 0;
    height: 2px;
  }
  .header-actions {
    gap: 10px;
    margin-left: auto;
  }
  .header-actions .status-label,
  .header-actions .countdown-label {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .category-hero {
    min-height: auto;
    padding: 56px 0;
  }
  .category-hero h1 {
    font-size: 30px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-meta {
    gap: 12px;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .section-head p {
    font-size: 15px;
  }
  .h-card {
    flex: 0 0 250px;
  }
  .wide-cta {
    padding: 40px 24px;
    gap: 28px;
  }
  .cta-left h2 {
    font-size: 23px;
  }
  .cta-right {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 639px) {
  .brand-logo .brand-text span {
    display: inline;
  }
  .header-inner {
    gap: 16px;
  }
  .btn-header {
    padding: 9px 16px;
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
