/* roulang page: index */
:root {
    --primary: #007A4D;
    --primary-light: #00A862;
    --accent: #FF6B35;
    --accent-light: #FF8B5E;
    --bg: #F5F7FA;
    --card-bg: #FFFFFF;
    --text-main: #1A2B2E;
    --text-muted: #5E6E70;
    --border: #E5ECEA;
    --footer-bg: #003D2D;
    --gradient: linear-gradient(135deg, #007A4D 0%, #00A862 50%, #FF6B35 100%);
    --radius-card: 16px;
    --radius-hero: 24px;
    --shadow-card: 0 4px 20px rgba(0, 52, 33, 0.06);
    --shadow-card-hover: 0 8px 30px rgba(0, 82, 51, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select {
    font-family: inherit;
}

/* 导航 */
.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 52, 33, 0.08);
}

.nav-link {
    position: relative;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* 品牌 Logo 灯箱 */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #007A4D, #00A862);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 122, 77, 0.3);
}

/* 按钮 */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #007A4D, #00A862);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 122, 77, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 122, 77, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-primary:focus {
    outline: 2px solid rgba(0, 122, 77, 0.5);
    outline-offset: 2px;
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF6B35, #FF8B5E);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.btn-accent:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-accent:active {
    transform: scale(0.97);
}

.btn-accent:focus {
    outline: 2px solid rgba(255, 107, 53, 0.5);
    outline-offset: 2px;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-light:active {
    transform: scale(0.97);
}

.btn-outline-light:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* 卡片 */
.card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.card-large {
    border-radius: 24px;
}

/* 时间线 */
.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #007A4D, #00A862, #FF6B35);
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 122, 77, 0.15);
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 8px;
    }
    .timeline-dot {
        left: 8px;
        transform: translateX(-50%);
    }
}

/* 状态标签 */
.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}

.status-tag-ongoing {
    background: rgba(0, 168, 98, 0.12);
    color: #00A862;
}

.status-tag-open {
    background: rgba(0, 122, 77, 0.12);
    color: #007A4D;
}

.status-tag-upcoming {
    background: rgba(255, 107, 53, 0.12);
    color: #FF6B35;
}

.status-tag-end {
    background: rgba(183, 196, 194, 0.2);
    color: #8A9A98;
}

/* 分类标签 */
.category-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(0, 122, 77, 0.1);
    color: var(--primary);
}

/* 推荐角标 */
.recommend-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B35, #FF8B5E);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    letter-spacing: 1px;
}

/* FAQ */
.faq-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-card-hover);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    min-height: 56px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-main);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 122, 77, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
    color: var(--primary);
}

.faq-icon.rotate {
    transform: rotate(45deg);
    background: rgba(0, 122, 77, 0.15);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    background: #F8FAFB;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

/* 表单 */
.form-input,
.form-select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 15px;
    color: var(--text-main);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 122, 77, 0.12);
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 6px;
}

/* 页脚 */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.85);
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* 数据徽章 */
.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* 空态图标 */
.empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 122, 77, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 24px;
}

/* 移动端下拉菜单 */
.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(0, 122, 77, 0.05);
    color: var(--primary);
}

/* 图片渐变遮罩通用 */
.overlay-gradient {
    background: linear-gradient(to right, rgba(0, 61, 45, 0.92) 0%, rgba(0, 122, 77, 0.7) 50%, rgba(255, 107, 53, 0.45) 100%);
}

/* 阅读链接 */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 8px;
}

/* 卡片标题截断 */
.title-2line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.summary-2line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 焦点可见性 */
a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(0, 122, 77, 0.6);
    outline-offset: 2px;
    border-radius: 4px;
}

/* 整卡链接 */
.card-link-wrap {
    position: relative;
}

