/* roulang page: index */
:root {
        --primary: #0a1930;
        --primary-light: #16294a;
        --accent: #c8a45a;
        --accent-light: #e8d5a8;
        --accent-dark: #a9853f;
        --bg-light: #f5f7fa;
        --bg-white: #ffffff;
        --bg-dark: #0a1930;
        --text-dark: #1c2a3a;
        --text-body: #43566b;
        --text-light: #7e90a4;
        --border: #e4e8ef;
        --radius-sm: 10px;
        --radius-md: 16px;
        --radius-lg: 26px;
        --shadow-sm: 0 2px 12px rgba(10, 25, 48, 0.06);
        --shadow-md: 0 8px 32px rgba(10, 25, 48, 0.1);
        --shadow-lg: 0 18px 50px rgba(10, 25, 48, 0.16);
        --container: 1200px;
        --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
        color: var(--text-body);
        line-height: 1.75;
        background: var(--bg-white);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }
    a {
        text-decoration: none;
        color: inherit;
        transition: color var(--transition);
    }
    img {
        max-width: 100%;
        display: block;
    }
    button {
        cursor: pointer;
        border: none;
        background: none;
        font-family: inherit;
    }
    input,
    textarea {
        font-family: inherit;
    }

    .container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 24px;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(228, 232, 239, 0.75);
        transition: box-shadow 0.3s ease;
    }
    .site-header.scrolled {
        box-shadow: 0 6px 30px rgba(10, 25, 48, 0.08);
    }
    .header-inner {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 24px;
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .logo {
        font-size: 20px;
        font-weight: 800;
        color: var(--primary);
        letter-spacing: 0.6px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 10px;
        line-height: 1.2;
    }
    .logo-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        flex-shrink: 0;
        display: inline-block;
        box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.25);
    }

    .main-nav {
        display: flex;
        gap: 4px;
        background: #eef1f6;
        padding: 5px;
        border-radius: 999px;
        transition: background 0.3s;
    }
    .nav-link {
        padding: 9px 22px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-light);
        transition: all var(--transition);
        white-space: nowrap;
    }
    .nav-link:hover {
        color: var(--primary);
        background: rgba(255, 255, 255, 0.65);
    }
    .nav-link.active {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 4px 14px rgba(10, 25, 48, 0.2);
    }
    .nav-link.active:hover {
        color: #fff;
        background: var(--primary);
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        border-radius: 999px;
        padding: 12px 28px;
        font-size: 15px;
        transition: all var(--transition);
        white-space: nowrap;
        gap: 8px;
        line-height: 1.4;
    }
    .btn-primary {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 4px 18px rgba(10, 25, 48, 0.18);
    }
    .btn-primary:hover {
        background: var(--primary-light);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(10, 25, 48, 0.24);
    }
    .btn-accent {
        background: var(--accent);
        color: #fff;
        box-shadow: 0 4px 18px rgba(200, 164, 90, 0.32);
    }
    .btn-accent:hover {
        background: var(--accent-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(200, 164, 90, 0.2);
    }
    .btn-ghost {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }
    .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.22);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.55);
        transform: translateY(-2px);
    }
    .btn-outline {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
    }
    .btn-outline:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }
    .btn-sm {
        padding: 8px 20px;
        font-size: 13px;
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: #eef1f6;
        transition: background 0.3s;
    }
    .nav-toggle:hover {
        background: #e2e6ee;
    }
    .nav-toggle span {
        width: 20px;
        height: 2px;
        background: var(--primary);
        border-radius: 4px;
        transition: all 0.3s ease;
        display: block;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        position: relative;
        background-size: cover;
        background-position: center;
        padding: 140px 0 120px;
        display: flex;
        align-items: center;
        color: #fff;
    }
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(128deg, rgba(6, 16, 36, 0.92) 0%, rgba(9, 25, 48, 0.72) 50%, rgba(10, 30, 60, 0.42) 100%);
    }
    .hero-inner {
        position: relative;
        z-index: 2;
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 24px;
        width: 100%;
    }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(12px);
        border-radius: 999px;
        padding: 8px 20px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.4px;
        margin-bottom: 28px;
        border: 1px solid rgba(255, 255, 255, 0.18);
    }
    .badge-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(200, 164, 90, 0.35);
    }
    .hero h1 {
        font-size: clamp(36px, 5.5vw, 64px);
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
        color: #fff;
    }
    .hero h1 .accent-text {
        color: var(--accent-light);
    }
    .hero p {
        font-size: clamp(16px, 2vw, 19px);
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.85);
        max-width: 560px;
        margin-bottom: 36px;
    }
    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 48px;
    }
    .hero-info-bars {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 780px;
    }
    .info-bar {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-md);
        padding: 18px 22px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .info-label {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
    }
    .info-value {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
    }

    /* 板块通用 */
    .section {
        padding: 100px 0;
    }
    .section-alt {
        background: var(--bg-light);
    }
    .section-dark {
        background: var(--bg-dark);
        color: #fff;
        position: relative;
        background-size: cover;
        background-position: center;
    }
    .section-dark::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(6, 16, 36, 0.94) 0%, rgba(10, 25, 48, 0.88) 100%);
    }
    .section-dark .container {
        position: relative;
        z-index: 2;
    }
    .section-head {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 60px;
    }
    .section-head h2 {
        font-size: clamp(28px, 3.8vw, 40px);
        font-weight: 800;
        color: var(--text-dark);
        line-height: 1.3;
        margin-bottom: 16px;
        letter-spacing: 0.3px;
    }
    .section-dark .section-head h2 {
        color: #fff;
    }
    .section-head p {
        font-size: 16px;
        color: var(--text-light);
        line-height: 1.8;
    }
    .section-dark .section-head p {
        color: rgba(255, 255, 255, 0.8);
    }
    .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(200, 164, 90, 0.12);
        color: var(--accent-dark);
        font-size: 13px;
        font-weight: 700;
        padding: 7px 18px;
        border-radius: 999px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }
    .section-dark .section-tag {
        background: rgba(200, 164, 90, 0.2);
        color: var(--accent-light);
    }

    /* 核心价值卡片 */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .feature-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 40px 32px;
        transition: all var(--transition);
        position: relative;
        overflow: hidden;
    }
    .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), var(--accent-light));
        opacity: 0;
        transition: opacity 0.3s;
    }
    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }
    .feature-card:hover::before {
        opacity: 1;
    }
    .feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(200, 164, 90, 0.14), rgba(200, 164, 90, 0.08));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 22px;
        line-height: 1;
    }
    .feature-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 12px;
    }
    .feature-card p {
        font-size: 14px;
        line-height: 1.8;
        color: var(--text-light);
    }

    /* 分类入口 */
    .category-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .category-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
        position: relative;
        background: #fff;
        border: 1px solid var(--border);
        transition: all var(--transition);
        display: block;
        height: 100%;
    }
    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }
    .category-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .category-card:hover img {
        transform: scale(1.06);
    }
    .category-card .category-body {
        padding: 28px;
        position: relative;
    }
    .category-card .category-body::after {
        content: "→";
        position: absolute;
        right: 24px;
        bottom: 28px;
        font-size: 22px;
        color: var(--accent);
        opacity: 0;
        transform: translateX(-8px);
        transition: all 0.3s;
    }
    .category-card:hover .category-body::after {
        opacity: 1;
        transform: translateX(0);
    }
    .category-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
    }
    .category-card p {
        font-size: 14px;
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 16px;
    }
    .category-card .category-tag {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        background: rgba(200, 164, 90, 0.12);
        color: var(--accent-dark);
        padding: 5px 14px;
        border-radius: 999px;
        letter-spacing: 0.4px;
    }

    /* 新闻/内容列表 */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .news-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 30px;
        transition: all var(--transition);
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
    }
    .news-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }
    .news-card-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
        gap: 12px;
    }
    .news-cat {
        font-size: 12px;
        font-weight: 700;
        background: rgba(200, 164, 90, 0.12);
        color: var(--accent-dark);
        padding: 4px 14px;
        border-radius: 999px;
        letter-spacing: 0.4px;
    }
    .news-date {
        font-size: 13px;
        color: var(--text-light);
    }
    .news-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.5;
        margin-bottom: 10px;
        transition: color 0.2s;
    }
    .news-card:hover .news-title {
        color: var(--accent-dark);
    }
    .news-desc {
        font-size: 14px;
        color: var(--text-light);
        line-height: 1.75;
        margin-bottom: 18px;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-more {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary);
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    .news-more:hover {
        color: var(--accent-dark);
        gap: 8px;
    }
    .news-empty {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        background: var(--bg-light);
        border-radius: var(--radius-md);
        font-size: 16px;
        color: var(--text-light);
    }

    /* 统计 */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        margin-top: 20px;
    }
    .stat-item {
        text-align: center;
        padding: 36px 24px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        backdrop-filter: blur(10px);
        transition: all 0.3s;
    }
    .stat-item:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(200, 164, 90, 0.4);
        transform: translateY(-4px);
    }
    .stat-number {
        font-size: clamp(36px, 4vw, 48px);
        font-weight: 800;
        color: var(--accent-light);
        line-height: 1.2;
        display: block;
        margin-bottom: 6px;
    }
    .stat-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }

    /* 流程步骤 */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: 20px;
    }
    .step-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 38px 32px;
        text-align: center;
        transition: all var(--transition);
        position: relative;
    }
    .step-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }
    .step-num {
        font-size: 44px;
        font-weight: 800;
        color: var(--accent);
        line-height: 1;
        display: block;
        margin-bottom: 20px;
        opacity: 0.4;
    }
    .step-card h3 {
        font-size: 19px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
    }
    .step-card p {
        font-size: 14px;
        color: var(--text-light);
        line-height: 1.7;
    }

    /* FAQ */
    .faq-list {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .faq-item {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: all 0.3s;
    }
    .faq-item:hover {
        border-color: rgba(200, 164, 90, 0.4);
    }
    .faq-item summary {
        padding: 22px 28px;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-dark);
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        transition: all 0.2s;
    }
    .faq-item summary::-webkit-details-marker {
        display: none;
    }
    .faq-item summary::after {
        content: "+";
        font-size: 22px;
        color: var(--accent);
        font-weight: 400;
        flex-shrink: 0;
        transition: transform 0.3s, content 0.3s;
        line-height: 1;
    }
    .faq-item[open] summary::after {
        transform: rotate(45deg);
    }
    .faq-item[open] summary {
        border-bottom: 1px solid var(--border);
        color: var(--accent-dark);
    }
    .faq-item .faq-answer {
        padding: 20px 28px;
        font-size: 14px;
        line-height: 1.85;
        color: var(--text-body);
    }

    /* CTA */
    .cta-section {
        background: linear-gradient(135deg, #0a1930 0%, #16294a 60%, #1e3a5f 100%);
        padding: 90px 0;
        color: #fff;
        position: relative;
        overflow: hidden;
    }
    .cta-section::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -30%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(200, 164, 90, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }
    .cta-section::after {
        content: "";
        position: absolute;
        bottom: -60%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }
    .cta-inner {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
    }
    .cta-inner h2 {
        font-size: clamp(28px, 3.5vw, 40px);
        font-weight: 800;
        margin-bottom: 16px;
        color: #fff;
        line-height: 1.3;
    }
    .cta-inner p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 32px;
        line-height: 1.8;
    }
    .cta-actions {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* 页脚 */
    .site-footer {
        background: #081420;
        color: rgba(255, 255, 255, 0.75);
        padding: 70px 0 30px;
    }
    .footer-inner {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }
    .footer-brand .footer-logo {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        display: block;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
    }
    .footer-brand p {
        font-size: 14px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.6);
        max-width: 280px;
    }
    .footer-nav h4 {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 18px;
        letter-spacing: 0.4px;
    }
    .footer-nav a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        padding: 7px 0;
        transition: all 0.25s;
    }
    .footer-nav a:hover {
        color: var(--accent-light);
        transform: translateX(4px);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 26px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
    }

    @media (max-width: 1024px) {
        .feature-grid,
        .category-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .steps-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        .hero {
            padding: 110px 0 100px;
        }
    }

    @media (max-width: 768px) {
        .header-inner {
            height: 64px;
        }
        .main-nav {
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            background: #fff;
            border-radius: 0 0 24px 24px;
            padding: 16px 24px 24px;
            flex-direction: column;
            gap: 4px;
            box-shadow: 0 20px 40px rgba(10, 25, 48, 0.14);
            display: none;
            z-index: 999;
        }
        .main-nav.nav-open {
            display: flex;
        }
        .nav-link {
            padding: 14px 20px;
            font-size: 15px;
            border-radius: 12px;
        }
        .nav-link.active {
            border-radius: 12px;
        }
        .nav-toggle {
            display: flex;
        }
        .nav-cta {
            display: none !important;
        }
        .hero {
            padding: 90px 0 80px;
        }
        .hero-info-bars {
            grid-template-columns: 1fr;
        }
        .feature-grid,
        .category-grid {
            grid-template-columns: 1fr;
        }
        .news-grid {
            grid-template-columns: 1fr;
        }
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .steps-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .section {
            padding: 70px 0;
        }
        .footer-inner {
            grid-template-columns: 1fr;
            gap: 36px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .hero-actions {
            flex-direction: column;
            align-items: flex-start;
        }
        .hero-actions .btn {
            width: 100%;
        }
    }

    @media (max-width: 520px) {
        .container {
            padding: 0 16px;
        }
        .header-inner {
            padding: 0 16px;
        }
        .hero h1 {
            font-size: 34px;
        }
        .hero p {
            font-size: 15px;
        }
        .stats-grid {
            grid-template-columns: 1fr;
        }
        .section-head {
            margin-bottom: 40px;
        }
        .section-head h2 {
            font-size: 26px;
        }
        .news-card {
            padding: 22px;
        }
        .stat-item {
            padding: 26px 20px;
        }
    }

/* roulang page: article */
:root {
    --primary: #16294a;
    --primary-light: #24406b;
    --primary-dark: #0d1a30;
    --accent: #c8a45d;
    --accent-light: #d9bd7e;
    --accent-dark: #a8863f;
    --bg-warm: #f7f5f0;
    --bg-deep: #efece3;
    --text-main: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e0d8;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 20px rgba(22, 41, 74, 0.08);
    --shadow-hover: 0 10px 36px rgba(22, 41, 74, 0.14);
    --transition: all 0.3s ease;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-warm);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
button {
    font-family: inherit;
    cursor: pointer;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(22, 41, 74, 0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: inline-block;
    flex-shrink: 0;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #4b5563;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover {
    color: var(--primary);
    background: rgba(22, 41, 74, 0.06);
}
.nav-link.active {
    color: var(--primary);
    font-weight: 600;
    background: rgba(22, 41, 74, 0.08);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent);
}
.nav-cta {
    margin-left: 12px;
    white-space: nowrap;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    line-height: 1;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(22, 41, 74, 0.22);
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 41, 74, 0.28);
}
.btn-primary:focus {
    outline: 3px solid rgba(200, 164, 93, 0.4);
    outline-offset: 2px;
}
.btn-light {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}
.btn-light:hover {
    background: var(--bg-deep);
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}

