/* roulang page: index */
/* ========== 设计变量 ========== */
        :root {
            --primary: #F59E0B;
            --primary-dark: #D97706;
            --primary-light: #FBBF24;
            --primary-deep: #EA580C;
            --primary-gradient: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #EA580C 100%);
            --ink: #1C1917;
            --bg: #FAF7F2;
            --bg-alt: #F2EDE4;
            --teal: #0F9A8C;
            --text-main: #292524;
            --text-weak: #78716C;
            --border-soft: #E7E0D3;
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 14px;
            --radius-pill: 999px;
            --shadow-card: 0 2px 12px rgba(28, 25, 23, 0.06);
            --shadow-hover: 0 12px 32px rgba(28, 25, 23, 0.12);
            --shadow-btn: 0 8px 24px rgba(245, 158, 11, 0.35);
            --transition: 200ms ease;
        }

        /* ========== Reset / Base ========== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            background: var(--bg);
            color: var(--text-main);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        img {
            max-width: 100%;
            display: block;
        }
        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }
        input {
            font-family: inherit;
        }
        .container {
            max-width: 1140px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== 通用标题 ========== */
        .section-title {
            font-size: clamp(26px, 3.2vw, 38px);
            font-weight: 700;
            color: var(--ink);
            line-height: 1.25;
            letter-spacing: 1px;
        }
        .section-subtitle {
            font-size: 16px;
            color: var(--text-weak);
            max-width: 640px;
            line-height: 1.7;
        }
        .section-head {
            margin-bottom: 48px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .section-head .link-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 600;
            color: var(--primary-dark);
            border-bottom: 2px solid transparent;
            transition: border-color var(--transition);
        }
        .section-head .link-more:hover {
            border-color: var(--primary);
        }

        /* ========== 按钮 ========== */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--primary-gradient);
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: var(--radius-pill);
            box-shadow: var(--shadow-btn);
            transition: transform var(--transition), box-shadow var(--transition);
            border: none;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 32px rgba(245, 158, 11, 0.45);
            color: #fff;
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--ink);
            font-size: 16px;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: var(--radius-pill);
            border: 1.5px solid var(--border-soft);
            transition: border-color var(--transition), background var(--transition), transform var(--transition);
        }
        .btn-secondary:hover {
            border-color: var(--primary);
            background: rgba(245, 158, 11, 0.08);
            transform: translateY(-3px);
        }
        .btn-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #fff;
            color: var(--primary-dark);
            font-size: 16px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-pill);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            transition: transform var(--transition), box-shadow var(--transition);
            border: none;
        }
        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            color: var(--primary-dark);
        }

        /* ========== 导航 ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 80px;
            display: flex;
            align-items: center;
            background: rgba(250, 247, 242, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: background 0.3s, box-shadow 0.3s, height 0.3s;
            border-bottom: 1px solid transparent;
        }
        .site-header.scrolled {
            background: rgba(250, 247, 242, 0.92);
            box-shadow: 0 4px 20px rgba(28, 25, 23, 0.08);
            border-bottom-color: var(--border-soft);
            height: 72px;
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 24px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: 1px;
            flex-shrink: 0;
        }
        .brand-logo:hover {
            color: var(--ink);
        }
        .brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--primary-gradient);
            color: #fff;
            font-size: 16px;
        }
        .nav-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-chip {
            display: inline-block;
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 500;
            color: rgba(28, 25, 23, 0.75);
            background: transparent;
            transition: background var(--transition), color var(--transition), transform var(--transition);
        }
        .nav-chip:hover {
            background: rgba(245, 158, 11, 0.12);
            color: var(--ink);
        }
        .nav-chip.active {
            background: var(--primary-gradient);
            color: #fff;
            font-weight: 600;
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            background: var(--ink);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            transition: background var(--transition), transform var(--transition);
        }
        .btn-nav-cta:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
        }
        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--bg-alt);
            color: var(--ink);
            font-size: 18px;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-soft);
        }

        /* 移动端抽屉 */
        .mobile-drawer {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1100;
            background: var(--bg);
            display: flex;
            flex-direction: column;
            padding: 24px;
            transform: translateX(100%);
            transition: transform 0.35s ease;
            visibility: hidden;
        }
        .mobile-drawer.active {
            transform: translateX(0);
            visibility: visible;
        }
        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .drawer-logo {
            font-size: 22px;
            font-weight: 800;
            color: var(--ink);
        }
        .drawer-close {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--bg-alt);
            color: var(--ink);
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-soft);
        }
        .drawer-body {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }
        .drawer-link {
            display: block;
            padding: 16px 20px;
            border-radius: var(--radius-md);
            font-size: 17px;
            font-weight: 600;
            color: var(--ink);
            background: var(--bg-alt);
            transition: background var(--transition);
        }
        .drawer-link.active,
        .drawer-link:hover {
            background: var(--primary-gradient);
            color: #fff;
        }
        .drawer-btn {
            margin-top: auto;
            width: 100%;
            text-align: center;
        }
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(28, 25, 23, 0.5);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
        }
        .drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ========== Hero 首屏 ========== */
        .hero-section {
            padding: 160px 0 96px;
            position: relative;
            background:
                radial-gradient(ellipse 600px 400px at left top, rgba(245, 158, 11, 0.12), transparent 60%),
                var(--bg);
        }
        .hero-row {
            align-items: center;
        }
        .hero-content {
            padding-right: 20px;
        }
        .hero-tagline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-dark);
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.25);
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            margin-bottom: 24px;
            letter-spacing: 1px;
        }
        .hero-title {
            font-size: clamp(32px, 4.5vw, 52px);
            font-weight: 800;
            line-height: 1.1;
            color: var(--ink);
            letter-spacing: 2px;
            margin-bottom: 16px;
        }
        .hero-title .accent {
            color: var(--primary-dark);
            position: relative;
        }
        .hero-subtitle {
            font-size: 20px;
            color: var(--text-main);
            font-weight: 500;
            margin-bottom: 16px;
            line-height: 1.5;
        }
        .hero-desc {
            font-size: 15px;
            color: var(--text-weak);
            max-width: 480px;
            margin-bottom: 32px;
            line-height: 1.7;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .hero-visual {
            position: relative;
        }
        .hero-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            position: relative;
        }
        .hero-card img {
            width: 100%;
            height: 380px;
            object-fit: cover;
        }
        .hero-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(28, 25, 23, 0.35), transparent 50%);
            pointer-events: none;
        }
        .hero-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: rgba(28, 25, 23, 0.92);
            border-radius: var(--radius-pill);
            padding: 12px 20px;
            backdrop-filter: blur(8px);
        }
        .hero-badge .badge-num {
            font-family: Arial, Helvetica, sans-serif;
            font-size: clamp(28px, 3vw, 40px);
            font-weight: 700;
            background: linear-gradient(135deg, #FBBF24, #F59E0B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .hero-badge .badge-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.4;
            font-weight: 400;
        }

        /* ========== 品牌理念区 ========== */
        .about-section {
            padding: 96px 0;
            background: var(--bg);
        }
        .about-row {
            align-items: center;
        }
        .about-visual {
            position: relative;
        }
        .about-visual img {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            height: 340px;
            object-fit: cover;
        }
        .about-tag {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--primary-gradient);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
        }
        .about-content {
            padding-left: 20px;
        }
        .about-content .section-title {
            margin-bottom: 24px;
        }
        .about-text {
            font-size: 16px;
            color: var(--text-main);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .about-stats {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 32px;
        }
        .stat-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--ink);
            border-radius: var(--radius-pill);
            padding: 14px 24px;
        }
        .stat-badge .badge-num {
            font-family: Arial, Helvetica, sans-serif;
            font-size: clamp(24px, 2.5vw, 32px);
            font-weight: 700;
            background: linear-gradient(135deg, #FBBF24, #F59E0B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            white-space: nowrap;
        }
        .stat-badge .badge-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.3;
        }

        /* ========== 精选内容卡区 ========== */
        .featured-section {
            padding: 96px 0;
            background: var(--bg-alt);
        }
        .featured-row {
            margin-top: -16px;
        }
        .featured-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #fff;
            box-shadow: var(--shadow-card);
            transition: transform var(--transition), box-shadow var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .featured-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .featured-card.middle-up {
            margin-top: 16px;
        }
        .featured-thumb {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/2;
        }
        .featured-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .featured-card:hover .featured-thumb img {
            transform: scale(1.03);
        }
        .featured-cat {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary-dark);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        .featured-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .featured-body h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .featured-body p {
            font-size: 14px;
            color: var(--text-weak);
            line-height: 1.6;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .featured-link {
            margin-top: 20px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-dark);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            border-bottom: 2px solid transparent;
            align-self: flex-start;
            transition: border-color var(--transition);
        }
        .featured-link:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
        }

        /* ========== 最新资讯 CMS ========== */
        .news-section {
            padding: 96px 0;
            background: var(--bg);
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .news-item {
            display: flex;
            align-items: center;
            gap: 24px;
            background: #fff;
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: box-shadow var(--transition), transform var(--transition);
        }
        .news-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .news-thumb {
            width: 96px;
            height: 72px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-info {
            flex: 1;
            min-width: 0;
        }
        .news-info h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 4px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .news-info p {
            font-size: 13px;
            color: var(--text-weak);
            line-height: 1.5;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 6px;
        }
        .news-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-weak);
            flex-wrap: wrap;
        }
        .news-cat {
            display: inline-block;
            background: rgba(245, 158, 11, 0.12);
            color: var(--primary-dark);
            font-size: 12px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(245, 158, 11, 0.2);
        }
        .news-link {
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 13px;
            border-bottom: 2px solid transparent;
            transition: border-color var(--transition);
        }
        .news-link:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
        }
        .empty-state {
            background: rgba(245, 158, 11, 0.08);
            border: 1px dashed rgba(245, 158, 11, 0.3);
            border-radius: var(--radius-md);
            padding: 40px;
            text-align: center;
            color: var(--text-weak);
            font-size: 16px;
            margin-bottom: 32px;
        }
        .news-footer {
            text-align: center;
            margin-top: 40px;
        }

        /* ========== 信任背书区 ========== */
        .trust-section {
            padding: 96px 0;
            background: var(--bg-alt);
            position: relative;
        }
        .trust-banner {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
            opacity: 0.08;
            pointer-events: none;
        }
        .trust-section .container {
            position: relative;
            z-index: 1;
        }
        .trust-intro {
            text-align: center;
            font-size: 18px;
            color: var(--ink);
            font-weight: 500;
            max-width: 640px;
            margin: 0 auto 48px;
            line-height: 1.6;
        }
        .trust-stats {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .trust-stats .stat-badge {
            min-width: 220px;
            justify-content: center;
        }

        /* ========== 订阅 CTA ========== */
        .subscribe-section {
            padding: 96px 0;
            background: var(--bg);
        }
        .subscribe-card {
            background: var(--primary-gradient);
            border-radius: var(--radius-lg);
            padding: 56px;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(234, 88, 12, 0.25);
        }
        .subscribe-card::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        .subscribe-card::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: 30%;
            width: 160px;
            height: 160px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }
        .subscribe-card .row {
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .subscribe-card h2 {
            font-size: clamp(24px, 2.8vw, 34px);
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .subscribe-card .sub-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            max-width: 420px;
        }
        .subscribe-form {
            display: flex;
            gap: 12px;
            background: #fff;
            border-radius: var(--radius-pill);
            padding: 6px 6px 6px 24px;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .subscribe-form input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 15px;
            padding: 10px 0;
            color: var(--ink);
            background: transparent;
        }
        .subscribe-form input::placeholder {
            color: var(--text-weak);
        }
        .subscribe-form .btn-submit {
            background: var(--ink);
            color: #fff;
            border-radius: var(--radius-pill);
            padding: 12px 28px;
            font-size: 14px;
            font-weight: 600;
            transition: background var(--transition), transform var(--transition);
            border: none;
            white-space: nowrap;
        }
        .subscribe-form .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        .toast-tip {
            position: fixed;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #fff;
            border-radius: var(--radius-pill);
            padding: 14px 28px;
            box-shadow: 0 8px 32px rgba(28, 25, 23, 0.15);
            font-size: 15px;
            font-weight: 500;
            z-index: 2000;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transition: transform 0.3s, opacity 0.3s;
            pointer-events: none;
        }
        .toast-tip.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        .toast-tip .tip-icon.success {
            color: var(--success);
        }
        .toast-tip .tip-icon.error {
            color: var(--danger);
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.8);
            padding: 72px 0 0;
            font-size: 15px;
        }
        .site-footer h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-brand .brand-mark {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            font-size: 14px;
        }
        .footer-about {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 0;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            position: relative;
            transition: color var(--transition);
        }
        .footer-links a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-light);
            transition: width var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-light);
        }
        .footer-links a:hover::after {
            width: 100%;
        }
        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-contact li i {
            color: var(--primary);
            width: 16px;
            text-align: center;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 56px;
            padding: 24px 0;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
        }

        /* ========== 响应式 ========== */
        @media (max-width: 991px) {
            .hero-section {
                padding: 130px 0 72px;
            }
            .hero-row {
                gap: 48px;
            }
            .hero-card img {
                height: 280px;
            }
            .about-row {
                gap: 40px;
            }
            .about-content {
                padding-left: 0;
            }
            .featured-card.middle-up {
                margin-top: 0;
            }
            .nav-chips {
                display: none;
            }
            .btn-nav-cta {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
        }
        @media (max-width: 767px) {
            .hero-section {
                padding: 120px 0 56px;
            }
            .hero-card img {
                height: 220px;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-actions .btn-primary,
            .hero-actions .btn-secondary {
                width: 100%;
            }
            .subscribe-card {
                padding: 32px 24px;
            }
            .subscribe-form {
                flex-direction: column;
                padding: 16px;
                border-radius: var(--radius-md);
            }
            .subscribe-form input {
                width: 100%;
                padding: 12px 16px;
                border-bottom: 1px solid var(--border-soft);
            }
            .subscribe-form .btn-submit {
                width: 100%;
                margin-top: 8px;
            }
            .news-item {
                flex-direction: column;
                align-items: flex-start;
            }
            .news-thumb {
                width: 100%;
                height: 160px;
            }
            .news-thumb img {
                height: 100%;
                width: 100%;
            }
            .about-stats {
                flex-direction: column;
            }
            .stat-badge {
                width: 100%;
                justify-content: center;
            }
            .trust-stats {
                flex-direction: column;
                align-items: center;
            }
            .trust-stats .stat-badge {
                width: 100%;
            }
            .footer-bottom {
                font-size: 12px;
                line-height: 1.6;
            }
        }
        @media (max-width: 575px) {
            .site-header .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .brand-logo {
                font-size: 20px;
            }
            .featured-body {
                padding: 20px;
            }
            .news-meta {
                gap: 8px;
            }
        }
        @media (min-width: 768px) and (max-width: 991px) {
            .news-item {
                padding: 16px;
            }
            .news-thumb {
                width: 80px;
                height: 64px;
            }
        }
        @media (min-width: 992px) {
            .hero-visual {
                padding-left: 10px;
            }
        }

        /* ========== 焦点可访问性 ========== */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 3px solid rgba(245, 158, 11, 0.5);
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* ========== 减少动画偏好 ========== */
        @media (prefers-reduced-motion: reduce) {
            * {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }
        }

/* roulang page: category1 */
/* ========== Design Tokens ========== */
        :root {
            --primary: #F59E0B;
            --primary-dark: #D97706;
            --primary-light: #FBBF24;
            --primary-deep: #EA580C;
            --primary-gradient: linear-gradient(135deg, #FBBF24, #F59E0B, #EA580C);
            --accent: #0F9A8C;
            --ink: #1C1917;
            --ink-soft: #44403C;
            --text-muted: #78716C;
            --bg: #FAF7F2;
            --bg-alt: #F2EDE4;
            --border: #E7E0D6;
            --white: #FFFFFF;
            --success: #2F7D4F;
            --danger: #C0392B;
            --warning: #F5A524;
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --radius-pill: 999px;
            --shadow-card: 0 2px 12px rgba(28, 25, 23, 0.06);
            --shadow-hover: 0 12px 32px rgba(28, 25, 23, 0.12);
            --shadow-gold: 0 8px 28px rgba(245, 158, 11, 0.28);
            --transition: 200ms ease;
            --font-sans: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --section-pad: clamp(56px, 8vw, 96px);
        }

        /* ========== Base Reset ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            color: var(--ink);
            background-color: var(--bg);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
        }

        input {
            font-family: inherit;
        }

        .container {
            max-width: 1140px;
        }

        section {
            padding: var(--section-pad) 0;
        }

        h1,
        h2,
        h3,
        h4 {
            line-height: 1.25;
            color: var(--ink);
            font-weight: 800;
        }

        :focus-visible {
            outline: 3px solid rgba(245, 158, 11, 0.5);
            outline-offset: 2px;
            border-radius: 4px;
        }

        ::selection {
            background: rgba(245, 158, 11, 0.25);
            color: var(--ink);
        }

        /* ========== Header / Nav ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(250, 247, 242, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(231, 224, 214, 0.7);
            transition: box-shadow var(--transition), background var(--transition);
        }

        .site-header.scrolled {
            box-shadow: 0 6px 24px rgba(28, 25, 23, 0.08);
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            height: 72px;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--ink);
            flex-shrink: 0;
        }

        .brand-logo:hover {
            color: var(--ink);
        }

        .brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: var(--primary-gradient);
            color: #fff;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
            flex-shrink: 0;
        }

        .nav-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-chip {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 600;
            color: rgba(28, 25, 23, 0.75);
            background: transparent;
            border: 1px solid transparent;
            transition: all var(--transition);
            line-height: 1.4;
            white-space: nowrap;
        }

        .nav-chip:hover {
            color: var(--primary-dark);
            background: rgba(245, 158, 11, 0.08);
            border-color: rgba(245, 158, 11, 0.18);
        }

        .nav-chip.active {
            background: var(--primary-gradient);
            color: #fff;
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-gradient);
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            padding: 11px 24px;
            border-radius: var(--radius-pill);
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .btn-nav-cta:hover {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(245, 158, 11, 0.4);
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(245, 158, 11, 0.12);
            color: var(--primary-dark);
            font-size: 18px;
            align-items: center;
            justify-content: center;
            transition: background var(--transition);
        }

        .nav-toggle:hover {
            background: rgba(245, 158, 11, 0.22);
        }

        .nav-toggle.active i::before {
            content: "\f00d";
        }

        /* ========== Buttons ========== */
        .btn-primary-wukong {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-gradient);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            padding: 14px 32px;
            border-radius: var(--radius-pill);
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            border: none;
        }

        .btn-primary-wukong:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
        }

        .btn-outline-wukong {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--ink);
            font-weight: 700;
            font-size: 16px;
            padding: 13px 30px;
            border-radius: var(--radius-pill);
            border: 2px solid rgba(28, 25, 23, 0.2);
            transition: all var(--transition);
        }

        .btn-outline-wukong:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* ========== Category Hero Banner ========== */
        .category-hero-wrap {
            padding-top: clamp(32px, 5vw, 56px);
            padding-bottom: 0;
        }

        .category-hero {
            position: relative;
            border-radius: var(--radius-lg);
            min-height: 200px;
            padding: 52px 56px;
            color: #fff;
            background:
                linear-gradient(100deg, rgba(28, 25, 23, 0.55) 0%, rgba(28, 25, 23, 0.15) 50%, rgba(28, 25, 23, 0.05) 100%),
                var(--primary-gradient);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            box-shadow: 0 16px 48px rgba(245, 158, 11, 0.3);
        }

        .category-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: 0.16;
            mix-blend-mode: overlay;
        }

        .category-hero-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
        }

        .category-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.28);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            margin-bottom: 18px;
            backdrop-filter: blur(4px);
        }

        .category-hero h1 {
            color: #fff;
            font-size: clamp(30px, 4.5vw, 46px);
            line-height: 1.15;
            margin-bottom: 14px;
            text-shadow: 0 2px 12px rgba(28, 25, 23, 0.2);
        }

        .category-hero p {
            color: rgba(255, 255, 255, 0.92);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 0;
            max-width: 580px;
            text-shadow: 0 1px 6px rgba(28, 25, 23, 0.15);
        }

        .category-hero-icon {
            position: relative;
            z-index: 2;
            flex-shrink: 0;
            width: 96px;
            height: 96px;
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #fff;
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 28px rgba(28, 25, 23, 0.18);
        }

        /* ========== Category Intro ========== */
        .category-intro {
            padding-bottom: 0;
        }

        .category-intro .intro-box {
            max-width: 820px;
            margin: 0 auto;
            text-align: center;
            padding: 40px 48px;
            background: var(--bg-alt);
            border-radius: var(--radius-lg);
            border-left: 4px solid var(--primary);
        }

        .category-intro .intro-text {
            font-size: 17px;
            line-height: 1.85;
            color: var(--ink-soft);
            margin-bottom: 16px;
        }

        .category-intro .count-info {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.7);
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            border: 1px solid var(--border);
        }

        .category-intro .count-info i {
            color: var(--primary-dark);
        }

        /* ========== Filter Chips ========== */
        .event-list-section {
            padding-top: var(--section-pad);
        }

        .filter-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }

        .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            margin-right: 4px;
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 22px;
            border-radius: var(--radius-pill);
            font-size: 14px;
            font-weight: 600;
            color: var(--ink-soft);
            background: var(--bg-alt);
            border: 1px solid transparent;
            transition: all var(--transition);
            cursor: pointer;
        }

        .filter-chip:hover {
            border-color: rgba(245, 158, 11, 0.4);
            color: var(--primary-dark);
            background: rgba(245, 158, 11, 0.08);
        }

        .filter-chip.active {
            background: var(--primary-gradient);
            color: #fff;
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
        }

        /* ========== Event Cards ========== */
        .event-card {
            background: var(--white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: transform var(--transition), box-shadow var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(231, 224, 214, 0.6);
        }

        .event-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .event-card-img {
            position: relative;
            aspect-ratio: 3 / 2;
            overflow: hidden;
            background: var(--bg-alt);
        }

        .event-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 400ms ease;
        }

        .event-card:hover .event-card-img img {
            transform: scale(1.04);
        }

        .event-card-tag {
            position: absolute;
            top: 16px;
            left: 16px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(250, 247, 242, 0.92);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            color: var(--primary-dark);
            font-size: 13px;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(245, 158, 11, 0.3);
            box-shadow: 0 2px 8px rgba(28, 25, 23, 0.1);
        }

        .event-card-body {
            padding: 24px 24px 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .event-card-body h3 {
            font-size: 18px;
            line-height: 1.45;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color var(--transition);
        }

        .event-card:hover .event-card-body h3 {
            color: var(--primary-dark);
        }

        .event-card-body p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .event-card-foot {
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid rgba(231, 224, 214, 0.7);
        }

        .event-date {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .event-date i {
            color: var(--primary);
            font-size: 14px;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-dark);
            transition: gap var(--transition), color var(--transition);
            border: none;
            background: none;
            padding: 4px 0;
        }

        .read-more:hover {
            color: var(--primary-deep);
            gap: 10px;
        }

        .view-all-wrap {
            text-align: center;
            margin-top: 48px;
        }

        /* ========== Subscribe Section ========== */
        .subscribe-section {
            padding-top: var(--section-pad);
            padding-bottom: var(--section-pad);
        }

        .subscribe-card {
            position: relative;
            background: var(--primary-gradient);
            border-radius: var(--radius-lg);
            padding: clamp(32px, 5vw, 56px);
            color: #fff;
            overflow: hidden;
            box-shadow: 0 20px 56px rgba(245, 158, 11, 0.32);
        }

        .subscribe-card::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }

        .subscribe-card::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: 20%;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }

        .subscribe-card h2 {
            color: #fff;
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }

        .subscribe-card .sub-desc {
            color: rgba(255, 255, 255, 0.92);
            font-size: 16px;
            line-height: 1.75;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
            max-width: 480px;
        }

        .subscribe-form {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .subscribe-form .form-control {
            flex: 1;
            min-width: 220px;
            background: #fff;
            border: none;
            border-radius: 14px;
            height: 54px;
            padding: 0 22px;
            font-size: 15px;
            color: var(--ink);
            box-shadow: none;
            transition: box-shadow var(--transition);
        }

        .subscribe-form .form-control::placeholder {
            color: #A8A29E;
        }

        .subscribe-form .form-control:focus {
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
            outline: none;
        }

        .btn-subscribe {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #fff;
            color: var(--primary-dark);
            font-weight: 800;
            font-size: 15px;
            padding: 0 30px;
            height: 54px;
            border-radius: var(--radius-pill);
            transition: all var(--transition);
            white-space: nowrap;
            border: none;
        }

        .btn-subscribe:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(28, 25, 23, 0.2);
        }

        /* ========== Toast ========== */
        .toast-tip {
            position: fixed;
            top: 90px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1200;
            padding: 14px 28px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            box-shadow: 0 12px 32px rgba(28, 25, 23, 0.2);
            opacity: 0;
            animation: toastIn 300ms ease forwards;
        }

        .toast-tip.success {
            background: var(--success);
        }

        .toast-tip.error {
            background: var(--danger);
        }

        @keyframes toastIn {
            from {
                opacity: 0;
                transform: translate(-50%, -12px);
            }
            to {
                opacity: 1;
                transform: translate(-50%, 0);
            }
        }

        /* ========== Footer ========== */
        .site-footer {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.72);
            padding: 64px 0 20px;
            margin-top: 0;
        }

        .site-footer .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }

        .site-footer .footer-brand .brand-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            font-size: 15px;
        }

        .footer-about {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 0;
            max-width: 320px;
        }

        .site-footer h4 {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 10px;
        }

        .site-footer h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 28px;
            height: 3px;
            border-radius: 3px;
            background: var(--primary-gradient);
        }

        .footer-links,
        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li,
        .footer-contact li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            transition: color var(--transition);
            position: relative;
            padding-bottom: 2px;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            text-decoration: none;
            border-bottom: 2px solid var(--primary-light);
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        .footer-contact li i {
            color: var(--primary);
            font-size: 15px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .footer-bottom {
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            text-align: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            margin: 0;
        }

        /* ========== Responsive ========== */
        @media (max-width: 991.98px) {
            .nav-chip {
                padding: 8px 16px;
                font-size: 14px;
            }

            .category-hero {
                padding: 40px 36px;
                min-height: 180px;
            }

            .category-hero-icon {
                width: 80px;
                height: 80px;
                font-size: 32px;
                border-radius: 22px;
            }

            .subscribe-form {
                flex-direction: column;
            }

            .subscribe-form .form-control {
                width: 100%;
            }

            .btn-subscribe {
                width: 100%;
            }
        }

        @media (max-width: 767.98px) {
            .site-header .container {
                gap: 12px;
            }

            .brand-logo {
                font-size: 19px;
            }

            .brand-mark {
                width: 34px;
                height: 34px;
                font-size: 14px;
                border-radius: 10px;
            }

            .nav-chips {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: rgba(250, 247, 242, 0.97);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                padding: 24px 20px;
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                display: none;
                box-shadow: 0 20px 40px rgba(28, 25, 23, 0.1);
                border-bottom: 1px solid var(--border);
                max-height: calc(100vh - 72px);
                overflow-y: auto;
            }

            .nav-chips.open {
                display: flex;
            }

            .nav-chip {
                justify-content: center;
                padding: 14px 20px;
                font-size: 16px;
            }

            .nav-toggle {
                display: inline-flex;
            }

            .btn-nav-cta {
                display: none;
            }

            .category-hero {
                padding: 36px 24px;
                min-height: 168px;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .category-hero-icon {
                display: none;
            }

            .category-hero p {
                font-size: 15px;
            }

            .category-intro .intro-box {
                padding: 28px 20px;
            }

            .category-intro .intro-text {
                font-size: 16px;
            }

            .filter-bar {
                gap: 8px;
            }

            .filter-chip {
                padding: 8px 18px;
                font-size: 13px;
            }

            .subscribe-card {
                padding: 36px 24px;
            }

            .site-footer {
                padding: 48px 0 16px;
            }

            .site-footer h4 {
                margin-bottom: 14px;
            }
        }

        @media (max-width: 575.98px) {
            .brand-logo {
                font-size: 18px;
            }

            .category-hero h1 {
                font-size: 28px;
            }

            .category-hero-tag {
                font-size: 13px;
                padding: 5px 14px;
            }

            .event-card-body {
                padding: 20px 18px 16px;
            }

            .event-card-body h3 {
                font-size: 17px;
            }

            .event-card-foot {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .filter-label {
                display: none;
            }

            .filter-bar {
                justify-content: flex-start;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

/* roulang page: article */
:root {
            --primary: #F59E0B;
            --primary-dark: #D97706;
            --primary-light: #FBBF24;
            --accent: #0F9A8C;
            --ink: #1C1917;
            --ink-soft: #57534E;
            --ink-muted: #8A7F75;
            --bg-main: #FAF7F2;
            --bg-alt: #F2EDE4;
            --bg-card: #FFFFFF;
            --border-soft: #EAE3DA;
            --gold-bg: #FEF3C7;
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --radius-pill: 999px;
            --shadow-sm: 0 2px 12px rgba(28, 25, 23, 0.06);
            --shadow-lg: 0 12px 32px rgba(28, 25, 23, 0.12);
            --transition: 200ms ease;
            --gradient-brand: linear-gradient(135deg, #FBBF24, #F59E0B, #EA580C);
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
            background: var(--bg-main);
            color: var(--ink);
            line-height: 1.75;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        button {
            border: none;
            background: none;
            cursor: pointer;
            font-family: inherit;
        }
        input,
        textarea {
            font-family: inherit;
        }
        .container {
            max-width: 1140px;
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: all var(--transition);
            background: transparent;
        }
        .site-header.scrolled {
            background: rgba(250, 247, 242, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-sm);
            padding: 8px 0;
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            color: var(--ink);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .brand-logo:hover {
            color: var(--ink);
        }
        .brand-mark {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: var(--gradient-brand);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
            flex-shrink: 0;
        }
        .nav-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-chip {
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 600;
            color: rgba(28, 25, 23, 0.75);
            background: transparent;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-chip:hover {
            color: var(--ink);
            background: rgba(245, 158, 11, 0.1);
        }
        .nav-chip.active {
            background: var(--gradient-brand);
            color: #fff;
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .btn-nav-cta {
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            background: var(--gradient-brand);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            transition: all var(--transition);
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
            white-space: nowrap;
        }
        .btn-nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
            color: #fff;
        }
        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--bg-alt);
            color: var(--ink);
            font-size: 18px;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(245, 158, 11, 0.15);
        }

        .article-hero {
            position: relative;
            padding: 150px 0 70px;
            color: #fff;
            background: linear-gradient(135deg, rgba(28, 25, 23, 0.86), rgba(28, 25, 23, 0.62)), url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
            overflow: hidden;
        }
        .article-hero::after {
            content: '';
            position: absolute;
            right: -80px;
            top: -80px;
            width: 300px;
            height: 300px;
            background: rgba(245, 158, 11, 0.12);
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
        }
        .article-hero .container {
            position: relative;
            z-index: 2;
        }
        .breadcrumb-wrap {
            margin-bottom: 28px;
        }
        .breadcrumb-wrap .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }
        .breadcrumb-wrap .breadcrumb-item {
            font-size: 14px;
        }
        .breadcrumb-wrap .breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
            transition: color var(--transition);
        }
        .breadcrumb-wrap .breadcrumb a:hover {
            color: var(--primary-light);
            text-decoration: none;
        }
        .breadcrumb-wrap .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.4);
        }
        .breadcrumb-wrap .breadcrumb-item.active {
            color: rgba(255, 255, 255, 0.92);
            max-width: 260px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: inline-block;
            vertical-align: bottom;
        }
        .article-cat-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            background: rgba(245, 158, 11, 0.2);
            border: 1px solid rgba(245, 158, 11, 0.4);
            color: var(--primary-light);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .article-title {
            font-size: clamp(30px, 4.2vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 22px;
            max-width: 820px;
            word-break: break-word;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 24px;
            align-items: center;
            color: rgba(255, 255, 255, 0.75);
            font-size: 14px;
        }
        .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .meta-item i {
            color: var(--primary-light);
            font-size: 14px;
        }

        .article-main {
            padding: 64px 0 40px;
        }
        .article-body {
            max-width: 820px;
            margin: 0 auto;
        }
        .article-content {
            font-size: 17px;
            line-height: 1.85;
            color: #3D3A36;
        }
        .article-content p {
            margin-bottom: 24px;
        }
        .article-content img {
            max-width: 100%;
            border-radius: var(--radius-sm);
            margin: 28px auto;
            display: block;
            box-shadow: var(--shadow-sm);
        }
        .article-content h2 {
            font-size: 26px;
            font-weight: 700;
            margin: 44px 0 18px;
            padding-left: 14px;
            border-left: 4px solid var(--primary);
            line-height: 1.4;
        }
        .article-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 34px 0 14px;
            padding-left: 14px;
            border-left: 4px solid var(--primary-light);
            line-height: 1.4;
        }
        .article-content blockquote {
            padding: 18px 22px;
            border-left: 4px solid var(--primary);
            background: rgba(254, 243, 199, 0.4);
            border-radius: 8px;
            margin: 28px 0;
            color: var(--ink);
            font-style: normal;
        }
        .article-content a {
            color: var(--primary-dark);
            border-bottom: 1px solid transparent;
            transition: border-color var(--transition);
        }
        .article-content a:hover {
            border-bottom-color: var(--primary-dark);
        }
        .article-content ul,
        .article-content ol {
            margin: 16px 0 24px;
            padding-left: 24px;
        }
        .article-content li {
            margin-bottom: 8px;
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 15px;
        }
        .article-content table th,
        .article-content table td {
            border: 1px solid var(--border-soft);
            padding: 10px 14px;
            text-align: left;
        }
        .article-content table th {
            background: var(--bg-alt);
            font-weight: 700;
        }
        .article-disclaimer {
            margin-top: 44px;
            padding-top: 20px;
            border-top: 1px solid var(--border-soft);
            font-size: 13px;
            color: var(--ink-muted);
            line-height: 1.6;
        }

        .not-found-box {
            text-align: center;
            padding: 70px 30px;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            max-width: 620px;
            margin: 0 auto;
        }
        .not-found-box .nf-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 20px;
            border-radius: 24px;
            background: rgba(245, 158, 11, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--primary);
        }
        .not-found-box h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--ink);
        }
        .not-found-box p {
            color: var(--ink-soft);
            margin-bottom: 28px;
            font-size: 15px;
        }
        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 32px;
            border-radius: var(--radius-pill);
            background: var(--gradient-brand);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            transition: all var(--transition);
            box-shadow: 0 6px 18px rgba(245, 158, 11, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(245, 158, 11, 0.4);
            color: #fff;
        }

        .prev-next-section {
            padding: 40px 0 24px;
        }
        .prev-next-card {
            display: block;
            padding: 22px 26px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            border: 1px solid transparent;
            height: 100%;
        }
        .prev-next-card:hover {
            box-shadow: var(--shadow-lg);
            background: var(--gold-bg);
            transform: translateY(-3px);
            border-color: rgba(245, 158, 11, 0.25);
        }
        .prev-next-card.text-end .pn-label {
            justify-content: flex-end;
        }
        .pn-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--ink-muted);
            margin-bottom: 6px;
            font-weight: 500;
        }
        .pn-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            display: block;
        }

        .related-section {
            padding: 60px 0 72px;
            background: var(--bg-alt);
        }
        .section-title {
            font-size: clamp(26px, 3.2vw, 38px);
            font-weight: 800;
            line-height: 1.25;
            color: var(--ink);
            margin-bottom: 40px;
        }
        .section-title.text-center {
            text-align: center;
        }
        .section-title-sub {
            display: block;
            font-size: 14px;
            color: var(--ink-muted);
            font-weight: 400;
            margin-top: 8px;
        }
        .related-card {
            display: flex;
            gap: 16px;
            padding: 16px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            height: 100%;
            flex-direction: row;
            align-items: center;
        }
        .related-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            background: #fff;
        }
        .related-thumb {
            width: 96px;
            height: 72px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: var(--bg-alt);
        }
        .related-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
        }
        .related-info h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            color: var(--ink);
            transition: color var(--transition);
        }
        .related-card:hover .related-info h3 {
            color: var(--primary-dark);
        }
        .related-cat {
            font-size: 13px;
            color: var(--primary-dark);
            font-weight: 500;
        }
        .related-empty {
            text-align: center;
            padding: 32px 24px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: var(--radius-md);
            border: 1px dashed var(--border-soft);
            color: var(--ink-muted);
            font-size: 15px;
            max-width: 520px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .related-empty i {
            color: var(--primary);
        }

        .cta-subscribe {
            padding: 72px 0;
        }
        .cta-card {
            background: var(--gradient-brand);
            border-radius: var(--radius-lg);
            padding: 48px 52px;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(245, 158, 11, 0.3);
        }
        .cta-card::before {
            content: '';
            position: absolute;
            right: -40px;
            bottom: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            pointer-events: none;
        }
        .cta-card h2 {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .cta-card p {
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 0;
            font-size: 15px;
        }
        .subscribe-form {
            display: flex;
            gap: 12px;
        }
        .subscribe-form .form-control {
            flex: 1;
            padding: 14px 20px;
            border-radius: 14px;
            border: none;
            font-size: 15px;
            background: #fff;
            outline: none;
            transition: all var(--transition);
            box-shadow: none;
            color: var(--ink);
        }
        .subscribe-form .form-control:focus {
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
        }
        .subscribe-form .form-control::placeholder {
            color: var(--ink-muted);
        }
        .btn-subscribe {
            padding: 14px 30px;
            border-radius: var(--radius-pill);
            background: #fff;
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 15px;
            white-space: nowrap;
            transition: all var(--transition);
            border: none;
        }
        .btn-subscribe:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            color: var(--primary-dark);
        }

        .site-footer {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.75);
            padding: 72px 0 0;
        }
        .site-footer h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-brand .brand-mark {
            width: 34px;
            height: 34px;
            font-size: 14px;
        }
        .footer-about {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            max-width: 320px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            transition: all var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-light);
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-thickness: 2px;
        }
        .footer-contact {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
        }
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .footer-contact i {
            color: var(--primary-light);
            margin-right: 4px;
            width: 16px;
            margin-top: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            margin-top: 48px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 991.98px) {
            .article-hero {
                padding: 120px 0 56px;
            }
            .cta-card {
                padding: 36px 28px;
            }
            .cta-card h2 {
                font-size: 24px;
            }
            .subscribe-form {
                margin-top: 20px;
            }
            .article-title {
                font-size: 32px;
            }
        }

        @media (max-width: 767.98px) {
            .site-header {
                padding: 12px 0;
            }
            .site-header .container {
                gap: 8px;
            }
            .brand-logo {
                font-size: 20px;
            }
            .brand-mark {
                width: 32px;
                height: 32px;
                font-size: 14px;
                border-radius: 10px;
            }
            .btn-nav-cta {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .nav-chips {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                background: var(--bg-main);
                padding: 20px 24px;
                box-shadow: 0 20px 40px rgba(28, 25, 23, 0.12);
                transform: translateY(-16px);
                opacity: 0;
                visibility: hidden;
                transition: all 300ms ease;
                border-radius: 0 0 20px 20px;
                z-index: 1001;
                gap: 8px;
            }
            .nav-chips.open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .nav-chip {
                text-align: center;
                padding: 12px 20px;
                font-size: 16px;
                width: 100%;
            }
            .nav-chip.active {
                background: var(--gradient-brand);
                color: #fff;
            }
            .article-hero {
                padding: 110px 0 48px;
            }
            .article-hero .breadcrumb-wrap {
                margin-bottom: 20px;
            }
            .article-title {
                font-size: 26px;
                line-height: 1.25;
            }
            .article-meta {
                gap: 10px 16px;
                font-size: 13px;
            }
            .article-main {
                padding: 44px 0 24px;
            }
            .article-body {
                padding: 0 4px;
            }
            .article-content {
                font-size: 16px;
                line-height: 1.8;
            }
            .article-content p {
                margin-bottom: 20px;
            }
            .prev-next-section {
                padding: 28px 0 16px;
            }
            .prev-next-card {
                padding: 16px 20px;
            }
            .related-section {
                padding: 44px 0 56px;
            }
            .section-title {
                margin-bottom: 28px;
            }
            .related-card {
                padding: 14px;
            }
            .related-thumb {
                width: 80px;
                height: 64px;
            }
            .cta-subscribe {
                padding: 48px 0;
            }
            .cta-card {
                padding: 32px 20px;
                border-radius: 16px;
            }
            .subscribe-form {
                flex-direction: column;
            }
            .subscribe-form .btn-subscribe {
                width: 100%;
                justify-content: center;
            }
            .site-footer {
                padding: 48px 0 0;
            }
            .footer-bottom {
                margin-top: 32px;
                font-size: 12px;
                line-height: 1.6;
            }
        }