.card-link-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* roulang page: category1 */
:root {
            --primary: #007A4D;
            --primary-light: #00A862;
            --accent: #FF6B35;
            --accent-light: #FF8B5E;
            --bg-light: #F5F7FA;
            --card: #FFFFFF;
            --text-main: #1A2B2E;
            --text-sub: #5E6E70;
            --border: #E5ECEA;
            --dark-green: #003D2D;
            --gradient: linear-gradient(135deg, #007A4D 0%, #00A862 50%, #FF6B35 100%);
            --shadow-sm: 0 4px 20px rgba(0, 52, 33, 0.06);
            --shadow-hover: 0 8px 30px rgba(0, 82, 51, 0.12);
            --radius-card: 16px;
            --radius-lg: 24px;
            --radius-btn: 12px;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background: var(--bg-light);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color .2s ease;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        input,
        select,
        textarea {
            outline: none;
            font-family: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        /* ===== Header ===== */
        .site-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: box-shadow .3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            padding: 8px 16px;
            border-radius: 8px;
            transition: color .2s ease, background .2s ease;
        }
        .nav-link:hover {
            color: var(--primary);
        }
        .nav-link::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 2px;
            height: 2px;
            border-radius: 2px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .3s ease;
        }
        .nav-link:hover::after {
            transform: scaleX(1);
        }
        .nav-link.active {
            color: var(--primary);
            font-weight: 700;
        }
        .nav-link.active::after {
            transform: scaleX(1);
        }
        .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: var(--gradient);
            color: #fff;
            font-size: 18px;
            box-shadow: 0 4px 14px rgba(0, 122, 77, 0.3);
        }
        .mobile-menu {
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 12px 24px 16px;
            display: none;
        }
        .mobile-menu.open {
            display: block;
        }
        .mobile-link {
            display: block;
            padding: 12px 16px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-main);
            border-radius: 10px;
        }
        .mobile-link:hover {
            background: rgba(0, 122, 77, 0.08);
            color: var(--primary);
        }
        .mobile-link.active {
            color: var(--primary);
            font-weight: 700;
            background: rgba(0, 122, 77, 0.08);
        }
        /* ===== Hero ===== */
        .category-hero {
            position: relative;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            padding: 88px 0 72px;
        }
        .category-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 61, 45, 0.92) 0%, rgba(0, 122, 77, 0.75) 55%, rgba(255, 107, 53, 0.45) 100%);
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-title {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 16px;
        }
        .hero-subtitle {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 680px;
            margin-bottom: 32px;
            line-height: 1.8;
        }
        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            font-size: 16px;
            font-weight: 600;
            transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
        }
        .hero-btn-primary {
            background: var(--gradient);
            color: #fff;
            box-shadow: 0 4px 18px rgba(0, 122, 77, 0.35);
        }
        .hero-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 26px rgba(0, 122, 77, 0.4);
            filter: brightness(1.05);
        }
        .hero-btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(4px);
        }
        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 40px;
        }
        .stat-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 999px;
            padding: 12px 24px;
            backdrop-filter: blur(6px);
        }
        .stat-num {
            font-size: 32px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
        }
        .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.75);
        }
        /* ===== Section ===== */
        .section {
            padding: 72px 0;
        }
        .section-alt {
            background: #fff;
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-sub);
            font-size: 16px;
            max-width: 640px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }
        .section-title-left {
            text-align: left;
        }
        /* ===== Schedule Cards ===== */
        .schedule-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform .3s ease, box-shadow .3s ease;
            position: relative;
        }
        .schedule-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .schedule-card-media {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        .schedule-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .schedule-card:hover .schedule-card-media img {
            transform: scale(1.04);
        }
        .schedule-card-body {
            padding: 24px;
        }
        .schedule-card-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .schedule-card-desc {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .schedule-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            color: var(--text-sub);
            border-top: 1px solid var(--border);
            padding-top: 16px;
        }
        .status-badge {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.4;
        }
        .status-register {
            background: rgba(0, 122, 77, 0.12);
            color: var(--primary);
        }
        .status-upcoming {
            background: rgba(255, 107, 53, 0.12);
            color: #d5541f;
        }
        .status-prepare {
            background: rgba(94, 110, 112, 0.12);
            color: var(--text-sub);
        }
        .status-final {
            background: rgba(255, 107, 53, 0.18);
            color: #d5541f;
        }
        /* ===== Sidebar ===== */
        .sidebar-card {
            background: var(--card);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            padding: 24px;
            margin-bottom: 24px;
        }
        .sidebar-card-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-card-title i {
            color: var(--primary);
        }
        .match-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .match-item:last-child {
            border-bottom: none;
        }
        .match-item-name {
            font-size: 14px;
            font-weight: 500;
        }
        .match-item-time {
            font-size: 12px;
            color: var(--text-sub);
        }
        .match-item .status-badge {
            font-size: 11px;
            padding: 3px 10px;
        }
        .sidebar-notice {
            background: linear-gradient(135deg, rgba(0, 122, 77, 0.08), rgba(255, 107, 53, 0.06));
            border: 1px solid rgba(0, 122, 77, 0.15);
            border-radius: 14px;
            padding: 16px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }
        .sidebar-contact {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 2;
        }
        .sidebar-contact i {
            color: var(--primary);
            width: 20px;
            text-align: center;
            margin-right: 4px;
        }
        /* ===== Feature Cards ===== */
        .feature-card {
            background: var(--card);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            padding: 32px 28px;
            transition: transform .3s ease, box-shadow .3s ease;
            position: relative;
            overflow: hidden;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .feature-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: rgba(0, 122, 77, 0.1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 18px;
        }
        .feature-card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .feature-card-desc {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.7;
        }
        .feature-card-large {
            background: var(--gradient);
            color: #fff;
            border-radius: var(--radius-lg);
        }
        .feature-card-large .feature-card-icon {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        .feature-card-large .feature-card-title {
            color: #fff;
            font-size: 20px;
        }
        .feature-card-large .feature-card-desc {
            color: rgba(255, 255, 255, 0.85);
        }
        /* ===== Process ===== */
        .process-section {
            background: var(--dark-green);
            color: #fff;
        }
        .process-section .section-title {
            color: #fff;
        }
        .process-section .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }
        .process-step {
            text-align: center;
            padding: 32px 24px;
            position: relative;
        }
        .process-step-num {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: #fff;
            margin: 0 auto 20px;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
        }
        .process-step-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .process-step-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }
        .process-arrow {
            color: rgba(255, 255, 255, 0.3);
            font-size: 20px;
            position: absolute;
            top: 50%;
            right: -10px;
            transform: translateY(-50%);
        }
        /* ===== FAQ ===== */
        .faq-item {
            background: var(--card);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-sm);
            margin-bottom: 16px;
            overflow: hidden;
            transition: box-shadow .3s ease;
        }
        .faq-item.open {
            box-shadow: 0 8px 30px rgba(0, 82, 51, 0.1);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: color .2s ease;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question .icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            border-radius: 50%;
            background: rgba(0, 122, 77, 0.1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: transform .3s ease, background .3s ease;
        }
        .faq-item.open .icon {
            transform: rotate(45deg);
            background: rgba(255, 107, 53, 0.15);
            color: var(--accent);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease;
            background: #f9fbfa;
        }
        .faq-answer-inner {
            padding: 4px 24px 20px;
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
        }
        /* ===== CTA Box ===== */
        .cta-box {
            background: var(--gradient);
            border-radius: var(--radius-lg);
            padding: 56px;
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: "";
            position: absolute;
            top: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        .cta-box::after {
            content: "";
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
        }
        .cta-form {
            position: relative;
            z-index: 2;
            max-width: 520px;
            margin: 0 auto;
        }
        .cta-form .form-group {
            margin-bottom: 16px;
        }
        .cta-form label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 6px;
        }
        .cta-form input,
        .cta-form select {
            width: 100%;
            height: 48px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.95);
            padding: 0 16px;
            font-size: 15px;
            color: var(--text-main);
            transition: box-shadow .2s ease, border-color .2s ease;
        }
        .cta-form input:focus,
        .cta-form select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 122, 77, 0.2);
        }
        .cta-form .btn-submit {
            width: 100%;
            height: 50px;
            border-radius: var(--radius-btn);
            background: #fff;
            color: var(--primary);
            font-size: 16px;
            font-weight: 700;
            border: none;
            transition: transform .2s ease, box-shadow .2s ease;
            cursor: pointer;
        }
        .cta-form .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .cta-form .btn-submit:active {
            transform: scale(0.97);
        }
        /* ===== Footer ===== */
        .site-footer {
            background: var(--dark-green);
            color: #fff;
        }
        .footer-title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .footer-link {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            padding: 6px 0;
            transition: color .2s ease, padding-left .2s ease;
        }
        .footer-link:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 40px;
            padding-top: 24px;
        }
        .footer-bottom p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }
        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 30px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .hero-stats {
                gap: 8px;
            }
            .stat-chip {
                padding: 10px 16px;
            }
            .stat-num {
                font-size: 24px;
            }
            .section-title {
                font-size: 26px;
            }
            .section {
                padding: 48px 0;
            }
            .process-step {
                padding: 20px;
            }
            .process-arrow {
                display: none;
            }
            .cta-box {
                padding: 32px 20px;
                border-radius: 18px;
            }
            .schedule-card-media {
                height: 180px;
            }
        }
        @media (max-width: 520px) {
            .hero-title {
                font-size: 24px;
            }
            .hero-btn {
                width: 100%;
                justify-content: center;
                margin-bottom: 8px;
            }
            .stat-chip {
                flex-direction: column;
                align-items: flex-start;
                gap: 2px;
            }
            .schedule-card-body {
                padding: 16px;
            }
            .feature-card {
                padding: 24px 20px;
            }
            .faq-question {
                font-size: 14px;
                padding: 16px;
            }
            .cta-form input,
            .cta-form select {
                height: 44px;
            }
        }