/* Article Hero */
.article-hero {
    position: relative;
    background-image: url('/assets/images/backpic/back-2.png');
    background-size: cover;
    background-position: center;
    padding: 96px 0 72px;
    text-align: center;
}
.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 41, 74, 0.75), rgba(13, 26, 48, 0.88));
    z-index: 1;
}
.article-hero-content {
    position: relative;
    z-index: 2;
}
.article-category-badge {
    display: inline-block;
    background: rgba(200, 164, 93, 0.2);
    border: 1px solid rgba(200, 164, 93, 0.5);
    color: var(--accent-light);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.article-hero-title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 20px;
    letter-spacing: 1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.article-hero-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}
.meta-item i {
    color: var(--accent);
}

/* Breadcrumb */
.breadcrumb-wrap {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    background: #fff;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
}
.breadcrumb a {
    color: var(--text-muted);
}
.breadcrumb a:hover {
    color: var(--primary);
}
.breadcrumb .sep {
    color: #d1d5db;
}
.breadcrumb .current {
    color: var(--primary);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    white-space: nowrap;
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    padding: 48px 0 64px;
}
.article-main {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 44px 44px 36px;
    overflow: hidden;
}
.article-content {
    font-size: 16.5px;
    line-height: 1.85;
    color: #333;
}
.article-content p {
    margin-bottom: 20px;
}
.article-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 36px 0 16px;
    line-height: 1.4;
    border-left: 4px solid var(--accent);
    padding-left: 16px;
}
.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin: 28px 0 12px;
}
.article-content img {
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: var(--shadow);
}
.article-content blockquote {
    border-left: 4px solid var(--accent);
    background: var(--bg-deep);
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    color: var(--text-muted);
    font-style: italic;
}
.article-content ul,
.article-content ol {
    margin: 16px 0 24px 24px;
}
.article-content li {
    margin-bottom: 8px;
}
.article-content a {
    color: var(--primary-light);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
}
.article-content a:hover {
    color: var(--accent-dark);
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.tags-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 4px;
}
.tag-item {
    display: inline-block;
    background: var(--bg-deep);
    color: var(--primary);
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid var(--border);
}
.tag-item:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}
.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-deep);
    color: var(--primary);
    font-size: 15px;
    transition: var(--transition);
}
.share-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* Not Found */
.not-found-box {
    text-align: center;
    padding: 60px 30px;
}
.not-found-box i {
    font-size: 56px;
    color: var(--accent);
    margin-bottom: 20px;
}
.not-found-box h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}
.not-found-box p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sidebar-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}
.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-deep);
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-title i {
    color: var(--accent);
}
.info-list {
    list-style: none;
}
.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
}
.info-list li:last-child {
    border-bottom: none;
}
.info-list span {
    color: var(--text-muted);
}
.info-list strong {
    color: var(--primary);
    font-weight: 600;
    text-align: right;
}
.category-card .category-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 8px;
    transition: var(--transition);
}
.category-card .category-link:hover {
    background: var(--bg-warm);
    color: var(--primary);
    padding-left: 18px;
}
.category-card .category-link.active {
    background: rgba(200, 164, 93, 0.15);
    color: var(--primary);
    font-weight: 600;
}
.category-card .category-link i {
    font-size: 12px;
    color: var(--accent);
}
.tip-card {
    background: linear-gradient(135deg, rgba(200, 164, 93, 0.08), rgba(22, 41, 74, 0.04));
    border: 1px solid rgba(200, 164, 93, 0.3);
}
.tip-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

/* Related Section */
.related-section {
    background: var(--bg-deep);
    padding: 64px 0;
}
.section-head {
    text-align: center;
    margin-bottom: 40px;
}
.section-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.section-head p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.related-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.related-cover {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.related-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.related-card:hover .related-cover img {
    transform: scale(1.06);
}
.related-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(22, 41, 74, 0.85);
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.related-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.related-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}
.related-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
}
.related-meta i {
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    background-image: url('/assets/images/backpic/back-3.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    position: relative;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 41, 74, 0.92), rgba(13, 26, 48, 0.85));
}
.cta-section .container {
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 32px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 64px 0;
    background: var(--bg-warm);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid transparent;
    transition: var(--transition);
}
.faq-item:hover {
    border-top-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
}
.faq-item h3 i {
    color: var(--accent);
}
.faq-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 0 28px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-brand .footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-brand .footer-logo::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: inline-block;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 360px;
}
.footer-nav h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-nav a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}
.footer-nav a:hover {
    color: var(--accent-light);
    padding-left: 6px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 32px;
    }
    .article-main {
        padding: 32px;
    }
}
@media (max-width: 768px) {
    .header-inner {
        height: 64px;
        padding: 0 16px;
    }
    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 4px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        border-radius: 0 0 16px 16px;
    }
    .main-nav.open {
        transform: translateY(0);
    }
    .nav-link {
        padding: 14px 18px;
        border-radius: 10px;
    }
    .nav-link.active::after {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
    .article-hero {
        padding: 64px 0 48px;
    }
    .article-hero-title {
        font-size: 28px;
    }
    .article-hero-meta {
        gap: 16px;
    }
    .article-layout {
        grid-template-columns: 1fr;
        padding: 24px 0 48px;
    }
    .article-main {
        padding: 24px 20px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 16px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 520px) {
    .breadcrumb .current {
        max-width: 180px;
    }
    .article-content {
        font-size: 15px;
    }
    .article-content h2 {
        font-size: 22px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    .related-meta span:last-child {
        display: none;
    }
}

/* roulang page: category1 */
:root {
        --primary: #1e2a3a;
        --accent: #c19a5b;
        --accent-light: #dcc28a;
        --bg: #f7f5f1;
        --bg-soft: #efece7;
        --card: #ffffff;
        --text: #1f2933;
        --muted: #6b7280;
        --border: #e5e1db;
        --radius: 16px;
        --radius-sm: 10px;
        --shadow: 0 10px 30px rgba(30, 42, 58, 0.08);
        --shadow-hover: 0 16px 40px rgba(30, 42, 58, 0.14);
        --container: 1200px;
        --space: 96px;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    button {
        border: none;
        background: none;
        cursor: pointer;
        font-family: inherit;
    }

    a:focus-visible,
    button:focus-visible,
    summary:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 3px;
        border-radius: 6px;
    }

    .container {
        width: 100%;
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 24px;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        max-width: var(--container);
        margin: 0 auto;
        padding: 14px 24px;
    }

    .logo {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: 0.02em;
    }

    .logo-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(193, 154, 91, 0.2);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-link {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 999px;
        font-size: 15px;
        font-weight: 500;
        color: var(--text);
        transition: all 0.25s ease;
    }

    .nav-link:hover {
        background: var(--bg-soft);
        color: var(--primary);
    }

    .nav-link.active {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 4px 14px rgba(30, 42, 58, 0.25);
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 22px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.25s ease;
    }

    .btn-primary {
        background: var(--primary);
        color: #fff;
    }

    .btn-primary:hover {
        background: #2a3a4d;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(30, 42, 58, 0.2);
    }

    .btn-outline {
        border: 1.5px solid var(--primary);
        color: var(--primary);
        background: transparent;
    }

    .btn-outline:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

    .btn-light {
        background: #fff;
        color: var(--primary);
    }

    .btn-light:hover {
        background: #f0ebe3;
        transform: translateY(-2px);
    }

    .page-hero {
        position: relative;
        padding: 120px 0;
        background-size: cover;
        background-position: center;
    }

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(30, 42, 58, 0.88), rgba(30, 42, 58, 0.45));
    }

    .page-hero .container {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 44px;
        font-weight: 800;
        color: #fff;
        line-height: 1.3;
        margin-bottom: 16px;
        letter-spacing: 0.02em;
    }

    .page-hero p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.85);
        max-width: 650px;
        margin: 0 auto 28px;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .page-hero .btn-outline {
        border-color: rgba(255, 255, 255, 0.8);
        color: #fff;
    }

    .page-hero .btn-outline:hover {
        background: #fff;
        color: var(--primary);
    }

    .badge {
        display: inline-block;
        padding: 6px 16px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .badge-gold {
        background: rgba(193, 154, 91, 0.22);
        color: #e2bf82;
        border: 1px solid rgba(193, 154, 91, 0.4);
    }

    .section {
        padding: var(--space) 0;
    }

    .section-head {
        text-align: center;
        max-width: 680px;
        margin: 0 auto 48px;
    }

    .section-eyebrow {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: var(--accent);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .section-head h2 {
        font-size: 34px;
        font-weight: 800;
        color: var(--primary);
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .section-head p {
        color: var(--muted);
        font-size: 16px;
    }

    .bg-soft {
        background: var(--bg-soft);
    }

    .info-bar {
        background: var(--primary);
        padding: 20px 0;
    }

    .info-bar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 18px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        color: #fff;
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }

    .info-item i {
        color: var(--accent-light);
        font-size: 20px;
    }

    .info-item span {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
    }

    .info-item strong {
        font-size: 15px;
        font-weight: 700;
    }

    .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .tag {
        display: inline-flex;
        padding: 10px 20px;
        border-radius: 999px;
        background: var(--card);
        border: 1px solid var(--border);
        font-size: 14px;
        font-weight: 600;
        color: var(--text);
        transition: all 0.25s ease;
    }

    .tag:hover {
        border-color: var(--accent);
        color: var(--accent);
        box-shadow: 0 6px 16px rgba(193, 154, 91, 0.15);
        transform: translateY(-2px);
    }

    .news-card {
        background: var(--card);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        border: 1px solid var(--border);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
    }

    .news-cover {
        position: relative;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: var(--bg-soft);
    }

    .news-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .news-card:hover .news-cover img {
        transform: scale(1.05);
    }

    .news-cover::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(30, 42, 58, 0.2));
    }

    .news-body {
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .news-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 12px;
    }

    .news-body h3 {
        font-size: 19px;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 10px;
        color: var(--text);
    }

    .news-body p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
    }

    .news-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: auto;
        padding-top: 16px;
        font-size: 14px;
        font-weight: 600;
        color: var(--primary);
    }

    .news-link i {
        transition: transform 0.2s ease;
    }

    .news-link:hover i {
        transform: translateX(4px);
    }

    .timeline {
        position: relative;
        max-width: 760px;
        margin: 0 auto;
        padding-left: 30px;
    }

    .timeline::before {
        content: "";
        position: absolute;
        left: 9px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--accent), rgba(193, 154, 91, 0.2));
    }

    .timeline-item {
        position: relative;
        margin-bottom: 30px;
    }

    .timeline-item::before {
        content: "";
        position: absolute;
        left: -27px;
        top: 24px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--accent);
        border: 3px solid #fff;
        box-shadow: 0 0 0 3px rgba(193, 154, 91, 0.25);
    }

    .timeline-card {
        background: var(--card);
        border-radius: var(--radius-sm);
        padding: 22px 24px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
    }

    .timeline-date {
        display: inline-block;
        background: var(--primary);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 999px;
        margin-bottom: 10px;
        letter-spacing: 0.04em;
    }

    .timeline-card h3 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .timeline-card p {
        font-size: 14px;
        color: var(--muted);
    }

    .stat-section {
        position: relative;
        padding: 90px 0;
        background-size: cover;
        background-position: center;
    }

    .stat-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(30, 42, 58, 0.84);
    }

    .stat-section .container {
        position: relative;
        z-index: 2;
    }

    .stat-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .stat-item {
        text-align: center;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: var(--radius);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(4px);
    }

    .stat-num {
        display: block;
        font-size: 44px;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .stat-item span:last-child {
        color: rgba(255, 255, 255, 0.75);
        font-size: 15px;
    }

    .faq-list {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .faq-list details {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 18px 24px;
        box-shadow: var(--shadow);
        transition: all 0.25s ease;
    }

    .faq-list summary {
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        color: var(--text);
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .faq-list summary::-webkit-details-marker {
        display: none;
    }

    .faq-list summary::after {
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 14px;
        color: var(--accent);
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }

    .faq-list details[open] summary::after {
        transform: rotate(180deg);
    }

    .faq-list details p {
        margin-top: 14px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.8;
        border-top: 1px dashed var(--border);
        padding-top: 14px;
    }

    .cta-section {
        background: linear-gradient(135deg, #1e2a3a, #2c3d52);
        padding: 70px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        position: absolute;
        top: -80px;
        right: -80px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(193, 154, 91, 0.15);
        content: "";
    }

    .cta-section::after {
        position: absolute;
        bottom: -100px;
        left: -60px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(193, 154, 91, 0.08);
        content: "";
    }

    .cta-section .container {
        position: relative;
        z-index: 2;
    }

    .cta-section h2 {
        font-size: 32px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 12px;
    }

    .cta-section p {
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 28px;
        font-size: 16px;
    }

    .site-footer {
        background: #161e28;
        color: rgba(255, 255, 255, 0.7);
        padding: 60px 0 0;
    }

    .footer-inner {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 40px;
    }

    .footer-logo {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        display: block;
        margin-bottom: 12px;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.8;
        max-width: 360px;
    }

    .footer-nav h4 {
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .footer-nav a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        padding: 5px 0;
        transition: all 0.2s ease;
    }

    .footer-nav a:hover {
        color: var(--accent-light);
        padding-left: 4px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
    }

    @media (max-width: 1024px) {
        :root {
            --space: 72px;
        }

        .footer-inner {
            grid-template-columns: 1fr 1fr;
        }

        .page-hero h1 {
            font-size: 36px;
        }
    }

    @media (max-width: 768px) {
        .nav-toggle {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            background: #fff;
            flex-direction: column;
            align-items: stretch;
            padding: 16px 20px;
            gap: 4px;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-135%);
            transition: transform 0.3s ease;
            z-index: 49;
        }

        .main-nav.open {
            transform: translateY(0);
        }

        .nav-link {
            padding: 12px 16px;
            border-radius: 10px;
        }

        .nav-cta {
            display: none;
        }

        .page-hero {
            padding: 90px 0;
        }

        .page-hero h1 {
            font-size: 32px;
        }

        .page-hero p {
            font-size: 16px;
        }

        .info-bar-inner {
            flex-direction: column;
        }

        .stat-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .timeline {
            padding-left: 24px;
        }

        .section-head h2 {
            font-size: 28px;
        }
    }

    @media (max-width: 520px) {
        :root {
            --space: 56px;
        }

        .container {
            padding: 0 18px;
        }

        .header-inner {
            padding: 12px 18px;
        }

        .page-hero h1 {
            font-size: 26px;
        }

        .section-head h2 {
            font-size: 24px;
        }

        .stat-grid {
            grid-template-columns: 1fr;
        }

        .footer-inner {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .hero-actions {
            flex-direction: column;
            align-items: center;
        }

        .btn {
            width: 100%;
            max-width: 280px;
        }

        .info-item {
            min-width: 100%;
        }

        .news-body {
            padding: 18px;
        }

        .news-body h3 {
            font-size: 17px;
        }

        .timeline-card {
            padding: 18px;
        }
    }

/* roulang page: category3 */
:root {
    --primary: #c8a24a;
    --primary-dark: #a8832f;
    --primary-light: #e6d3a3;
    --dark: #16181f;
    --dark-soft: #222634;
    --text: #2a2d35;
    --text-weak: #6b7280;
    --border: #e8e4dc;
    --bg: #f8f7f4;
    --radius: 18px;
    --shadow: 0 12px 32px rgba(22, 24, 31, .08);
    --shadow-lg: 0 24px 50px rgba(22, 24, 31, .12);
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
  }

  a:focus-visible,
  button:focus-visible {
    outline: 3px solid rgba(200, 162, 74, .45);
    outline-offset: 3px;
    border-radius: 6px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* ===== 定制按钮与通用组件 ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: .95rem;
    border-radius: 999px;
    padding: 12px 26px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
  }

  .btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(200, 162, 74, .35);
  }

  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(168, 131, 47, .4);
  }

  .btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .7);
  }

  .btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
    transform: translateY(-2px);
  }

  .btn-soft {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(22, 24, 31, .05);
  }

  .btn-soft:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 24, 31, .08);
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    background: rgba(200, 162, 74, .12);
    color: var(--primary-dark);
    border: 1px solid rgba(200, 162, 74, .22);
    letter-spacing: .03em;
  }

  .badge-light {
    background: rgba(255, 255, 255, .16);
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
  }

  .section-title {
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    letter-spacing: -.02em;
  }

  .section-subtitle {
    color: var(--text-weak);
    font-size: 1.02rem;
    max-width: 640px;
    line-height: 1.8;
  }

  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
    flex-wrap: wrap;
  }

  /* ===== Header ===== */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 247, 244, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 228, 220, .8);
    transition: box-shadow var(--transition);
  }

  .site-header.scrolled {
    box-shadow: 0 8px 30px rgba(22, 24, 31, .07);
  }

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: .01em;
    white-space: nowrap;
  }

  .logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 3px 10px rgba(200, 162, 74, .45);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-link {
    position: relative;
    padding: 8px 18px;
    font-size: .95rem;
    font-weight: 500;
    color: #4b5060;
    border-radius: 999px;
    transition: all var(--transition);
  }

  .nav-link:hover {
    background: rgba(200, 162, 74, .1);
    color: var(--primary-dark);
  }

  .nav-link.active {
    background: var(--dark);
    color: #fff;
    font-weight: 600;
  }

  .nav-link.active:hover {
    background: var(--dark);
    color: #fff;
  }

  .nav-cta {
    padding: 10px 22px;
    font-size: .9rem;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border-radius: 12px;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s ease;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ===== 分类页 Hero ===== */
  .category-hero {
    position: relative;
    padding: 96px 0 84px;
    background-image: linear-gradient(135deg, rgba(22, 24, 31, .92), rgba(34, 38, 52, .82)),
      url('/assets/images/backpic/back-2.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
  }

  .category-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(200, 162, 74, .35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: rgba(255, 255, 255, .68);
    margin-bottom: 22px;
  }

  .breadcrumb a:hover {
    color: var(--primary-light);
  }

  .breadcrumb i {
    font-size: .7rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 18px;
  }

  .hero-title em {
    font-style: normal;
    color: var(--primary-light);
  }

  .hero-desc {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .82);
    max-width: 620px;
    line-height: 1.85;
    margin-bottom: 36px;
  }

  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
  }

  .hero-stat h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
  }

  .hero-stat h4 span {
    color: var(--primary-light);
  }

  .hero-stat p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .66);
    margin-top: 2px;
  }

  /* ===== 板块通用 ===== */
  .section-block {
    padding: 84px 0;
  }

  .section-alt {
    background: #fff;
  }

  /* ===== 分类介绍 ===== */
  .intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
  }

  .intro-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .intro-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform .6s ease;
  }

  .intro-visual:hover img {
    transform: scale(1.04);
  }

  .intro-visual .visual-tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(22, 24, 31, .82);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .visual-tag i {
    color: var(--primary-light);
  }

  .intro-points {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 14px;
  }

  .intro-points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: .96rem;
    color: #454b58;
    line-height: 1.7;
  }

  .intro-points .point-ic {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(200, 162, 74, .12);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
  }

  /* ===== 城市专题卡片 ===== */
  .topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .topic-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
  }

  .topic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 162, 74, .4);
  }

  .topic-card .topic-img {
    height: 170px;
    overflow: hidden;
    position: relative;
  }

  .topic-card .topic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
  }

  .topic-card:hover .topic-img img {
    transform: scale(1.07);
  }

  .topic-card .topic-body {
    padding: 22px 20px 24px;
  }

  .topic-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .topic-card p {
    font-size: .88rem;
    color: var(--text-weak);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .topic-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .82rem;
    color: var(--text-faint, #8a8f9c);
  }

  .topic-meta a {
    color: var(--primary-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .topic-meta a i {
    transition: transform var(--transition);
    font-size: .75rem;
  }

  .topic-meta a:hover i {
    transform: translateX(4px);
  }

  /* ===== 排期时间轴 / 票券式卡片 ===== */
  .schedule-section {
    background: var(--dark);
    color: #fff;
  }

  .schedule-section .section-title {
    color: #fff;
  }

  .schedule-section .section-subtitle {
    color: rgba(255, 255, 255, .66);
  }

  .schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .ticket-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 26px;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
  }

  .ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
  }

  .ticket-card:hover {
    background: rgba(255, 255, 255, .09);
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  }

  .ticket-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    background: rgba(200, 162, 74, .18);
    color: var(--primary-light);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
  }

  .ticket-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
  }

  .ticket-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .ticket-info {
    display: grid;
    gap: 8px;
    padding: 14px 0;
    border-top: 1px dashed rgba(255, 255, 255, .16);
    border-bottom: 1px dashed rgba(255, 255, 255, .16);
    margin-bottom: 20px;
  }

  .ticket-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .78);
    list-style: none;
  }

  .ticket-info li i {
    width: 18px;
    color: var(--primary-light);
    font-size: .8rem;
    text-align: center;
  }

  .ticket-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ticket-action .price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
  }

  .ticket-action .price span {
    font-size: .8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .55);
    margin-right: 4px;
  }

  .ticket-action .btn {
    padding: 8px 18px;
    font-size: .85rem;
  }

  /* ===== 场所推荐网格 ===== */
  .venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .venue-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
  }

  .venue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  .venue-img {
    height: 180px;
    overflow: hidden;
    position: relative;
  }

  .venue-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
  }

  .venue-card:hover .venue-img img {
    transform: scale(1.06);
  }

  .venue-img .badge {
    position: absolute;
    left: 14px;
    top: 14px;
  }

  .venue-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .venue-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
  }

  .venue-body .venue-loc {
    font-size: .82rem;
    color: var(--text-faint, #8a8f9c);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
  }

  .venue-body p {
    font-size: .88rem;
    color: var(--text-weak);
    line-height: 1.7;
    flex: 1;
  }

  .venue-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
    font-size: .85rem;
  }

  .venue-foot .status-open {
    color: #2f9e6e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .venue-foot a {
    color: var(--primary-dark);
    font-weight: 600;
  }

  /* ===== 资讯列表 ===== */
  .info-list {
    max-width: 860px;
    margin: 0 auto;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    transition: padding var(--transition);
  }

  .info-item:first-child {
    padding-top: 0;
  }

  .info-item:last-child {
    border-bottom: none;
  }

  .info-item:hover {
    padding-left: 8px;
  }

  .info-date {
    text-align: center;
    min-width: 64px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px 10px;
    flex-shrink: 0;
  }

  .info-date .d-month {
    font-size: .75rem;
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
  }

  .info-date .d-day {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
  }

  .info-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    transition: color var(--transition);
  }

  .info-item:hover .info-content h3 {
    color: var(--primary-dark);
  }

  .info-content p {
    font-size: .88rem;
    color: var(--text-weak);
    line-height: 1.6;
  }

  .info-tags {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
  }

  .info-tags .tag {
    background: rgba(200, 162, 74, .1);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: .76rem;
    font-weight: 600;
  }

  /* ===== FAQ ===== */
  .faq-wrap {
    max-width: 840px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
  }

  .faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
  }

  .faq-item:hover {
    border-color: rgba(200, 162, 74, .4);
    box-shadow: 0 8px 24px rgba(22, 24, 31, .06);
  }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
  }

  .faq-question i {
    color: var(--primary);
    font-size: .9rem;
    transition: transform .3s ease;
    flex-shrink: 0;
  }

  .faq-item.open .faq-question i {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }

  .faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--text-weak);
    font-size: .93rem;
    line-height: 1.8;
  }

  /* ===== CTA ===== */
  .cta-band {
    position: relative;
    background-image: linear-gradient(120deg, rgba(22, 24, 31, .93), rgba(34, 38, 52, .85)),
      url('/assets/images/backpic/back-3.png');
    background-size: cover;
    background-position: center;
    border-radius: 28px;
    padding: 64px 56px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .cta-band::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 162, 74, .3), transparent 70%);
    pointer-events: none;
  }

  .cta-band h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .cta-band p {
    color: rgba(255, 255, 255, .75);
    max-width: 480px;
    font-size: .96rem;
  }

  .cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  /* ===== Footer ===== */
  .site-footer {
    background: #16181f;
    color: rgba(255, 255, 255, .68);
    padding: 64px 0 0;
    margin-top: 80px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 48px;
  }

  .footer-brand .footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .footer-brand .footer-logo::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: rotate(45deg);
    display: block;
  }

  .footer-brand p {
    font-size: .88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .54);
    max-width: 320px;
  }

  .footer-nav h4 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: .04em;
  }

  .footer-nav a {
    display: block;
    padding: 6px 0;
    font-size: .88rem;
    color: rgba(255, 255, 255, .58);
    transition: all var(--transition);
  }

  .footer-nav a:hover {
    color: var(--primary-light);
    padding-left: 6px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .82rem;
    color: rgba(255, 255, 255, .42);
  }

  /* ===== 响应式 ===== */
  @media (max-width: 1024px) {
    .topic-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .schedule-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .venue-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .intro-grid {
      gap: 36px;
    }
  }

  @media (max-width: 860px) {
    .header-inner {
      height: 64px;
    }
    .nav-toggle {
      display: flex;
    }
    .main-nav {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--bg);
      flex-direction: column;
      align-items: stretch;
      padding: 20px 24px 28px;
      gap: 6px;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 20px 40px rgba(22, 24, 31, .1);
      transform: translateY(-12px);
      opacity: 0;
      visibility: hidden;
      transition: all .3s ease;
    }
    .main-nav.open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    .nav-link {
      padding: 12px 18px;
      font-size: 1rem;
      border-radius: 12px;
    }
    .nav-cta {
      display: none;
    }
    .category-hero {
      padding: 64px 0 56px;
    }
    .hero-stats {
      gap: 20px;
    }
    .section-block {
      padding: 60px 0;
    }
    .intro-grid {
      grid-template-columns: 1fr;
    }
    .intro-visual img {
      height: 300px;
    }
    .cta-band {
      padding: 40px 28px;
    }
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  }

  @media (max-width: 640px) {
    .topic-grid,
    .schedule-grid,
    .venue-grid {
      grid-template-columns: 1fr;
    }
    .info-item {
      flex-wrap: wrap;
      gap: 12px;
    }
    .info-date {
      min-width: 54px;
    }
    .info-tags {
      width: 100%;
      margin-left: 0;
    }
    .cta-band {
      text-align: center;
      justify-content: center;
    }
    .cta-actions {
      justify-content: center;
    }
    .footer-bottom {
      justify-content: center;
      text-align: center;
    }
    .hero-stat h4 {
      font-size: 1.4rem;
    }
  }

  @media (max-width: 520px) {
    .container {
      padding-left: 18px;
      padding-right: 18px;
    }
    .header-inner {
      padding: 0 18px;
    }
    .logo {
      font-size: 1rem;
    }
    .hero-desc {
      font-size: .95rem;
    }
    .section-head {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }
    .venue-foot {
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }
  }