/* roulang page: article */
:root {
            --primary: #007A4D;
            --primary-light: #00A862;
            --accent: #FF6B35;
            --accent-light: #FF8B5E;
            --bg: #F5F7FA;
            --card: #FFFFFF;
            --text: #1A2B2E;
            --text-secondary: #5E6E70;
            --border: #E5ECEA;
            --radius: 16px;
            --radius-lg: 24px;
            --shadow: 0 4px 20px rgba(0, 52, 33, 0.06);
            --shadow-hover: 0 8px 30px rgba(0, 82, 51, 0.12);
            --gradient: linear-gradient(135deg, #007A4D, #00A862, #FF6B35);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            border: none;
            background: none;
            cursor: pointer;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 50;
            transition: box-shadow 0.3s;
        }

        .site-header.scrolled {
            box-shadow: 0 6px 24px rgba(0, 52, 33, 0.08);
        }

        .logo-center {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 10px;
            border-radius: 12px;
            transition: background 0.3s;
        }

        .logo-center:hover {
            background: rgba(0, 122, 77, 0.06);
        }

        .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--gradient);
            color: #fff;
            font-size: 18px;
            box-shadow: 0 4px 14px rgba(0, 122, 77, 0.25);
            flex-shrink: 0;
        }

        .header-logo-name {
            font-size: 18px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.15;
            letter-spacing: 0.5px;
        }

        .header-logo-sub {
            font-size: 10px;
            letter-spacing: 0.2em;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .nav-link {
            position: relative;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            border-radius: 8px;
            transition: color 0.25s, background 0.25s;
            white-space: nowrap;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 2px;
            height: 2px;
            border-radius: 2px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .nav-link:hover {
            color: var(--primary);
            background: rgba(0, 122, 77, 0.04);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }

        .mobile-toggle {
            display: inline-flex;
            width: 44px;
            height: 44px;
            border: 1px solid var(--border);
            border-radius: 12px;
            align-items: center;
            justify-content: center;
            background: #fff;
            color: var(--text);
            font-size: 18px;
            transition: all 0.25s;
        }

        .mobile-toggle:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .mobile-menu {
            display: none;
            padding: 12px 16px 18px;
            background: #fff;
            border-top: 1px solid var(--border);
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-link {
            display: block;
            padding: 12px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            border-radius: 10px;
            transition: all 0.25s;
        }

        .mobile-link:hover {
            background: rgba(0, 122, 77, 0.06);
            color: var(--primary);
        }

        /* ===== Article Hero ===== */
        .article-hero {
            position: relative;
            min-height: 240px;
            display: flex;
            align-items: flex-end;
            background: url('/assets/images/backpic/back-1.webp') center center / cover no-repeat;
        }

        .article-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0, 61, 45, 0.92), rgba(0, 168, 98, 0.56), rgba(255, 107, 53, 0.36));
        }

        .article-hero .hero-inner {
            position: relative;
            z-index: 1;
            padding: 36px 0 28px;
        }

        .hero-category-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.35);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.04em;
            padding: 6px 16px;
            border-radius: 999px;
            backdrop-filter: blur(6px);
            margin-bottom: 12px;
        }

        .breadcrumb {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4px;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.25s;
        }

        .breadcrumb a:hover {
            color: #fff;
        }

        .breadcrumb .sep {
            color: rgba(255, 255, 255, 0.45);
            padding: 0 4px;
        }

        .breadcrumb .current {
            color: #fff;
            font-weight: 500;
            max-width: 300px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* ===== Main Article Card ===== */
        .article-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 48px 52px;
            margin-top: -48px;
            position: relative;
            z-index: 2;
        }

        .article-title {
            font-size: 34px;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text);
            margin-bottom: 18px;
            letter-spacing: -0.01em;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px 24px;
            padding-bottom: 22px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .article-meta i {
            color: var(--primary);
            width: 16px;
            text-align: center;
        }

        .article-content {
            font-size: 17px;
            line-height: 1.85;
            color: var(--text);
        }

        .article-content p {
            margin-bottom: 20px;
        }

        .article-content h2 {
            font-size: 26px;
            font-weight: 700;
            margin: 40px 0 16px;
            color: var(--text);
            border-left: 4px solid var(--primary);
            padding-left: 16px;
            line-height: 1.4;
        }

        .article-content h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 30px 0 12px;
            color: var(--text);
        }

        .article-content blockquote {
            border-left: 4px solid var(--accent);
            background: #FFF7F4;
            padding: 18px 22px;
            border-radius: 0 14px 14px 0;
            color: var(--text-secondary);
            margin: 24px 0;
            font-size: 16px;
        }

        .article-content img {
            border-radius: 14px;
            margin: 24px 0;
        }

        .article-content ul,
        .article-content ol {
            margin: 0 0 20px;
            padding-left: 26px;
        }

        .article-content ul li,
        .article-content ol li {
            margin-bottom: 8px;
        }

        .article-content a {
            color: var(--primary);
            font-weight: 600;
            border-bottom: 1px solid rgba(0, 122, 77, 0.3);
            transition: border-color 0.25s;
        }

        .article-content a:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .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);
            padding: 12px 14px;
            text-align: left;
        }

        .article-content table th {
            background: rgba(0, 122, 77, 0.06);
            font-weight: 600;
        }

        .article-content code {
            background: #F0F3F2;
            border-radius: 6px;
            padding: 2px 8px;
            font-size: 14px;
            color: var(--primary);
        }

        /* ===== Tags ===== */
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 26px;
            margin-top: 34px;
            border-top: 1px solid var(--border);
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 122, 77, 0.08);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid rgba(0, 122, 77, 0.12);
            transition: all 0.25s;
        }

        .tag-pill:hover {
            background: rgba(0, 122, 77, 0.14);
            transform: translateY(-1px);
        }

        /* ===== Prev / Next ===== */
        .article-prev-next {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 16px;
            margin-top: 34px;
            padding-top: 26px;
            border-top: 1px solid var(--border);
        }

        .prev-link,
        .next-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            background: #F8FAF9;
            border: 1px solid var(--border);
            padding: 12px 20px;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .prev-link:hover,
        .next-link:hover {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(0, 122, 77, 0.04);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .prev-link i,
        .next-link i {
            color: var(--primary);
        }

        /* ===== Not Found ===== */
        .not-found {
            text-align: center;
            padding: 60px 24px;
        }

        .not-found-icon {
            font-size: 56px;
            color: var(--primary);
            opacity: 0.3;
            margin-bottom: 18px;
        }

        .not-found p {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .not-found a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: 12px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(0, 122, 77, 0.25);
        }

        .not-found a:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(0, 122, 77, 0.35);
        }

        /* ===== Section / Related ===== */
        .section-title {
            font-size: 30px;
            font-weight: 800;
            color: var(--text);
            position: relative;
            margin: 0;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 52px;
            height: 4px;
            border-radius: 4px;
            background: var(--gradient);
            margin-top: 12px;
        }

        .view-all {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            background: rgba(0, 122, 77, 0.08);
            padding: 8px 18px;
            border-radius: 999px;
            transition: all 0.25s;
        }

        .view-all:hover {
            background: var(--primary);
            color: #fff;
            transform: translateX(2px);
        }

        .related-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.35s;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .related-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .related-card-img {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #eef2f0;
        }

        .related-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .related-card:hover .related-card-img img {
            transform: scale(1.06);
        }

        .related-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 30, 20, 0.25), transparent 50%);
        }

        .related-card-body {
            padding: 24px 24px 26px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .related-card-tag {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            background: rgba(0, 122, 77, 0.1);
            padding: 4px 12px;
            border-radius: 999px;
            margin-bottom: 12px;
        }

        .related-card-title {
            font-size: 19px;
            font-weight: 700;
            line-height: 1.45;
            color: var(--text);
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-card:hover .related-card-title {
            color: var(--primary);
        }

        .related-card-summary {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 16px;
            flex: 1;
        }

        .related-card-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.25s;
        }

        .related-card:hover .related-card-link {
            gap: 10px;
        }

        /* ===== CTA ===== */
        .cta-card {
            background: linear-gradient(135deg, #007A4D, #00A862 55%, #FF6B35 130%);
            border-radius: 28px;
            padding: 56px 48px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
        }

        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -40px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 107, 53, 0.25);
        }

        .cta-card .cta-inner {
            position: relative;
            z-index: 1;
        }

        .cta-card h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .cta-card p {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 28px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btns {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--primary);
            font-weight: 700;
            font-size: 15px;
            padding: 14px 32px;
            border-radius: 12px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
        }

        .btn-white:active {
            transform: scale(0.97);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 14px 32px;
            border-radius: 12px;
            transition: all 0.3s;
            backdrop-filter: blur(4px);
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.22);
            transform: translateY(-2px);
        }

        .btn-ghost:active {
            transform: scale(0.97);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #003D2D;
            color: #fff;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            position: relative;
        }

        .footer-title::after {
            content: '';
            display: block;
            width: 32px;
            height: 3px;
            border-radius: 3px;
            background: var(--accent);
            margin-top: 10px;
        }

        .footer-link {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            margin-bottom: 12px;
            transition: color 0.25s, padding-left 0.25s;
        }

        .footer-link:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 48px;
            padding-top: 24px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
        }

        /* ===== Focus accessibility ===== */
        a:focus-visible,
        button:focus-visible {
            outline: 3px solid rgba(0, 122, 77, 0.35);
            outline-offset: 2px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .article-card {
                padding: 36px 32px;
            }

            .article-title {
                font-size: 28px;
            }

            .cta-card {
                padding: 44px 32px;
            }
        }

        @media (max-width: 768px) {
            .article-hero {
                min-height: 200px;
            }

            .article-card {
                margin-top: -32px;
                padding: 28px 22px;
                border-radius: 20px;
            }

            .article-title {
                font-size: 24px;
            }

            .article-meta {
                gap: 10px 16px;
                font-size: 13px;
            }

            .article-content {
                font-size: 16px;
            }

            .section-title {
                font-size: 24px;
            }

            .cta-card {
                border-radius: 22px;
                padding: 40px 24px;
            }

            .cta-card h2 {
                font-size: 26px;
            }

            .prev-link,
            .next-link {
                flex: 1 1 100%;
                justify-content: center;
            }
        }

        @media (max-width: 520px) {
            .breadcrumb .current {
                max-width: 200px;
            }

            .article-title {
                font-size: 21px;
                line-height: 1.35;
            }

            .article-card {
                padding: 22px 18px;
            }

            .cta-card {
                padding: 32px 20px;
            }

            .cta-btns .btn-white,
            .cta-btns .btn-ghost {
                width: 100%;
                justify-content: center;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #007A4D;
            --primary-light: #00A862;
            --accent: #FF6B35;
            --accent-light: #FF8B5E;
            --bg: #F5F7FA;
            --card: #FFFFFF;
            --text: #1A2B2E;
            --text-sub: #5E6E70;
            --line: #E5ECEA;
            --deep: #003D2D;
            --disabled: #B7C4C2;
            --r-card: 16px;
            --r-image: 24px;
            --shadow-card: 0 4px 20px rgba(0,52,33,0.06);
            --shadow-hover: 0 8px 30px rgba(0,82,51,0.12);
            --gradient-brand: linear-gradient(135deg, #007A4D 0%, #00A862 60%, #FF6B35 100%);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background: var(--bg);
            color: var(--text);
            font-size: 16px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color .25s ease;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #fff;
            border-bottom: 1px solid var(--line);
            transition: box-shadow .3s ease;
        }

        .site-header.scrolled {
            box-shadow: 0 6px 24px rgba(0, 52, 33, 0.08);
        }

        .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
            gap: 16px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            transition: transform .25s ease;
        }

        .nav-logo:hover {
            transform: translateY(-2px);
        }

        .logo-badge {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--gradient-brand);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(0, 122, 77, 0.3);
        }

        .logo-text {
            line-height: 1.1;
        }

        .logo-text .main {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: 0.5px;
        }

        .logo-text .sub {
            font-size: 10px;
            letter-spacing: 4px;
            color: var(--text-sub);
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
        }

        .nav-links.right {
            justify-content: flex-end;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            border-radius: 999px;
            position: relative;
            transition: color .25s ease, background .25s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 4px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform .3s ease;
        }

        .nav-link:hover {
            color: var(--primary);
            background: rgba(0, 122, 77, 0.06);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-brand);
            color: #fff !important;
            padding: 10px 22px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 4px 16px rgba(0, 122, 77, 0.25);
            transition: all .25s ease;
        }

        .nav-cta:hover {
            box-shadow: 0 8px 24px rgba(0, 122, 77, 0.35);
            transform: translateY(-2px);
            background: linear-gradient(135deg, #008a57, #00b870, #ff7a4d);
        }

        .nav-cta:active {
            transform: scale(0.97);
        }

        .nav-cta::after {
            display: none;
        }

        .hamburger {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--bg);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: background .25s ease;
        }

        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all .3s ease;
        }

        .hamburger:hover {
            background: rgba(0, 122, 77, 0.1);
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: #fff;
            z-index: 200;
            box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
            transition: right .35s ease;
            padding: 100px 32px 32px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-menu.open {
            right: 0;
        }

        .mobile-menu a {
            padding: 14px 16px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 12px;
            color: var(--text);
            transition: all .25s ease;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            background: rgba(0, 122, 77, 0.08);
            color: var(--primary);
        }

        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 190;
            opacity: 0;
            visibility: hidden;
            transition: all .3s ease;
        }

        .mobile-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            transition: all .28s ease;
            border: 2px solid transparent;
            min-height: 48px;
        }

        .btn:focus-visible {
            outline: 3px solid rgba(0, 122, 77, 0.4);
            outline-offset: 2px;
        }

        .btn-primary {
            background: var(--gradient-brand);
            color: #fff;
            box-shadow: 0 6px 20px rgba(0, 122, 77, 0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 10px 32px rgba(0, 122, 77, 0.4);
            transform: translateY(-2px);
            filter: brightness(1.05);
        }

        .btn-primary:active {
            transform: scale(0.97);
        }

        .btn-outline {
            background: #fff;
            border-color: var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: rgba(0, 122, 77, 0.06);
            border-color: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 122, 77, 0.12);
        }

        .btn-outline:active {
            transform: scale(0.97);
        }

        .btn-accent {
            background: linear-gradient(135deg, #FF6B35, #FF8B5E);
            color: #fff;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
        }

        .btn-accent:hover {
            box-shadow: 0 10px 32px rgba(255, 107, 53, 0.4);
            transform: translateY(-2px);
            filter: brightness(1.06);
        }

        .btn-accent:active {
            transform: scale(0.97);
        }

        /* Section titles */
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            background: rgba(0, 122, 77, 0.08);
            padding: 6px 16px;
            border-radius: 999px;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--text);
        }

        .section-sub {
            font-size: 16px;
            color: var(--text-sub);
            max-width: 680px;
            line-height: 1.7;
        }

        /* Hero banner */
        .category-hero {
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
            background: linear-gradient(120deg, #003D2D 0%, #007A4D 55%, #FF6B35 100%);
            overflow: hidden;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.png');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.35;
        }

        .category-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(0, 61, 45, 0.88) 0%, rgba(0, 122, 77, 0.65) 50%, rgba(255, 107, 53, 0.35) 100%);
        }

        .category-hero .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 0;
        }

        .category-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            padding: 8px 20px;
            border-radius: 999px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .category-hero h1 {
            font-size: clamp(36px, 5vw, 54px);
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 20px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .category-hero p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 17px;
            max-width: 660px;
            line-height: 1.8;
            margin-bottom: 36px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-actions .btn-outline-light {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
            backdrop-filter: blur(6px);
        }

        .hero-actions .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.22);
            border-color: #fff;
            transform: translateY(-2px);
        }

        /* Stats badges */
        .stats-banner {
            margin-top: -54px;
            position: relative;
            z-index: 5;
            padding-bottom: 20px;
        }

        .stats-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 999px;
            padding: 18px 32px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: var(--shadow-card);
            transition: transform .3s ease, box-shadow .3s ease;
            flex: 1;
            min-width: 200px;
            justify-content: center;
        }

        .stats-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .stats-card .num {
            font-size: 36px;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
        }

        .stats-card .num span {
            font-size: 20px;
            font-weight: 700;
            margin-left: 2px;
        }

        .stats-card .label {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.4;
        }

        /* Guest cards */
        .guest-section {
            padding: 90px 0;
        }

        .guest-group {
            margin-bottom: 64px;
        }

        .guest-group:last-child {
            margin-bottom: 0;
        }

        .group-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
        }

        .group-header h2 {
            font-size: 26px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .group-header h2 .g-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(0, 122, 77, 0.1);
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .group-header .g-desc {
            font-size: 14px;
            color: var(--text-sub);
        }

        .guest-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .guest-card {
            background: var(--card);
            border-radius: var(--r-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--line);
            transition: transform .3s ease, box-shadow .3s ease;
            position: relative;
        }

        .guest-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .guest-card .card-img {
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .guest-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .guest-card:hover .card-img img {
            transform: scale(1.05);
        }

        .guest-card .card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 60%);
        }

        .guest-card .card-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(6px);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 999px;
        }

        .guest-card .card-body {
            padding: 20px 22px 24px;
        }

        .guest-card .card-body h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .guest-card .card-body .role {
            font-size: 13px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .guest-card .card-body p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .guest-card .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 22px;
            border-top: 1px solid var(--line);
            background: #FAFCFB;
        }

        .guest-card .card-footer .g-tag {
            font-size: 12px;
            color: var(--text-sub);
            padding: 4px 10px;
            background: var(--bg);
            border-radius: 6px;
        }

        .guest-card .card-footer .g-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap .25s ease;
        }

        .guest-card .card-footer .g-link:hover {
            gap: 10px;
            color: var(--accent);
        }

        /* Interactive section */
        .interactive-section {
            background: #fff;
            padding: 90px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .interactive-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }

        .interactive-img {
            border-radius: var(--r-image);
            overflow: hidden;
            position: relative;
            min-height: 420px;
            box-shadow: var(--shadow-hover);
        }

        .interactive-img img {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
            object-fit: cover;
        }

        .interactive-img .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            transition: all .3s ease;
            z-index: 2;
        }

        .interactive-img .play-btn:hover {
            background: rgba(255, 107, 53, 0.8);
            border-color: #fff;
            transform: translate(-50%, -50%) scale(1.08);
        }

        .interactive-list {
            list-style: none;
            margin-top: 24px;
        }

        .interactive-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--line);
            transition: padding-left .3s ease;
        }

        .interactive-list li:hover {
            padding-left: 8px;
        }

        .interactive-list li i {
            color: var(--primary);
            font-size: 18px;
            margin-top: 4px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }

        .interactive-list li .item-title {
            font-weight: 600;
            font-size: 15px;
        }

        .interactive-list li .item-desc {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.6;
        }

        /* Schedule timeline */
        .schedule-section {
            padding: 90px 0;
        }

        .timeline-wrap {
            position: relative;
            max-width: 860px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .timeline-wrap::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            transform: translateX(-50%);
            border-radius: 3px;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 48px;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-item .t-content {
            width: calc(50% - 48px);
            background: #fff;
            border-radius: var(--r-card);
            padding: 24px 28px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--line);
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .timeline-item .t-content:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .timeline-item .t-time {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 122, 77, 0.08);
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            padding: 4px 14px;
            border-radius: 999px;
            margin-bottom: 10px;
        }

        .timeline-item .t-content h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .timeline-item .t-content p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.6;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #fff;
            border: 4px solid var(--primary);
            box-shadow: 0 0 0 6px rgba(0, 122, 77, 0.15);
            z-index: 2;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            border-color: var(--accent);
            box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.15);
        }

        /* FAQ */
        .faq-section {
            padding: 90px 0;
            background: #fff;
            border-top: 1px solid var(--line);
        }

        .faq-list {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--bg);
            border-radius: var(--r-card);
            border: 1px solid var(--line);
            overflow: hidden;
            transition: box-shadow .3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-card);
        }

        .faq-item.open {
            box-shadow: var(--shadow-card);
            border-color: rgba(0, 122, 77, 0.3);
        }

        .faq-q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 56px;
            padding: 16px 24px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            text-align: left;
            gap: 16px;
            transition: color .25s ease;
        }

        .faq-q:hover {
            color: var(--primary);
        }

        .faq-q i {
            font-size: 18px;
            color: var(--primary);
            transition: transform .35s ease;
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0, 122, 77, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .faq-item.open .faq-q i {
            transform: rotate(45deg);
            background: var(--primary);
            color: #fff;
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease;
        }

        .faq-a .inner {
            padding: 0 24px 20px;
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
            border-top: 1px dashed var(--line);
            margin: 0 24px;
            padding: 16px 0 20px;
        }

        /* CTA */
        .cta-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-card {
            background: linear-gradient(135deg, #003D2D, #007A4D 55%, #00A862);
            border-radius: 32px;
            padding: 64px 56px;
            position: relative;
            overflow: hidden;
            color: #fff;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 107, 53, 0.3);
            filter: blur(60px);
        }

        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -60px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            filter: blur(40px);
        }

        .cta-card .cta-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .cta-card h2 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 16px;
        }

        .cta-card .cta-desc {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .cta-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 32px;
        }

        .cta-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-features li i {
            color: var(--accent-light);
        }

        .cta-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            display: block;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            height: 48px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
            padding: 0 16px;
            color: #fff;
            font-size: 15px;
            transition: all .25s ease;
            font-family: inherit;
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.25);
            background: rgba(255, 255, 255, 0.2);
        }

        .form-group select option {
            color: var(--text);
            background: #fff;
        }

        .cta-form .btn {
            width: 100%;
        }

        /* Footer */
        .site-footer {
            background: var(--deep);
            color: #fff;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 28px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .footer-link {
            display: block;
            padding: 6px 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: color .25s ease, padding-left .3s ease;
        }

        .footer-link:hover {
            color: var(--accent-light);
            padding-left: 8px;
        }

        .footer-bottom {
            margin-top: 56px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .guest-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-wrap {
                justify-content: space-between;
                height: 68px;
            }

            .category-hero {
                min-height: 360px;
            }

            .category-hero .hero-content {
                padding: 60px 0;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .stats-banner {
                margin-top: -44px;
            }

            .stats-card {
                padding: 14px 20px;
                min-width: 160px;
            }

            .stats-card .num {
                font-size: 28px;
            }

            .interactive-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .interactive-img {
                min-height: 280px;
                position: relative;
                padding-top: 60%;
            }

            .interactive-img img {
                position: absolute;
                top: 0;
            }

            .timeline-wrap::before {
                left: 12px;
            }

            .timeline-item,
            .timeline-item:nth-child(odd) {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 44px;
            }

            .timeline-item .t-content {
                width: 100%;
            }

            .timeline-dot {
                left: 12px;
                top: 32px;
                transform: translate(-50%, -50%);
            }

            .cta-card {
                padding: 40px 24px;
            }

            .cta-card .cta-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .cta-form {
                padding: 24px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .logo-text .main {
                font-size: 17px;
            }

            .logo-text .sub {
                font-size: 9px;
                letter-spacing: 2px;
            }

            .guest-grid {
                grid-template-columns: 1fr;
            }

            .guest-section {
                padding: 60px 0;
            }

            .interactive-section,
            .schedule-section,
            .faq-section,
            .cta-section {
                padding: 60px 0;
            }

            .cta-card {
                border-radius: 20px;
            }

            .group-header {
                flex-direction: column;
            }

            .stats-card {
                min-width: 100%;
                flex-direction: column;
                text-align: center;
            }
        }

/* roulang page: category3 */
/* ===== Design Variables ===== */
        :root {
            --primary: #007A4D;
            --primary-light: #00A862;
            --accent: #FF6B35;
            --accent-light: #FF8B5E;
            --bg: #F5F7FA;
            --card-bg: #FFFFFF;
            --text: #1A2B2E;
            --text-muted: #5E6E70;
            --border: #E5ECEA;
            --footer-bg: #003D2D;
            --radius: 16px;
            --radius-lg: 24px;
            --shadow: 0 4px 20px rgba(0, 52, 33, 0.06);
            --shadow-hover: 0 8px 30px rgba(0, 82, 51, 0.12);
            --gradient-brand: linear-gradient(135deg, #007A4D, #00A862, #FF6B35);
        }

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Header & Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(229, 236, 234, 0.8);
            transition: box-shadow .3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 24px rgba(0, 52, 33, 0.08);
        }
        .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            border-radius: 999px;
            transition: all .3s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--primary);
            background: rgba(0, 122, 77, 0.06);
        }
        .nav-link:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
            background: rgba(0, 122, 77, 0.08);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 2px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
            transform: translateX(-50%);
            transition: width .3s ease;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 60%;
        }
        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 10px;
            flex-shrink: 0;
        }
        .logo-badge {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, #007A4D, #00A862);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            box-shadow: 0 4px 14px rgba(0, 122, 77, 0.3);
            flex-shrink: 0;
        }
        .logo-name {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            line-height: 1.1;
        }
        .logo-sub {
            font-size: 10px;
            letter-spacing: 0.22em;
            color: var(--primary);
            font-weight: 600;
            line-height: 1.2;
        }
        .mobile-menu-btn {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text);
            background: #F1F4F3;
            transition: all .3s ease;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn:hover {
            background: #E4EAE8;
        }
        .mobile-menu-btn:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        /* ===== Mobile Drawer ===== */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 199;
            opacity: 0;
            pointer-events: none;
            transition: opacity .35s ease;
        }
        .mobile-menu-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-menu-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: #fff;
            z-index: 200;
            padding: 24px;
            transition: right .35s ease;
            box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
            overflow-y: auto;
        }
        .mobile-menu-drawer.open {
            right: 0;
        }
        .mobile-menu-close {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: #F1F4F3;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            border: none;
            cursor: pointer;
            transition: all .3s ease;
        }
        .mobile-menu-close:hover {
            background: #E4EAE8;
            color: var(--primary);
        }
        .mobile-nav-link {
            display: block;
            padding: 14px 16px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text);
            transition: all .3s ease;
        }
        .mobile-nav-link:hover {
            background: rgba(0, 122, 77, 0.06);
            color: var(--primary);
            transform: translateX(4px);
        }
        .mobile-nav-link.active {
            background: rgba(0, 122, 77, 0.09);
            color: var(--primary);
            font-weight: 600;
        }
        .mobile-nav-link:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.2;
            transition: all .3s ease;
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }
        .btn:focus-visible {
            outline: 3px solid rgba(0, 122, 77, 0.4);
            outline-offset: 2px;
        }
        .btn-primary {
            background: linear-gradient(135deg, #007A4D, #00A862);
            color: #fff;
            box-shadow: 0 4px 16px rgba(0, 122, 77, 0.25);
        }
        .btn-primary:hover {
            box-shadow: 0 8px 24px rgba(0, 122, 77, 0.35);
            transform: translateY(-2px);
            filter: brightness(1.05);
        }
        .btn-primary:active {
            transform: scale(0.97);
        }
        .btn-accent {
            background: linear-gradient(135deg, #FF6B35, #FF8B5E);
            color: #fff;
            box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
        }
        .btn-accent:hover {
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
            transform: translateY(-2px);
            filter: brightness(1.05);
        }
        .btn-accent:active {
            transform: scale(0.97);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background: rgba(0, 122, 77, 0.06);
            transform: translateY(-2px);
        }
        .btn-outline:active {
            transform: scale(0.97);
        }
        .btn-outline-light {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline-light:active {
            transform: scale(0.97);
        }

        /* ===== Page Hero ===== */
        .page-hero {
            position: relative;
            padding: 64px 0 56px;
            background: linear-gradient(135deg, rgba(0, 45, 34, 0.92), rgba(0, 110, 70, 0.85), rgba(0, 140, 90, 0.78)), url('/assets/images/backpic/back-2.png') center / cover no-repeat;
            color: #fff;
            text-align: center;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 107, 53, 0.18);
            filter: blur(50px);
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(0, 168, 98, 0.25);
            filter: blur(60px);
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
        }
        .breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(255, 255, 255, 0.14);
            border-radius: 999px;
            font-size: 14px;
            margin-bottom: 20px;
            backdrop-filter: blur(4px);
        }
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.85);
            transition: color .3s ease;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .breadcrumb .sep {
            color: rgba(255, 255, 255, 0.45);
        }
        .page-hero h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 14px;
            letter-spacing: 1px;
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
        }
        .page-hero .hero-sub {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 620px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ===== Content Card & Article ===== */
        .content-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 36px 40px;
            border: 1px solid rgba(229, 236, 234, 0.6);
        }
        .article-body h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text);
            margin: 40px 0 18px;
            line-height: 1.4;
            position: relative;
            padding-left: 18px;
        }
        .article-body h2:first-of-type {
            margin-top: 0;
        }
        .article-body h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            bottom: 8px;
            width: 4px;
            border-radius: 4px;
            background: linear-gradient(180deg, var(--primary), var(--primary-light));
        }
        .article-body p {
            font-size: 16px;
            line-height: 1.85;
            color: var(--text);
            margin-bottom: 20px;
        }
        .article-img {
            border-radius: 20px;
            margin: 28px 0;
            width: 100%;
            object-fit: cover;
            box-shadow: var(--shadow);
        }
        .article-body blockquote {
            background: rgba(0, 122, 77, 0.05);
            border-left: 4px solid var(--primary);
            border-radius: 12px;
            padding: 20px 24px;
            margin: 28px 0;
            font-size: 17px;
            font-style: italic;
            color: var(--primary);
            font-weight: 600;
            line-height: 1.7;
        }
        .feature-list {
            list-style: none;
            margin: 24px 0 8px;
        }
        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            font-size: 15px;
            color: var(--text);
        }
        .feature-list li i {
            color: var(--primary);
            margin-top: 5px;
            flex-shrink: 0;
        }

        /* ===== Sidebar ===== */
        .sidebar-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 26px;
            border: 1px solid rgba(229, 236, 234, 0.6);
        }
        .sidebar-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }
        .info-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .info-list li {
            position: relative;
            padding: 8px 0 8px 20px;
            font-size: 14px;
            color: var(--text);
        }
        .info-dot {
            position: absolute;
            left: 0;
            top: 16px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
        }
        .related-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px;
            border-radius: 12px;
            transition: all .3s ease;
            margin-bottom: 4px;
        }
        .related-item:hover {
            background: rgba(0, 122, 77, 0.05);
            transform: translateX(4px);
        }
        .related-item:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .related-item img {
            width: 64px;
            height: 48px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .contact-link {
            display: block;
            font-size: 15px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color .3s ease;
        }
        .contact-link:hover {
            color: var(--primary);
        }

        /* ===== Section Header ===== */
        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 48px;
        }
        .section-tag {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 999px;
            background: rgba(0, 122, 77, 0.08);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 14px;
        }
        .section-header h2 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-header p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===== Ticket Cards ===== */
        .ticket-card {
            position: relative;
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all .3s ease;
            border: 1px solid rgba(229, 236, 234, 0.6);
            display: flex;
            flex-direction: column;
        }
        .ticket-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .ticket-card.recommended {
            border: 2px solid transparent;
            background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #007A4D, #00A862, #FF6B35) border-box;
            box-shadow: 0 10px 36px rgba(0, 82, 51, 0.14);
            transform: scale(1.03);
        }
        .ticket-card.recommended:hover {
            transform: scale(1.03) translateY(-6px);
        }
        .ticket-head {
            padding: 28px 24px;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            text-align: center;
            position: relative;
        }
        .ticket-head.vip {
            background: linear-gradient(135deg, #FF6B35, #FF8B5E);
        }
        .ticket-head .tier-name {
            font-size: 20px;
            font-weight: 800;
        }
        .ticket-head .tier-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 2px;
        }
        .recommend-badge {
            position: absolute;
            top: 18px;
            right: -38px;
            background: linear-gradient(135deg, #FF6B35, #FF8B5E);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 44px;
            transform: rotate(45deg);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
            z-index: 10;
            letter-spacing: 1px;
        }
        .ticket-body {
            padding: 28px 28px 30px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .ticket-price {
            font-size: 48px;
            font-weight: 900;
            color: var(--accent);
            line-height: 1;
            text-align: center;
            margin-bottom: 8px;
        }
        .ticket-price .currency {
            font-size: 20px;
            font-weight: 700;
            vertical-align: top;
            margin-right: 2px;
        }
        .ticket-price .unit {
            font-size: 15px;
            font-weight: 400;
            color: var(--text-muted);
        }
        .ticket-features {
            list-style: none;
            margin: 20px 0 24px;
            padding: 0;
            flex: 1;
        }
        .ticket-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px 0;
            font-size: 14px;
            color: var(--text);
        }
        .ticket-features li i {
            color: var(--primary);
            font-size: 14px;
            flex-shrink: 0;
        }
        .ticket-card.recommended .ticket-features li i {
            color: var(--accent);
        }

        /* ===== Process ===== */
        .process-card {
            position: relative;
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid rgba(229, 236, 234, 0.6);
            transition: all .3s ease;
        }
        .process-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .step-number {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(0, 122, 77, 0.25);
        }
        .process-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }
        .process-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== FAQ ===== */
        .faq-item {
            background: var(--card-bg);
            border-radius: var(--radius);
            border: 1px solid rgba(229, 236, 234, 0.6);
            box-shadow: var(--shadow);
            margin-bottom: 14px;
            overflow: hidden;
            transition: all .3s ease;
        }
        .faq-item:hover {
            border-color: rgba(0, 122, 77, 0.2);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 0 24px;
            min-height: 60px;
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            cursor: pointer;
            background: transparent;
            width: 100%;
            text-align: left;
            border: none;
            transition: color .3s ease;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: -2px;
            border-radius: var(--radius);
        }
        .faq-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(0, 122, 77, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
            flex-shrink: 0;
            transition: all .35s ease;
        }
        .faq-item.active .faq-icon {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            transform: rotate(135deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .45s ease, padding .3s ease;
            padding: 0 24px;
            background: #F8FAF9;
        }
        .faq-item.active .faq-answer {
            max-height: 400px;
            padding: 16px 24px 20px;
            border-top: 1px solid rgba(229, 236, 234, 0.6);
        }
        .faq-answer p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* ===== CTA ===== */
        .cta-card {
            position: relative;
            border-radius: var(--radius-lg);
            padding: 56px 48px;
            text-align: center;
            color: #fff;
            background: linear-gradient(135deg, #003D2D, #007A4D, #00A862);
            box-shadow: 0 12px 40px rgba(0, 122, 77, 0.35);
            overflow: hidden;
        }
        .cta-card::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(255, 107, 53, 0.2);
            filter: blur(50px);
        }
        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            filter: blur(30px);
        }
        .cta-card>* {
            position: relative;
            z-index: 1;
        }
        .cta-card h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .cta-card p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 520px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--footer-bg);
            color: #fff;
        }
        .footer-title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 28px;
            height: 2px;
            background: linear-gradient(90deg, #00A862, #FF6B35);
            border-radius: 2px;
        }
        .footer-link {
            display: block;
            padding: 6px 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: all .3s ease;
        }
        .footer-link:hover {
            color: var(--accent-light);
            transform: translateX(4px);
        }
        .footer-link:focus-visible {
            outline: 2px solid var(--accent-light);
            outline-offset: 2px;
            border-radius: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== Section Padding ===== */
        .section-pad {
            padding: 80px 0;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .page-hero h1 {
                font-size: 36px;
            }
            .section-header h2 {
                font-size: 28px;
            }
            .content-card {
                padding: 28px;
            }
            .cta-card {
                padding: 44px 32px;
            }
        }
        @media (max-width: 768px) {
            .section-pad {
                padding: 56px 0;
            }
            .page-hero {
                padding: 48px 0 40px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
            .page-hero .hero-sub {
                font-size: 16px;
            }
            .section-header {
                margin-bottom: 32px;
            }
            .section-header h2 {
                font-size: 24px;
            }
            .content-card {
                padding: 20px;
                border-radius: 20px;
            }
            .article-body h2 {
                font-size: 22px;
            }
            .ticket-card.recommended {
                transform: none;
            }
            .ticket-card.recommended:hover {
                transform: translateY(-6px);
            }
            .cta-card {
                padding: 40px 24px;
            }
            .cta-card h2 {
                font-size: 24px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .page-hero h1 {
                font-size: 24px;
            }
            .page-hero .hero-sub {
                font-size: 15px;
            }
            .content-card {
                padding: 16px;
            }
            .sidebar-card {
                padding: 20px;
            }
            .faq-question {
                font-size: 15px;
                padding: 0 16px;
                min-height: 54px;
            }
            .faq-answer,
            .faq-item.active .faq-answer {
                padding-left: 16px;
                padding-right: 16px;
            }
            .btn {
                padding: 12px 18px;
                font-size: 15px;
            }
            .cta-card {
                padding: 36px 20px;
                border-radius: 20px;
            }
            .cta-card h2 {
                font-size: 22px;
            }
        }