/* roulang page: category2 */
/* ===== Design Variables ===== */
        :root {
            --primary: #4F46E5;
            --primary-dark: #4338CA;
            --accent: #F59E0B;
            --accent-light: #FBBF24;
            --bg-light: #F6F7FB;
            --bg-white: #FFFFFF;
            --text-main: #1E293B;
            --text-weak: #64748B;
            --border: #E2E8F0;
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 10px;
            --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
            --shadow-md: 0 10px 30px rgba(15, 23, 42, .08);
            --shadow-lg: 0 24px 60px rgba(15, 23, 42, .12);
            --container: 1200px;
            --nav-h: 76px;
        }

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans), system-ui, -apple-system, sans-serif;
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
            color: var(--text-main);
            background-color: var(--bg-light);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .25s ease;
        }

        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
        }

        input,
        select {
            font-family: inherit;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ===== Header ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(226, 232, 240, .7);
            box-shadow: 0 1px 12px rgba(15, 23, 42, .04);
        }

        .header-inner {
            max-width: var(--container);
            margin: 0 auto;
            height: var(--nav-h);
            padding: 0 24px;
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--text-main);
            letter-spacing: .5px;
            white-space: nowrap;
        }

        .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            box-shadow: 0 0 0 3px rgba(79, 70, 229, .15);
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-left: auto;
        }

        .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: .95rem;
            font-weight: 600;
            color: #475569;
            transition: all .25s ease;
        }

        .nav-link:hover {
            color: var(--primary);
            background: #EEF0FF;
        }

        .nav-link.active {
            color: var(--primary);
            background: rgba(79, 70, 229, .1);
            font-weight: 700;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 4px;
            background: var(--accent);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: 999px;
            font-size: .92rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            box-shadow: 0 8px 20px rgba(79, 70, 229, .28);
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(79, 70, 229, .34);
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            border: 1px solid var(--border);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: #fff;
            margin-left: auto;
        }

        .nav-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            border-radius: 2px;
            background: var(--text-main);
            transition: all .3s ease;
        }

        .nav-toggle.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* ===== Page Hero ===== */
        .page-hero {
            position: relative;
            padding: 100px 0 90px;
            background-size: cover;
            background-position: center;
            color: #fff;
            isolation: isolate;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(15, 23, 42, .88) 0%, rgba(30, 27, 75, .72) 50%, rgba(79, 70, 229, .5) 100%);
            z-index: -1;
        }

        .breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .9rem;
            color: rgba(255, 255, 255, .82);
            background: rgba(255, 255, 255, .14);
            border: 1px solid rgba(255, 255, 255, .2);
            padding: 6px 16px;
            border-radius: 999px;
            margin-bottom: 24px;
            backdrop-filter: blur(8px);
        }

        .breadcrumb i {
            font-size: .75rem;
        }

        .breadcrumb a:hover {
            color: var(--accent-light);
        }

        .page-hero h1 {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 900;
            letter-spacing: 1px;
            margin-bottom: 16px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, .25);
        }

        .page-hero p {
            max-width: 640px;
            font-size: 1.12rem;
            color: rgba(255, 255, 255, .88);
            margin-bottom: 36px;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 13px 28px;
            border-radius: 999px;
            font-weight: 700;
            font-size: .96rem;
            transition: all .3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), #D97706);
            color: #fff;
            box-shadow: 0 10px 24px rgba(245, 158, 11, .35);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(245, 158, 11, .42);
        }

        .btn-outline-light {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, .7);
            color: #fff;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff;
        }

        /* ===== Sections ===== */
        .section {
            padding: 90px 0;
        }

        .section-alt {
            background: var(--bg-white);
        }

        .section-head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 56px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .84rem;
            font-weight: 700;
            color: var(--primary);
            background: rgba(79, 70, 229, .08);
            padding: 6px 16px;
            border-radius: 999px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .section-title {
            font-size: clamp(1.9rem, 3.2vw, 2.6rem);
            font-weight: 800;
            line-height: 1.3;
            color: var(--text-main);
            margin-bottom: 14px;
        }

        .section-desc {
            font-size: 1.06rem;
            color: var(--text-weak);
            line-height: 1.8;
        }

        /* ===== Stats Strip ===== */
        .stats-strip {
            background: linear-gradient(135deg, #1E1B4B 0%, #3730A3 60%, #4F46E5 100%);
            padding: 46px 0;
            color: #fff;
            margin-top: -1px;
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-card {
            text-align: center;
            padding: 12px 20px;
            border-right: 1px solid rgba(255, 255, 255, .16);
        }

        .stat-card:last-child {
            border-right: none;
        }

        .stat-number {
            font-size: 2.6rem;
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--accent-light), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            margin-top: 6px;
            font-size: .94rem;
            opacity: .82;
        }

        /* ===== Filter Chips ===== */
        .filter-wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-bottom: 48px;
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: 999px;
            font-size: .92rem;
            font-weight: 600;
            color: #475569;
            background: #fff;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all .25s ease;
        }

        .filter-chip i {
            color: var(--primary);
            font-size: .9rem;
        }

        .filter-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .filter-chip.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 10px 22px rgba(79, 70, 229, .28);
        }

        .filter-chip.active i {
            color: #fff;
        }

        /* ===== Event Ticket Card ===== */
        .event-list {
            display: grid;
            gap: 28px;
            max-width: 980px;
            margin: 0 auto;
        }

        .event-card {
            display: grid;
            grid-template-columns: 150px 1fr auto;
            align-items: stretch;
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: box-shadow .3s ease, transform .3s ease;
            position: relative;
        }

        .event-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .event-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }

        .event-date-block {
            background: linear-gradient(145deg, #EEF0FF, #E0E4FF);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            text-align: center;
            border-right: 2px dashed var(--border);
            position: relative;
        }

        .event-date-block::after {
            content: '';
            position: absolute;
            right: -7px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--bg-light);
            border: 2px solid var(--border);
        }

        .event-date-month {
            font-size: .86rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 2px;
        }

        .event-date-day {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--text-main);
            line-height: 1.1;
        }

        .event-date-week {
            font-size: .8rem;
            color: var(--text-weak);
            margin-top: 4px;
        }

        .event-body {
            padding: 24px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }

        .event-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .event-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: .76rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            background: #F1F5F9;
            color: #475569;
        }

        .event-tag.status-open {
            background: #DCFCE7;
            color: #15803D;
        }

        .event-tag.status-soon {
            background: #FEF3C7;
            color: #B45309;
        }

        .event-title {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.35;
        }

        .event-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            font-size: .9rem;
            color: var(--text-weak);
        }

        .event-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .event-meta i {
            color: var(--primary);
            font-size: .85rem;
        }

        .event-action {
            display: flex;
            align-items: center;
            padding: 0 28px;
        }

        .event-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 999px;
            font-weight: 700;
            font-size: .9rem;
            background: var(--primary);
            color: #fff;
            box-shadow: 0 8px 18px rgba(79, 70, 229, .25);
            transition: all .25s ease;
            white-space: nowrap;
        }

        .event-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(79, 70, 229, .32);
        }

        .event-btn.secondary {
            background: #F1F5F9;
            color: #475569;
            box-shadow: none;
        }

        .event-btn.secondary:hover {
            background: #E2E8F0;
            color: var(--text-main);
        }

        /* ===== Timeline ===== */
        .timeline-wrap {
            max-width: 860px;
            margin: 0 auto;
        }

        .timeline {
            position: relative;
            padding-left: 48px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 16px;
            top: 8px;
            bottom: 8px;
            width: 3px;
            border-radius: 3px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: -48px;
            top: 4px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            color: var(--primary);
            box-shadow: 0 0 0 5px rgba(79, 70, 229, .12);
        }

        .timeline-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow .25s ease;
        }

        .timeline-card:hover {
            box-shadow: var(--shadow-md);
        }

        .timeline-step {
            font-size: .8rem;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .timeline-card h3 {
            font-size: 1.14rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .timeline-card p {
            font-size: .94rem;
            color: var(--text-weak);
            line-height: 1.7;
        }

        /* ===== Recommend Cards ===== */
        .recommend-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .recommend-card {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all .35s ease;
            display: flex;
            flex-direction: column;
        }

        .recommend-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .recommend-cover {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .recommend-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .recommend-card:hover .recommend-cover img {
            transform: scale(1.05);
        }

        .recommend-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, .35));
        }

        .recommend-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            background: var(--accent);
            color: #fff;
            font-size: .78rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 999px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
        }

        .recommend-body {
            padding: 22px 24px 26px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .recommend-body h3 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .recommend-body p {
            font-size: .92rem;
            color: var(--text-weak);
            margin-bottom: 18px;
            flex: 1;
        }

        .recommend-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .recommend-price {
            font-size: .86rem;
            color: var(--text-weak);
        }

        .recommend-price strong {
            color: var(--accent);
            font-size: 1rem;
        }

        .recommend-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: .9rem;
            font-weight: 700;
            color: var(--primary);
        }

        .recommend-link:hover {
            color: var(--primary-dark);
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 820px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow .25s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            text-align: left;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-main);
            background: #fff;
        }

        .faq-question i {
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .faq-question .fa-chevron-down {
            margin-left: auto;
            color: var(--text-weak);
            transition: transform .3s ease;
        }

        .faq-item.active .faq-question .fa-chevron-down {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 24px 22px 58px;
            font-size: .96rem;
            color: var(--text-weak);
            line-height: 1.8;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* ===== CTA Card ===== */
        .cta-card {
            background: linear-gradient(135deg, #1E1B4B 0%, #3730A3 50%, #4F46E5 100%);
            border-radius: 28px;
            padding: 70px 48px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(245, 158, 11, .2);
            top: -80px;
            right: -60px;
        }

        .cta-card::after {
            content: '';
            position: absolute;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            bottom: -60px;
            left: -40px;
        }

        .cta-card h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 900;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
        }

        .cta-card p {
            font-size: 1.08rem;
            color: rgba(255, 255, 255, .84);
            max-width: 560px;
            margin: 0 auto 32px;
            position: relative;
            z-index: 1;
        }

        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-form input {
            flex: 1;
            padding: 14px 22px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .3);
            background: rgba(255, 255, 255, .14);
            color: #fff;
            font-size: .95rem;
            outline: none;
            backdrop-filter: blur(6px);
        }

        .cta-form input::placeholder {
            color: rgba(255, 255, 255, .65);
        }

        .cta-form input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(245, 158, 11, .25);
        }

        .cta-form .btn-primary {
            white-space: nowrap;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #0B1120;
            color: rgba(255, 255, 255, .72);
            padding-top: 64px;
            margin-top: 80px;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 44px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .footer-logo {
            display: inline-block;
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-brand p {
            font-size: .94rem;
            line-height: 1.8;
            max-width: 320px;
        }

        .footer-nav h4 {
            color: #fff;
            font-size: .98rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-nav a {
            display: block;
            padding: 5px 0;
            font-size: .92rem;
            transition: color .2s ease, padding-left .2s ease;
        }

        .footer-nav a:hover {
            color: var(--accent);
            padding-left: 6px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            padding: 24px 0;
            font-size: .88rem;
            opacity: .8;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .header-inner {
                gap: 16px;
            }

            .nav-link {
                padding: 8px 12px;
                font-size: .88rem;
            }

            .stats-strip {
                padding: 36px 0;
            }

            .stat-number {
                font-size: 2rem;
            }

            .event-card {
                grid-template-columns: 120px 1fr;
            }

            .event-action {
                grid-column: 1 / -1;
                justify-content: flex-end;
                padding: 0 24px 24px;
            }

            .recommend-grid {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                height: 64px;
                padding: 0 18px;
            }

            .main-nav {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding: 16px 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
                border-bottom: 1px solid var(--border);
                transform: translateY(-120%);
                transition: transform .35s ease;
                z-index: 99;
            }

            .main-nav.open {
                transform: translateY(0);
            }

            .nav-link {
                padding: 12px 16px;
                border-radius: 12px;
                font-size: 1rem;
            }

            .nav-link.active::after {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .page-hero {
                padding: 70px 0 64px;
            }

            .section {
                padding: 64px 0;
            }

            .section-head {
                margin-bottom: 40px;
            }

            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }

            .stat-card {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, .12);
                padding-bottom: 18px;
            }

            .stat-card:nth-last-child(-n+2) {
                border-bottom: none;
            }

            .event-card {
                grid-template-columns: 1fr;
            }

            .event-date-block {
                flex-direction: row;
                gap: 14px;
                border-right: none;
                border-bottom: 2px dashed var(--border);
                padding: 16px 20px;
            }

            .event-date-block::after {
                display: none;
            }

            .event-date-day {
                font-size: 1.8rem;
            }

            .event-action {
                grid-column: auto;
                padding: 0 20px 20px;
            }

            .event-btn {
                width: 100%;
                justify-content: center;
            }

            .recommend-grid {
                grid-template-columns: 1fr;
            }

            .timeline {
                padding-left: 40px;
            }

            .timeline-dot {
                left: -40px;
                width: 30px;
                height: 30px;
                font-size: .8rem;
            }

            .cta-card {
                padding: 48px 24px;
            }

            .cta-form {
                flex-direction: column;
            }

            .footer-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .logo {
                font-size: 1.12rem;
            }

            .page-hero h1 {
                font-size: 2rem;
            }

            .page-hero p {
                font-size: 1rem;
            }

            .stat-number {
                font-size: 1.7rem;
            }

            .filter-chip {
                padding: 8px 16px;
                font-size: .84rem;
            }

            .event-body {
                padding: 18px 16px;
            }

            .timeline-card {
                padding: 18px;
            }

            .timeline {
                padding-left: 36px;
            }

            .timeline-dot {
                left: -36px;
            }

            .cta-card h2 {
                font-size: 1.6rem;
            }
        }
