/* roulang page: index */
:root {
            --primary-ink: #1C1D21;
            --secondary-dark: #27292F;
            --brand-red: #8B1E1E;
            --brand-red-hover: #A02A2A;
            --accent-gold: #B78A5C;
            --linen-bg: #F5F1EA;
            --card-white: #FFFFFF;
            --body-text: #2C2E33;
            --muted-text: #6B6E76;
            --border-light: rgba(28,29,33,0.08);
            --radius-lg: 16px;
            --radius-md: 8px;
            --shadow-card: 0 4px 20px rgba(28,29,33,0.06);
            --shadow-hover: 0 12px 32px rgba(28,29,33,0.12);
            --font-cn: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-en: "Archivo", "DIN Alternate", sans-serif;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-cn);
            background-color: var(--linen-bg);
            color: var(--body-text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            border: none;
            outline: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .section-padding {
            padding: clamp(64px, 8vw, 110px) 0;
        }

        .text-center {
            text-align: center;
        }

        /* Utility Bar */
        .utility-bar {
            background: var(--primary-ink);
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            height: 36px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .utility-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .utility-bar .domain {
            color: rgba(255, 255, 255, 0.7);
            font-family: var(--font-en);
            letter-spacing: 0.02em;
        }

        .utility-bar .tip {
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            padding-left: 12px;
            color: rgba(255, 255, 255, 0.75);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .utility-bar .tip::before {
            content: '';
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--accent-gold);
            flex-shrink: 0;
        }

        .utility-bar .auth-links {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .utility-bar .auth-links a {
            color: rgba(255, 255, 255, 0.85);
            font-size: 13px;
            padding: 4px 0;
        }

        .utility-bar .auth-links a:hover {
            color: var(--accent-gold);
        }

        /* Site Header & Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(245, 241, 234, 0.82);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(28, 29, 33, 0.06);
            height: 72px;
            display: flex;
            align-items: center;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .site-logo .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--brand-red) 0%, var(--primary-ink) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(139, 30, 30, 0.3);
        }

        .site-logo .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .site-logo .logo-text strong {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-ink);
            letter-spacing: 0.02em;
        }

        .site-logo .logo-text span {
            font-size: 12px;
            color: var(--muted-text);
            letter-spacing: 0.05em;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
        }

        .main-nav a {
            padding: 10px 16px;
            font-size: 16px;
            font-weight: 500;
            color: var(--primary-ink);
            border-radius: var(--radius-md);
            position: relative;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 4px;
            height: 2px;
            background: var(--brand-red);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .main-nav a:hover::after,
        .main-nav a.active::after {
            transform: scaleX(1);
        }

        .main-nav a:hover,
        .main-nav a.active {
            color: var(--brand-red);
        }

        .header-cta {
            flex-shrink: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid transparent;
            text-decoration: none;
            font-size: 16px;
            padding: 14px 28px;
            line-height: 1.2;
            min-height: 44px;
        }

        .btn:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .btn-red {
            background: var(--brand-red);
            color: #fff;
            box-shadow: 0 0 20px rgba(139, 30, 30, 0.4);
        }

        .btn-red:hover {
            background: var(--brand-red-hover);
            box-shadow: 0 0 30px rgba(139, 30, 30, 0.6);
            transform: translateY(-2px);
        }

        .btn-gold {
            background: var(--accent-gold);
            color: #fff;
            box-shadow: 0 0 20px rgba(183, 138, 92, 0.4);
        }

        .btn-gold:hover {
            background: #c99a6d;
            box-shadow: 0 0 30px rgba(183, 138, 92, 0.6);
            transform: translateY(-2px);
        }

        .btn-outline-gold {
            background: transparent;
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .btn-outline-gold:hover {
            background: rgba(183, 138, 92, 0.1);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .btn-outline-light {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }

        .header-cta .btn {
            padding: 10px 24px;
            min-height: 40px;
            font-size: 15px;
        }

        .hamburger {
            display: none;
            background: none;
            font-size: 24px;
            color: var(--primary-ink);
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-md);
        }

        .hamburger:focus-visible {
            outline: 2px solid var(--accent-gold);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: url('/assets/images/backpic/back-1.webp') no-repeat center center;
            background-size: cover;
            color: #fff;
            isolation: isolate;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, rgba(28, 29, 33, 0.92) 0%, rgba(28, 29, 33, 0.65) 45%, rgba(139, 30, 30, 0.35) 100%);
            z-index: -1;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .hero-content {
            max-width: 720px;
            padding: 80px 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 999px;
            font-size: 14px;
            letter-spacing: 0.08em;
            backdrop-filter: blur(4px);
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 24px;
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-gold);
        }

        .hero h1 {
            font-family: var(--font-cn);
            font-size: clamp(32px, 6vw, 64px);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: 0.02em;
            margin-bottom: 24px;
            color: #fff;
        }

        .hero h1 .highlight {
            color: var(--accent-gold);
        }

        .hero-sub {
            font-size: clamp(16px, 2vw, 22px);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            max-width: 560px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .hero-actions .btn {
            min-height: 50px;
            padding: 16px 32px;
        }

        .text-link-under {
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            padding-bottom: 4px;
            background: linear-gradient(to right, var(--accent-gold), var(--accent-gold));
            background-size: 0% 2px;
            background-repeat: no-repeat;
            background-position: left bottom;
            transition: background-size 0.3s ease;
        }

        .text-link-under:hover {
            background-size: 100% 2px;
        }

        .hero-info-cards {
            position: absolute;
            right: 5%;
            bottom: 80px;
            display: flex;
            gap: 16px;
            align-items: flex-end;
        }

        .hero-info-card {
            width: 160px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-lg);
            padding: 20px;
            text-align: left;
        }

        .hero-info-card .label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.08em;
            margin-bottom: 8px;
        }

        .hero-info-card .value {
            font-family: var(--font-en);
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            line-height: 1.4;
        }

        .hero-info-card .value.chinese {
            font-family: var(--font-cn);
            font-size: 16px;
        }

        .hero-info-card:nth-child(2) {
            transform: translateY(20px);
        }

        /* Section Titles */
        .section-title-block {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 48px;
            gap: 24px;
        }

        .section-title-block h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: 0.02em;
            color: var(--primary-ink);
            margin-bottom: 8px;
        }

        .section-title-block .lead {
            font-size: 16px;
            color: var(--muted-text);
        }

        .section-title-block .link-all {
            font-size: 15px;
            font-weight: 500;
            color: var(--brand-red);
            position: relative;
            padding-bottom: 4px;
            white-space: nowrap;
        }

        .section-title-block .link-all::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: var(--brand-red);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .section-title-block .link-all:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .text-white h2,
        .section-title-block.text-white h2 {
            color: #fff;
        }

        .text-white .lead {
            color: rgba(255, 255, 255, 0.7);
        }

        .section-title-center h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 600;
            text-align: center;
            color: var(--primary-ink);
            margin-bottom: 16px;
        }

        .section-title-center .lead-center {
            text-align: center;
            font-size: 16px;
            color: var(--muted-text);
            max-width: 640px;
            margin: 0 auto;
        }

        /* Agenda Timeline */
        .agenda-section {
            background: var(--linen-bg);
        }

        .agenda-grid {
            display: flex;
            gap: 60px;
            align-items: flex-start;
        }

        .timeline {
            flex: 1;
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(183, 138, 92, 0.3);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item .time {
            font-family: var(--font-en);
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: 0.02em;
            margin-bottom: 8px;
        }

        .timeline-item .node {
            position: absolute;
            left: -30px;
            top: 4px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1px solid var(--accent-gold);
            background: var(--linen-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .timeline-item .node::after {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-red);
            transition: var(--transition);
        }

        .timeline-item:hover .node {
            background: var(--accent-gold);
            transform: scale(1.2);
        }

        .timeline-item:hover .node::after {
            background: #fff;
        }

        .timeline-item h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-ink);
            margin-bottom: 6px;
            transition: var(--transition);
        }

        .timeline-item:hover h3 {
            color: var(--brand-red);
        }

        .timeline-item p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted-text);
        }

        .agenda-card {
            flex: 0 0 380px;
            position: relative;
        }

        .agenda-card .cover-wrap {
            background: var(--card-white);
            border-radius: var(--radius-lg);
            padding: 12px;
            box-shadow: var(--shadow-card);
            transform: rotate(-2deg);
            transition: var(--transition);
            z-index: 2;
            position: relative;
        }

        .agenda-card .cover-wrap img {
            border-radius: var(--radius-md);
            aspect-ratio: 3 / 4;
            object-fit: cover;
            width: 100%;
        }

        .agenda-card::before {
            content: '';
            position: absolute;
            top: 20px;
            right: -10px;
            width: 90%;
            height: 90%;
            background: linear-gradient(135deg, var(--brand-red), var(--accent-gold));
            border-radius: var(--radius-lg);
            z-index: 1;
            transition: var(--transition);
        }

        .agenda-card:hover .cover-wrap {
            transform: rotate(0deg) translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        /* Speakers / Highlights Section */
        .speakers-section {
            background: var(--primary-ink);
            color: #fff;
        }

        .speakers-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
            align-items: stretch;
        }

        .speaker-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 24px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .speaker-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-gold), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .speaker-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
            border-color: rgba(183, 138, 92, 0.5);
        }

        .speaker-card:hover::after {
            opacity: 1;
        }

        .speaker-card.featured {
            display: flex;
            align-items: center;
            gap: 24px;
            grid-row: span 2;
        }

        .speaker-avatar {
            flex-shrink: 0;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent-gold);
        }

        .speaker-info h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .speaker-info .role {
            font-size: 14px;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }

        .speaker-info .bio {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
        }

        .speaker-card.small {
            display: flex;
            flex-direction: column;
        }

        .speaker-card.small .speaker-avatar {
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 3;
            border-radius: var(--radius-md);
            border: none;
            margin-bottom: 16px;
        }

        .speaker-card.small .speaker-info h3 {
            font-size: 18px;
        }

        .speaker-card.small .speaker-info .role {
            font-size: 13px;
            margin-bottom: 8px;
        }

        .speaker-card.small .speaker-info .bio {
            font-size: 14px;
        }

        /* Tickets Section */
        .tickets-section {
            background: var(--linen-bg);
        }

        .ticket-grid {
            display: flex;
            gap: 24px;
            justify-content: center;
            align-items: stretch;
            flex-wrap: wrap;
        }

        .ticket-card {
            background: var(--card-white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            flex: 1 1 280px;
            max-width: 360px;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            position: relative;
        }

        .ticket-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .ticket-card.featured {
            border: 2px solid var(--brand-red);
            transform: scale(1.05);
            z-index: 2;
            box-shadow: 0 12px 40px rgba(139, 30, 30, 0.15);
        }

        .ticket-card.featured:hover {
            transform: scale(1.05) translateY(-4px);
        }

        .ticket-flag {
            position: absolute;
            top: 0;
            right: 24px;
            background: var(--accent-gold);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 0 0 8px 8px;
            letter-spacing: 0.05em;
        }

        .ticket-card .ticket-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-ink);
            margin-bottom: 8px;
        }

        .ticket-card .ticket-price {
            font-family: var(--font-en);
            font-size: 48px;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .ticket-card .ticket-price small {
            font-size: 16px;
            color: var(--muted-text);
            font-weight: 400;
        }

        .ticket-features {
            list-style: none;
            margin: 0 0 32px 0;
            padding: 0;
            flex-grow: 1;
        }

        .ticket-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
            color: var(--body-text);
            margin-bottom: 12px;
            padding-left: 0;
        }

        .ticket-features li i {
            color: var(--accent-gold);
            font-size: 16px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .ticket-features li.disabled {
            color: var(--muted-text);
            text-decoration: line-through;
        }

        .ticket-features li.disabled i {
            color: #C0C0C0;
        }

        .ticket-card .btn {
            width: 100%;
        }

        /* CTA Register Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-ink) 0%, var(--secondary-dark) 100%);
            position: relative;
            overflow: hidden;
            color: #fff;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(139, 30, 30, 0.4) 0%, transparent 70%);
            transform: translateY(-50%);
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 48px;
            align-items: center;
            justify-content: space-between;
        }

        .cta-content {
            flex: 1;
        }

        .cta-content h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .cta-content p {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 32px;
            max-width: 440px;
        }

        .cta-form-card {
            flex: 0 0 440px;
            background: var(--card-white);
            border-radius: var(--radius-lg);
            padding: 32px;
            color: var(--body-text);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
            margin-bottom: -60px;
        }

        .cta-form-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-ink);
            margin-bottom: 4px;
        }

        .cta-form-card .form-sub {
            font-size: 14px;
            color: var(--muted-text);
            margin-bottom: 20px;
        }

        .cta-form-card .form-group {
            margin-bottom: 16px;
        }

        .cta-form-card label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-ink);
            margin-bottom: 6px;
        }

        .cta-form-card input {
            width: 100%;
            height: 44px;
            padding: 0 14px;
            border: 1px solid rgba(28, 29, 33, 0.15);
            border-radius: var(--radius-md);
            background: var(--linen-bg);
            transition: var(--transition);
        }

        .cta-form-card input::placeholder {
            color: #9A9EA7;
        }

        .cta-form-card input:focus {
            border-color: var(--brand-red);
            box-shadow: 0 0 0 2px rgba(139, 30, 30, 0.15);
            background: #fff;
        }

        .cta-form-card .btn {
            width: 100%;
            margin-top: 8px;
        }

        /* Latest News CMS Section */
        .news-section {
            background: var(--linen-bg);
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .news-card {
            background: var(--card-white);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            box-shadow: var(--shadow-card);
            border-left: 3px solid transparent;
            transition: var(--transition);
        }

        .news-card:hover {
            background: #FAF6F0;
            border-left-color: var(--brand-red);
            transform: translateX(4px);
            box-shadow: var(--shadow-hover);
        }

        .news-thumb {
            flex-shrink: 0;
            width: 160px;
            height: 100px;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: #F0EDE6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted-text);
            font-size: 24px;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-content {
            flex: 1;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .badge {
            display: inline-block;
            background: rgba(183, 138, 92, 0.15);
            color: var(--accent-gold);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 999px;
            line-height: 1.4;
        }

        .news-time {
            font-size: 13px;
            color: var(--muted-text);
        }

        .news-content h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-ink);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .news-content p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted-text);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .empty-state {
            background: var(--card-white);
            border-radius: var(--radius-lg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 48px 24px;
            min-height: 200px;
            box-shadow: var(--shadow-card);
            color: var(--muted-text);
        }

        .empty-state i {
            font-size: 48px;
            color: #D5CFC6;
            margin-bottom: 16px;
        }

        .empty-state p {
            font-size: 16px;
            font-weight: 500;
        }

        /* FAQ Section */
        .faq-section {
            background: #fff;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            background: var(--linen-bg);
            margin-bottom: 12px;
            overflow: hidden;
        }

        .faq-item summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-ink);
            list-style: none;
            transition: var(--transition);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '\f067';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--accent-gold);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-item[open] summary {
            color: var(--brand-red);
        }

        .faq-item .faq-answer {
            padding: 0 24px 20px 24px;
            border-left: 3px solid var(--accent-gold);
            margin-left: 24px;
            font-size: 15px;
            line-height: 1.7;
            color: var(--body-text);
        }

        /* Footer */
        .site-footer {
            background: #18191D;
            color: rgba(255, 255, 255, 0.7);
            padding-top: 60px;
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .site-footer .footer-brand .logo-text strong {
            color: #fff;
        }

        .site-footer .footer-brand .logo-text span {
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-brand-desc {
            margin-top: 16px;
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-col .contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .footer-col .contact-list li i {
            color: var(--accent-gold);
            margin-top: 4px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .footer-social a:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .footer-copyright {
            padding: 24px 0;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-copyright a {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-copyright a:hover {
            color: var(--accent-gold);
        }

        /* Pulse Animation */
        @keyframes pulse-glow {
            0% {
                box-shadow: 0 0 20px rgba(139, 30, 30, 0.4);
            }
            50% {
                box-shadow: 0 0 30px rgba(139, 30, 30, 0.8);
            }
            100% {
                box-shadow: 0 0 20px rgba(139, 30, 30, 0.4);
            }
        }

        .pulse-btn {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        /* Responsive */
        @media screen and (max-width: 1024px) {
            .hero-info-cards {
                display: none;
            }

            .agenda-grid {
                flex-direction: column;
                gap: 40px;
            }

            .agenda-card {
                width: 100%;
                flex: none;
                max-width: 400px;
                align-self: center;
            }

            .speakers-grid {
                grid-template-columns: 1fr 1fr;
            }

            .speaker-card.featured {
                grid-row: span 1;
                grid-column: 1 / -1;
            }

            .cta-section .container {
                flex-direction: column;
            }

            .cta-form-card {
                flex: 1 1 auto;
                width: 100%;
                max-width: 540px;
                margin-bottom: 0;
            }
        }

        @media screen and (max-width: 768px) {
            .utility-bar .tip {
                display: none;
            }

            .site-header {
                height: 64px;
            }

            .main-nav {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 24px;
                box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
                border-radius: 0 0 16px 16px;
                gap: 4px;
                max-height: calc(100vh - 64px);
                overflow-y: auto;
            }

            .main-nav.open {
                display: flex;
            }

            .main-nav a {
                padding: 14px 16px;
                border-radius: var(--radius-md);
            }

            .main-nav a::after {
                display: none;
            }

            .main-nav a:hover,
            .main-nav a.active {
                background: var(--linen-bg);
            }

            .hamburger {
                display: block;
            }

            .header-cta {
                display: none;
            }

            .hero {
                min-height: 70vh;
            }

            .hero-content {
                padding: 40px 0;
            }

            .hero-actions .btn {
                min-height: 44px;
                padding: 14px 24px;
                font-size: 15px;
            }

            .section-title-block {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .ticket-grid {
                flex-direction: column;
                align-items: center;
            }

            .ticket-card.featured {
                transform: none;
            }

            .ticket-card.featured:hover {
                transform: translateY(-4px);
            }

            .news-card {
                flex-direction: column;
                padding: 16px;
            }

            .news-thumb {
                width: 100%;
                height: auto;
                aspect-ratio: 16 / 9;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media screen and (max-width: 520px) {
            .utility-bar .domain {
                font-size: 12px;
            }

            .site-logo .logo-text strong {
                font-size: 18px;
            }

            .hero-sub {
                font-size: 16px;
            }

            .speakers-grid {
                grid-template-columns: 1fr;
            }

            .speaker-card.featured {
                flex-direction: column;
                text-align: center;
            }

            .speaker-avatar {
                margin: 0 auto;
            }

            .cta-form-card {
                padding: 24px;
            }

            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-social a {
                width: 36px;
                height: 36px;
            }

            .hero h1 {
                font-size: 32px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #1C1D21;
            --primary-dark: #18191D;
            --secondary: #27292F;
            --brand: #8B1E1E;
            --brand-hover: #A02A2A;
            --gold: #B78A5C;
            --bg: #F5F1EA;
            --card: #FFFFFF;
            --text: #2C2E33;
            --muted: #6B6E76;
            --border: rgba(28, 29, 33, 0.08);
            --radius: 16px;
            --shadow: 0 4px 20px rgba(28, 29, 33, 0.06);
            --shadow-lg: 0 12px 32px rgba(28, 29, 33, 0.12);
            --transition: all .3s cubic-bezier(.25, .46, .45, .94);
            --font-cn: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-cn);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
            line-height: 1.2;
            font-family: var(--font-cn);
        }
        .btn-red {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 0 20px rgba(139, 30, 30, .35);
            padding: 10px 24px;
            font-size: 15px;
        }
        .btn-red:hover {
            background: var(--brand-hover);
            box-shadow: 0 0 30px rgba(139, 30, 30, .5);
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-red:active {
            transform: translateY(0);
            box-shadow: 0 0 14px rgba(139, 30, 30, .4);
        }
        .btn-red:focus-visible {
            outline: 3px solid rgba(139, 30, 30, .4);
            outline-offset: 2px;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(245, 241, 234, .85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            height: 72px;
            gap: 28px;
        }
        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-mark {
            width: 36px;
            height: 36px;
            background: var(--brand);
            color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(139, 30, 30, .3);
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .logo-text strong {
            font-size: 17px;
            color: var(--primary);
            letter-spacing: .02em;
            font-weight: 700;
        }
        .logo-text span {
            font-size: 12px;
            color: var(--muted);
            margin-top: 2px;
        }
        .main-nav {
            display: flex;
            gap: 28px;
            margin-left: auto;
        }
        .main-nav a {
            font-size: 15px;
            color: var(--text);
            position: relative;
            padding: 6px 2px;
            font-weight: 500;
            white-space: nowrap;
        }
        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: var(--brand);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            transform: scaleX(1);
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--brand);
        }
        .header-cta {
            margin-left: 8px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 22px;
            color: var(--primary);
            cursor: pointer;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: var(--transition);
        }
        .hamburger:hover {
            background: rgba(28, 29, 33, .06);
        }
        .hamburger:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 2px;
        }
        .page-hero {
            position: relative;
            background: linear-gradient(105deg, rgba(28, 29, 33, .92) 0%, rgba(28, 29, 33, .72) 50%, rgba(139, 30, 30, .45) 100%), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            padding: 68px 0 64px;
            color: #fff;
        }
        .page-hero .breadcrumb {
            font-size: 13px;
            opacity: .75;
            margin-bottom: 14px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .page-hero .breadcrumb a {
            opacity: .8;
        }
        .page-hero .breadcrumb a:hover {
            color: var(--gold);
            opacity: 1;
        }
        .page-hero .breadcrumb .current {
            color: var(--gold);
            opacity: 1;
        }
        .page-hero h1 {
            font-size: 38px;
            font-weight: 700;
            letter-spacing: .02em;
            margin-bottom: 14px;
            line-height: 1.3;
        }
        .page-hero .hero-desc {
            font-size: 15px;
            max-width: 640px;
            opacity: .85;
            line-height: 1.8;
        }
        .category-main {
            padding: 56px 0 72px;
        }
        .category-main .row {
            max-width: 100%;
        }
        .main-content h2 {
            font-size: 26px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-left: 14px;
            line-height: 1.4;
        }
        .main-content h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 4px;
            background: var(--brand);
            border-radius: 2px;
        }
        .feature-row {
            display: flex;
            gap: 32px;
            align-items: center;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }
        .feature-row.reverse {
            flex-direction: row-reverse;
        }
        .feature-media {
            flex: 1 1 340px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
            background: #e8e2d8;
        }
        .feature-media img {
            width: 100%;
            height: 270px;
            object-fit: cover;
            transition: transform .6s ease;
        }
        .feature-media:hover img {
            transform: scale(1.03);
        }
        .feature-content {
            flex: 1 1 320px;
        }
        .feature-content h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--primary);
            line-height: 1.4;
        }
        .feature-content p {
            color: #555;
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 12px;
        }
        .feature-content .link-arrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--brand);
            font-size: 14px;
            font-weight: 600;
        }
        .link-arrow i {
            transition: transform .3s ease;
        }
        .link-arrow:hover i {
            transform: translateX(4px);
        }
        .points-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin: 36px 0 48px;
        }
        .point-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 26px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--gold);
            transition: var(--transition);
        }
        .point-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .point-card .icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(183, 138, 92, .12);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 16px;
        }
        .point-card h3 {
            font-size: 17px;
            margin-bottom: 8px;
            color: var(--primary);
            font-weight: 600;
        }
        .point-card p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
        }
        .banner-block {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            margin: 40px 0 48px;
            box-shadow: var(--shadow-lg);
        }
        .banner-block img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .banner-block .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(28, 29, 33, .82), rgba(28, 29, 33, .3) 60%, transparent);
            display: flex;
            align-items: center;
            padding: 40px;
        }
        .banner-text {
            color: #fff;
            max-width: 380px;
        }
        .banner-text h3 {
            font-size: 22px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .banner-text p {
            font-size: 14px;
            opacity: .85;
            line-height: 1.7;
        }
        .value-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 24px;
        }
        .value-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(28, 29, 33, .05);
            transition: var(--transition);
            text-align: center;
        }
        .value-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(183, 138, 92, .35);
        }
        .value-card .icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(139, 30, 30, .08);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin: 0 auto 16px;
            transition: background .3s, color .3s;
        }
        .value-card:hover .icon {
            background: var(--brand);
            color: #fff;
        }
        .value-card h3 {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--primary);
            font-weight: 600;
        }
        .value-card p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
        }
        .sidebar .widget {
            background: var(--card);
            border-radius: var(--radius);
            padding: 26px;
            box-shadow: var(--shadow);
            margin-bottom: 28px;
            border: 1px solid rgba(28, 29, 33, .04);
        }
        .widget-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 18px;
            position: relative;
            padding-left: 12px;
            line-height: 1.4;
        }
        .widget-title::before {
            content: "";
            position: absolute;
            left: 0;
            top: 3px;
            bottom: 3px;
            width: 3px;
            background: var(--gold);
            border-radius: 2px;
        }
        .side-list {
            list-style: none;
        }
        .side-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(28, 29, 33, .06);
            transition: var(--transition);
        }
        .side-list li:last-child {
            border-bottom: none;
        }
        .side-list a {
            font-size: 14px;
            color: var(--text);
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: baseline;
            line-height: 1.5;
        }
        .side-list a:hover {
            color: var(--brand);
        }
        .side-list .date {
            font-size: 12px;
            color: var(--muted);
            flex-shrink: 0;
            white-space: nowrap;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(183, 138, 92, .1);
            border: 1px solid rgba(183, 138, 92, .25);
            border-radius: 999px;
            font-size: 13px;
            color: #7a5c3a;
            transition: var(--transition);
            cursor: pointer;
        }
        .tag:hover {
            background: var(--gold);
            color: #fff;
            border-color: var(--gold);
            transform: translateY(-1px);
        }
        .tag:active {
            transform: translateY(0);
        }
        .banner-widget {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: var(--radius);
            padding: 28px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 28px;
        }
        .banner-widget::after {
            content: "";
            position: absolute;
            top: -30px;
            right: -30px;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: rgba(183, 138, 92, .2);
        }
        .banner-widget::before {
            content: "";
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(139, 30, 30, .25);
        }
        .banner-widget h3 {
            font-size: 19px;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }
        .banner-widget p {
            font-size: 13px;
            opacity: .8;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }
        .btn-gold {
            background: var(--gold);
            color: #fff;
            padding: 9px 22px;
            font-size: 14px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-cn);
            display: inline-block;
        }
        .btn-gold:hover {
            background: #c99b6e;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
            color: #fff;
        }
        .btn-gold:active {
            transform: translateY(0);
        }
        .btn-gold:focus-visible {
            outline: 3px solid rgba(183, 138, 92, .5);
            outline-offset: 2px;
        }
        .inline-cta {
            background: var(--bg);
            padding: 50px 0 60px;
            border-top: 1px solid var(--border);
        }
        .cta-box {
            background: linear-gradient(135deg, var(--brand), #A02A2A);
            border-radius: 20px;
            padding: 48px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(139, 30, 30, .3);
        }
        .cta-box::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(183, 138, 92, .3);
        }
        .cta-box::after {
            content: "";
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
        }
        .cta-box h2 {
            font-size: 28px;
            margin-bottom: 10px;
            font-weight: 600;
            position: relative;
            z-index: 1;
            line-height: 1.3;
        }
        .cta-box p {
            font-size: 14px;
            opacity: .85;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        .btn-white {
            background: #fff;
            color: var(--brand);
            padding: 12px 32px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-cn);
            display: inline-block;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
        }
        .btn-white:hover {
            background: var(--gold);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
        }
        .btn-white:active {
            transform: translateY(0);
        }
        .btn-white:focus-visible {
            outline: 3px solid rgba(255, 255, 255, .5);
            outline-offset: 2px;
        }
        .site-footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, .7);
            padding: 60px 0 0;
            font-size: 14px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 48px;
        }
        .footer-grid .site-logo .logo-text strong {
            color: #fff;
        }
        .footer-grid .site-logo .logo-text span {
            color: rgba(255, 255, 255, .5);
        }
        .footer-grid .logo-mark {
            background: var(--brand);
        }
        .footer-brand-desc {
            color: rgba(255, 255, 255, .55);
            line-height: 1.8;
            margin-top: 14px;
            font-size: 14px;
            max-width: 280px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 18px;
            font-weight: 600;
            position: relative;
            padding-left: 10px;
        }
        .footer-col h4::before {
            content: "";
            position: absolute;
            left: 0;
            top: 5px;
            bottom: 5px;
            width: 3px;
            background: var(--gold);
            border-radius: 2px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 10px;
        }
        .footer-col a {
            color: rgba(255, 255, 255, .6);
            transition: var(--transition);
            display: inline-block;
        }
        .footer-col a:hover {
            color: #fff;
            padding-left: 2px;
        }
        .contact-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, .6);
            margin-bottom: 10px;
        }
        .contact-list i {
            color: var(--gold);
            width: 16px;
            text-align: center;
        }
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }
        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .7);
            transition: var(--transition);
            font-size: 16px;
        }
        .footer-social a:hover {
            background: var(--gold);
            color: #fff;
            transform: translateY(-3px);
        }
        .footer-social a:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        .footer-copyright {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding: 20px 0;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, .5);
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .main-nav {
                gap: 18px;
            }
            .site-header .container {
                gap: 16px;
            }
            .value-cards {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .site-header .container {
                height: 64px;
                flex-wrap: nowrap;
            }
            .main-nav {
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 0 24px;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height .35s ease, padding .3s ease;
                box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
                border-top: 1px solid var(--border);
                margin-left: 0;
                width: 100%;
            }
            .main-nav.open {
                max-height: 400px;
                padding: 12px 24px 16px;
            }
            .main-nav a {
                padding: 13px 0;
                border-bottom: 1px solid rgba(28, 29, 33, .06);
                font-size: 16px;
                display: block;
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .main-nav a::after {
                display: none;
            }
            .hamburger {
                display: flex;
                margin-left: auto;
            }
            .header-cta {
                display: none;
            }
            .page-hero {
                padding: 48px 0;
            }
            .page-hero h1 {
                font-size: 30px;
            }
            .category-main {
                padding: 40px 0 56px;
            }
            .feature-row,
            .feature-row.reverse {
                flex-direction: column;
            }
            .feature-media img {
                height: 220px;
            }
            .points-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .value-cards {
                grid-template-columns: 1fr;
            }
            .banner-block img {
                height: 240px;
            }
            .banner-block .banner-overlay {
                padding: 24px;
            }
            .banner-text h3 {
                font-size: 18px;
            }
            .sidebar {
                margin-top: 32px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .cta-box {
                padding: 36px 24px;
            }
            .cta-box h2 {
                font-size: 24px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .site-header .container {
                padding: 0 16px;
                gap: 12px;
            }
            .logo-text strong {
                font-size: 15px;
            }
            .logo-text span {
                font-size: 11px;
            }
            .page-hero h1 {
                font-size: 25px;
            }
            .page-hero .hero-desc {
                font-size: 14px;
            }
            .main-content h2 {
                font-size: 22px;
            }
            .point-card {
                padding: 20px;
            }
            .banner-block img {
                height: 200px;
            }
            .banner-block .banner-overlay {
                padding: 18px;
                background: linear-gradient(90deg, rgba(28, 29, 33, .85), rgba(28, 29, 33, .5));
            }
            .banner-text h3 {
                font-size: 16px;
            }
            .banner-text p {
                font-size: 13px;
            }
            .cta-box {
                padding: 30px 18px;
            }
            .cta-box h2 {
                font-size: 20px;
            }
            .btn-white {
                padding: 10px 22px;
                font-size: 14px;
            }
        }

/* roulang page: article */
:root {
            --primary: #1C1D21;
            --primary-soft: #27292F;
            --accent: #8B1E1E;
            --accent-hover: #A02A2A;
            --gold: #B78A5C;
            --gold-light: rgba(183, 138, 92, 0.15);
            --gold-glow: rgba(183, 138, 92, 0.45);
            --bg-cream: #F5F1EA;
            --bg-white: #FFFFFF;
            --text-main: #2C2E33;
            --text-muted: #6B6E76;
            --border-soft: rgba(28, 29, 33, 0.08);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-card: 0 4px 20px rgba(28, 29, 33, 0.06);
            --shadow-hover: 0 12px 32px rgba(28, 29, 33, 0.12);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            background: var(--bg-cream);
            color: var(--text-main);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        ul,
        ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* ===== Utility Bar ===== */
        .util-bar {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            height: 36px;
            display: flex;
            align-items: center;
        }
        .util-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .util-domain {
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .util-tip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.75);
        }
        .util-tip::before {
            content: "";
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--gold);
        }
        .util-login {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
        }
        .util-login:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }

        /* ===== Header & Nav ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(245, 241, 234, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-soft);
        }
        .site-header .container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }
        .site-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--accent), #4a1015);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 17px;
            box-shadow: 0 4px 12px rgba(139, 30, 30, 0.3);
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .logo-text strong {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.02em;
        }
        .logo-text span {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.05em;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            padding: 8px 16px;
            border-radius: 6px;
            position: relative;
            background: linear-gradient(to right, var(--accent), var(--accent));
            background-repeat: no-repeat;
            background-size: 0 2px;
            background-position: left 85%;
            transition: var(--transition);
        }
        .main-nav a:hover {
            color: var(--accent);
            background-size: 100% 2px;
        }
        .main-nav a.active {
            color: var(--accent);
            font-weight: 600;
            background-size: 100% 2px;
        }
        .header-cta {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            font-size: 15px;
            text-align: center;
        }
        .btn-red {
            background: var(--accent);
            color: #fff;
            padding: 0 24px;
            height: 40px;
            box-shadow: 0 0 20px rgba(139, 30, 30, 0.4);
        }
        .btn-red:hover {
            background: var(--accent-hover);
            box-shadow: 0 0 30px rgba(139, 30, 30, 0.55);
            transform: translateY(-1px);
        }
        .btn-red:active {
            transform: translateY(0);
            box-shadow: 0 2px 12px rgba(139, 30, 30, 0.3);
        }
        .btn-gold {
            background: var(--gold);
            color: #1C1D21;
            padding: 0 32px;
            height: 46px;
            font-size: 16px;
            box-shadow: 0 4px 20px rgba(183, 138, 92, 0.35);
        }
        .btn-gold:hover {
            background: #c89a6f;
            box-shadow: 0 6px 28px rgba(183, 138, 92, 0.5);
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--accent);
            color: var(--accent);
            padding: 0 24px;
            height: 42px;
        }
        .btn-outline:hover {
            background: rgba(139, 30, 30, 0.08);
            border-color: var(--accent-hover);
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 22px;
            color: var(--primary);
            cursor: pointer;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: rgba(28, 29, 33, 0.05);
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb-bar {
            padding: 20px 0 0;
            font-size: 14px;
            color: var(--text-muted);
        }
        .breadcrumb-bar .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb-bar a {
            color: var(--text-muted);
        }
        .breadcrumb-bar a:hover {
            color: var(--accent);
        }
        .breadcrumb-bar .sep {
            color: rgba(28, 29, 33, 0.25);
        }
        .breadcrumb-bar .current {
            color: var(--accent);
            font-weight: 500;
            max-width: 340px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* ===== Article Page ===== */
        .article-page {
            padding: 32px 0 clamp(40px, 6vw, 80px);
        }
        .article-shell {
            max-width: 960px;
            margin: 0 auto;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            padding: clamp(28px, 4vw, 56px);
            margin-bottom: clamp(40px, 5vw, 64px);
        }
        .article-header {
            text-align: center;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border-soft);
            margin-bottom: 32px;
        }
        .article-category {
            display: inline-block;
            background: var(--gold-light);
            color: var(--gold);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 999px;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }
        .article-title {
            font-size: clamp(28px, 3.5vw, 38px);
            font-weight: 700;
            line-height: 1.3;
            color: var(--primary);
            margin: 0 0 20px;
            letter-spacing: 0.01em;
        }
        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .article-meta .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .article-meta .meta-item i {
            color: var(--gold);
        }
        .meta-dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(28, 29, 33, 0.3);
        }

        /* ===== Article Content ===== */
        .article-content {
            font-size: 17px;
            line-height: 1.9;
            color: var(--text-main);
        }
        .article-content h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            padding-left: 14px;
            border-left: 4px solid var(--accent);
            margin: 40px 0 16px;
            letter-spacing: 0.02em;
        }
        .article-content h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
            margin: 32px 0 12px;
        }
        .article-content p {
            margin: 0 0 22px;
        }
        .article-content strong {
            color: var(--accent);
            font-weight: 600;
        }
        .article-content blockquote {
            border-left: 3px solid var(--gold);
            background: rgba(183, 138, 92, 0.07);
            padding: 18px 22px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            font-style: italic;
            color: var(--text-muted);
            margin: 28px 0;
        }
        .article-content blockquote p:last-child {
            margin-bottom: 0;
        }
        .article-content ul,
        .article-content ol {
            margin: 16px 0 22px;
            padding-left: 24px;
        }
        .article-content ul {
            list-style: none;
            padding-left: 0;
        }
        .article-content ul li {
            position: relative;
            padding-left: 22px;
            margin: 8px 0;
        }
        .article-content ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 12px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
        }
        .article-content ol {
            list-style: decimal;
        }
        .article-content ol li {
            margin: 8px 0;
            padding-left: 4px;
        }
        .article-content a {
            color: var(--accent);
            border-bottom: 1px solid rgba(139, 30, 30, 0.3);
        }
        .article-content a:hover {
            border-bottom-color: var(--accent);
        }
        .article-content img {
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            margin: 28px auto;
            max-width: 100%;
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 15px;
        }
        .article-content th,
        .article-content td {
            border: 1px solid var(--border-soft);
            padding: 12px 14px;
            text-align: left;
        }
        .article-content th {
            background: var(--bg-cream);
            font-weight: 600;
            color: var(--primary);
        }
        .article-content tr:nth-child(even) td {
            background: rgba(245, 241, 234, 0.3);
        }
        .article-content code {
            background: var(--bg-cream);
            border-radius: 4px;
            padding: 2px 6px;
            font-size: 0.9em;
            color: var(--accent);
            font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
        }
        .article-content pre {
            background: var(--primary);
            color: #e8e6e3;
            border-radius: var(--radius-md);
            padding: 20px 24px;
            overflow-x: auto;
            font-size: 14px;
            line-height: 1.7;
            margin: 24px 0;
        }
        .article-content pre code {
            background: transparent;
            color: inherit;
            padding: 0;
            font-size: inherit;
        }

        /* ===== Article Not Found ===== */
        .article-not-found {
            text-align: center;
            padding: 60px 24px;
        }
        .article-not-found .not-found-icon {
            font-size: 56px;
            color: var(--gold);
            display: block;
            margin-bottom: 20px;
        }
        .article-not-found h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 12px;
        }
        .article-not-found p {
            color: var(--text-muted);
            margin: 0 0 24px;
            font-size: 15px;
        }

        /* ===== Article Footer ===== */
        .article-footer-tags {
            max-width: 760px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 1px solid var(--border-soft);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .article-tags {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .article-tags .tag {
            display: inline-block;
            background: var(--bg-cream);
            border: 1px solid var(--border-soft);
            border-radius: 999px;
            padding: 5px 14px;
            font-size: 13px;
            color: var(--text-muted);
            transition: var(--transition);
        }
        .article-tags .tag:hover {
            background: var(--gold-light);
            border-color: var(--gold);
            color: var(--gold);
        }
        .article-share {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .article-share a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 15px;
            transition: var(--transition);
        }
        .article-share a:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        /* ===== Related Reading ===== */
        .related-section {
            padding: 0 0 clamp(40px, 5vw, 64px);
        }
        .related-wrap {
            max-width: 960px;
            margin: 0 auto;
        }
        .related-title {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .related-title::after {
            content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, var(--gold), transparent);
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 32px;
        }
        .related-card {
            display: flex;
            align-items: stretch;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .related-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: rgba(183, 138, 92, 0.3);
        }
        .related-card img {
            width: 140px;
            min-height: 120px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .related-card-body {
            padding: 16px 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 8px;
        }
        .related-card-body h3 {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.5;
            color: var(--primary);
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .related-card-body h3:hover {
            color: var(--accent);
        }
        .related-date {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .related-date i {
            color: var(--gold);
        }
        .back-bar {
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }
        .back-bar .btn-outline {
            gap: 8px;
        }

        /* ===== CTA Section ===== */
        .cta-section {
            background: linear-gradient(105deg, var(--primary) 0%, var(--primary-soft) 60%, rgba(139, 30, 30, 0.6) 100%);
            padding: clamp(48px, 6vw, 72px) 0;
            text-align: center;
        }
        .cta-section h2 {
            font-size: clamp(26px, 3vw, 34px);
            font-weight: 700;
            color: #fff;
            margin: 0 0 12px;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 16px;
            max-width: 560px;
            margin: 0 auto 28px;
        }
        .cta-section .btn-gold {
            animation: pulse-gold 2s ease-in-out infinite;
        }
        @keyframes pulse-gold {
            0%,
            100% {
                box-shadow: 0 4px 20px rgba(183, 138, 92, 0.35);
            }
            50% {
                box-shadow: 0 4px 32px rgba(183, 138, 92, 0.6);
            }
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #18191D;
            color: rgba(255, 255, 255, 0.7);
            padding: 64px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-brand .site-logo {
            margin-bottom: 12px;
        }
        .footer-brand .logo-text strong {
            color: #fff;
        }
        .footer-brand .logo-text span {
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-brand .logo-mark {
            background: linear-gradient(135deg, var(--accent), #4a1015);
        }
        .footer-brand-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.8;
            margin: 12px 0 0;
            max-width: 280px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 18px;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            transition: var(--transition);
        }
        .footer-col ul li a:hover {
            color: #fff;
            padding-left: 4px;
        }
        .contact-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        .contact-list li i {
            color: var(--gold);
            width: 16px;
        }
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }
        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            transition: var(--transition);
        }
        .footer-social a:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            transform: translateY(-3px);
        }
        .footer-copyright {
            text-align: center;
            padding: 24px 0;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-copyright p {
            margin: 0;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .site-header .container {
                height: 64px;
            }
            .util-tip {
                display: none;
            }
            .main-nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg-white);
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 8px 16px 16px;
                box-shadow: 0 16px 32px rgba(28, 29, 33, 0.12);
                border-radius: 0 0 16px 16px;
                display: none;
                overflow: hidden;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 14px 16px;
                border-radius: 8px;
                background: transparent;
            }
            .main-nav a:hover {
                background: var(--bg-cream);
            }
            .hamburger {
                display: flex;
            }
            .header-cta .btn-red {
                padding: 0 16px;
                font-size: 14px;
            }
            .article-shell {
                padding: 24px 20px;
                border-radius: 12px;
            }
            .article-title {
                font-size: 26px;
            }
            .article-meta {
                gap: 12px;
                flex-wrap: wrap;
            }
            .related-card img {
                width: 110px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .util-bar .container {
                padding: 0 16px;
            }
            .logo-text strong {
                font-size: 16px;
            }
            .logo-text span {
                font-size: 11px;
            }
            .header-cta .btn-red {
                display: none;
            }
            .breadcrumb-bar .current {
                max-width: 200px;
            }
            .article-meta .meta-item {
                font-size: 13px;
            }
            .article-content {
                font-size: 16px;
                line-height: 1.85;
            }
            .article-tags-share {
                flex-direction: column;
                align-items: flex-start;
            }
            .related-card {
                flex-direction: column;
            }
            .related-card img {
                width: 100%;
                height: 140px;
                min-height: auto;
            }
            .cta-section p {
                font-size: 14px;
            }
        }
        @media (max-width: 390px) {
            .util-domain {
                font-size: 12px;
            }
            .util-login {
                font-size: 12px;
            }
            .logo-mark {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            .logo-text strong {
                font-size: 15px;
            }
            .logo-text span {
                font-size: 10px;
            }
        }

        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

/* roulang page: category2 */
:root {
            --ink: #1C1D21;
            --ink-soft: #27292F;
            --wine: #8B1E1E;
            --wine-light: #A02A2A;
            --gold: #B78A5C;
            --linen: #F5F1EA;
            --white: #FFFFFF;
            --text: #2C2E33;
            --text-weak: #6B6E76;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 4px 20px rgba(28, 29, 33, 0.06);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.18);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font-stack: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --font-num: "Archivo", "DIN Alternate", "Segoe UI", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            background: var(--linen);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        ul,
        ol {
            list-style: none;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ---- Utility Bar ---- */
        .utility-bar {
            background: var(--ink);
            height: 36px;
            display: flex;
            align-items: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
        }

        .utility-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .utility-domain {
            font-family: var(--font-num);
            letter-spacing: 0.04em;
            color: var(--gold);
            font-weight: 600;
        }

        .utility-tip {
            position: relative;
            padding-left: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .utility-tip::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--gold);
        }

        .utility-login {
            color: rgba(255, 255, 255, 0.85);
            font-size: 13px;
            padding: 4px 10px;
            transition: var(--transition);
        }

        .utility-login:hover {
            color: var(--gold);
        }

        /* ---- Header / Nav ---- */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(28, 29, 33, 0.08);
            height: 72px;
            display: flex;
            align-items: center;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .site-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--wine) 0%, #5A1212 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(139, 30, 30, 0.3);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-text strong {
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: 0.02em;
        }

        .logo-text span {
            font-size: 11px;
            color: var(--text-weak);
            letter-spacing: 0.06em;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .main-nav a {
            position: relative;
            padding: 8px 18px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            border-radius: 8px;
            transition: var(--transition);
            line-height: 1.4;
        }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 2px;
            height: 2px;
            background: var(--wine);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .main-nav a:hover::after,
        .main-nav a.active::after {
            transform: scaleX(1);
        }

        .main-nav a:hover {
            color: var(--wine);
        }

        .main-nav a.active {
            color: var(--wine);
            font-weight: 600;
        }

        .header-cta {
            margin-left: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 44px;
            padding: 0 24px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            text-align: center;
            white-space: nowrap;
        }

        .btn:focus-visible {
            outline: 3px solid rgba(139, 30, 30, 0.3);
            outline-offset: 2px;
        }

        .btn-red {
            background: var(--wine);
            color: #fff;
            box-shadow: 0 0 20px rgba(139, 30, 30, 0.35);
        }

        .btn-red:hover {
            background: var(--wine-light);
            box-shadow: 0 0 30px rgba(139, 30, 30, 0.5);
            transform: translateY(-2px);
        }

        .btn-red:active {
            transform: translateY(0);
            box-shadow: 0 0 12px rgba(139, 30, 30, 0.3);
        }

        .btn-gold {
            background: var(--gold);
            color: #fff;
            box-shadow: 0 6px 20px rgba(183, 138, 92, 0.35);
        }

        .btn-gold:hover {
            background: #C99B6E;
            box-shadow: 0 8px 28px rgba(183, 138, 92, 0.45);
            transform: translateY(-2px);
        }

        .btn-gold:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(183, 138, 92, 0.3);
        }

        .btn-outline-gold {
            background: transparent;
            border-color: var(--gold);
            color: var(--gold);
        }

        .btn-outline-gold:hover {
            background: rgba(183, 138, 92, 0.1);
            color: var(--gold);
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            background: transparent;
            font-size: 24px;
            color: var(--ink);
            width: 44px;
            height: 44px;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            align-items: center;
            justify-content: center;
        }

        .hamburger:hover {
            background: rgba(28, 29, 33, 0.06);
        }

        .hamburger:focus-visible {
            outline: 3px solid rgba(139, 30, 30, 0.3);
        }

        /* ---- Category Hero Banner ---- */
        .cat-hero {
            position: relative;
            min-height: 300px;
            display: flex;
            align-items: center;
            background: linear-gradient(105deg, rgba(28, 29, 33, 0.92) 0%, rgba(28, 29, 33, 0.68) 50%, rgba(139, 30, 30, 0.4) 100%), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            padding: 72px 0 60px;
            color: #fff;
        }

        .cat-hero .container {
            position: relative;
            z-index: 2;
        }

        .cat-hero .cat-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 999px;
            font-size: 13px;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 18px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
        }

        .cat-hero .cat-badge::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 8px var(--gold);
        }

        .cat-hero h1 {
            font-size: 44px;
            line-height: 1.2;
            font-weight: 700;
            letter-spacing: 0.02em;
            margin-bottom: 12px;
        }

        .cat-hero h1 .hl {
            color: var(--gold);
        }

        .cat-hero .cat-desc {
            font-size: 16px;
            line-height: 1.8;
            max-width: 680px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0;
        }

        /* ---- Breadcrumb ---- */
        .breadcrumb-wrap {
            padding: 16px 0;
            font-size: 14px;
            color: var(--text-weak);
        }

        .breadcrumb-wrap a {
            color: var(--text-weak);
        }

        .breadcrumb-wrap a:hover {
            color: var(--wine);
        }

        .breadcrumb-wrap .sep {
            margin: 0 8px;
            color: #C0C0C0;
        }

        .breadcrumb-wrap .current {
            color: var(--wine);
            font-weight: 500;
        }

        /* ---- Category Main Layout ---- */
        .category-wrap {
            padding: 30px 0 70px;
        }

        .category-wrap .main-content {
            padding-right: 8px;
        }

        .category-wrap .sidebar {
            padding-left: 20px;
        }

        .section-block {
            margin-bottom: 56px;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 28px;
        }

        .section-header .section-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--wine), #5A1212);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 17px;
            box-shadow: 0 4px 14px rgba(139, 30, 30, 0.28);
            flex-shrink: 0;
        }

        .section-header h2 {
            font-size: 26px;
            font-weight: 600;
            color: var(--ink);
            line-height: 1.3;
        }

        .section-header .line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, var(--gold), transparent);
        }

        /* Entry Card */
        .entry-card {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 28px;
            display: flex;
            gap: 28px;
            align-items: center;
            transition: var(--transition);
            border: 1px solid rgba(28, 29, 33, 0.04);
        }

        .entry-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .entry-card .entry-img {
            width: 240px;
            flex-shrink: 0;
            border-radius: 12px;
            overflow: hidden;
            background: #F0EDE6;
            position: relative;
        }

        .entry-card .entry-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 160px;
        }

        .entry-card .entry-body {
            flex: 1;
        }

        .entry-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .entry-card p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-weak);
            margin-bottom: 16px;
        }

        .entry-card .entry-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* Process Timeline */
        .process-timeline {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px 32px;
        }

        .process-step {
            display: flex;
            gap: 18px;
            position: relative;
            padding-bottom: 28px;
        }

        .process-step:last-child {
            padding-bottom: 0;
        }

        .process-step::before {
            content: "";
            position: absolute;
            left: 31px;
            top: 64px;
            bottom: 0;
            width: 1px;
            background: linear-gradient(180deg, rgba(183, 138, 92, 0.6), rgba(183, 138, 92, 0.1));
        }

        .process-step:last-child::before {
            display: none;
        }

        .step-left {
            width: 64px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            z-index: 2;
        }

        .step-dot {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--linen);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: var(--gold);
            font-family: var(--font-num);
            transition: var(--transition);
        }

        .process-step:hover .step-dot {
            background: var(--gold);
            color: #fff;
            transform: scale(1.1);
            box-shadow: 0 0 16px rgba(183, 138, 92, 0.4);
        }

        .step-num {
            font-size: 11px;
            color: var(--text-weak);
            letter-spacing: 0.04em;
            writing-mode: vertical-lr;
        }

        .step-body {
            flex: 1;
            padding-top: 2px;
        }

        .step-body h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 6px;
            transition: var(--transition);
        }

        .process-step:hover .step-body h3 {
            color: var(--gold);
        }

        .step-body p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-weak);
        }

        /* Ticket Cards */
        .ticket-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .ticket-card {
            background: var(--linen);
            border: 1px solid rgba(28, 29, 33, 0.1);
            border-radius: var(--radius);
            padding: 28px 22px;
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .ticket-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .ticket-card.featured {
            background: #fff;
            border: 2px solid var(--wine);
            transform: scale(1.03);
            box-shadow: 0 12px 32px rgba(139, 30, 30, 0.12);
        }

        .ticket-card.featured:hover {
            transform: scale(1.03) translateY(-4px);
        }

        .ticket-card .ticket-badge {
            position: absolute;
            top: -1px;
            right: 18px;
            background: var(--gold);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 0 0 10px 10px;
            letter-spacing: 0.04em;
            box-shadow: 0 4px 12px rgba(183, 138, 92, 0.3);
        }

        .ticket-card .ticket-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 6px;
        }

        .ticket-card .ticket-price {
            font-family: var(--font-num);
            font-size: 36px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1.2;
            margin-bottom: 18px;
        }

        .ticket-card .ticket-price small {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-weak);
        }

        .ticket-card .ticket-list {
            flex: 1;
            margin-bottom: 20px;
        }

        .ticket-card .ticket-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 14px;
            line-height: 1.7;
            padding: 5px 0;
            color: var(--text);
        }

        .ticket-card .ticket-list li.disabled {
            color: #B0B0B0;
        }

        .ticket-card .ticket-list li .icon {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--gold);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .ticket-card .ticket-list li.disabled .icon {
            background: #D0D0D0;
        }

        .btn-block {
            width: 100%;
        }

        /* Notes */
        .guide-notes {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px;
        }

        .notes-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .note-item {
            display: flex;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 12px;
            background: var(--linen);
            border-left: 3px solid var(--wine);
            font-size: 14px;
            line-height: 1.7;
            color: var(--text);
            transition: var(--transition);
        }

        .note-item:hover {
            background: #FDF9F3;
            transform: translateX(4px);
        }

        .note-item .note-icon {
            color: var(--gold);
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* FAQ */
        .faq-list {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 12px 24px;
        }

        .faq-item {
            border-bottom: 1px solid rgba(28, 29, 33, 0.06);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 0;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--wine);
        }

        .faq-question .faq-toggle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            flex-shrink: 0;
            transition: transform 0.4s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            background: var(--gold);
            color: #fff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding-left: 4px;
            border-left: 3px solid var(--gold);
            margin-left: 0;
        }

        .faq-answer p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-weak);
            padding: 0 0 16px 12px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* Sidebar */
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 24px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-card h4 .icon {
            color: var(--gold);
            font-size: 15px;
        }

        .sidebar-card h4::after {
            content: "";
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(183, 138, 92, 0.5), transparent);
        }

        .update-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(28, 29, 33, 0.05);
            display: flex;
            flex-direction: column;
            gap: 4px;
            transition: var(--transition);
        }

        .update-list li:last-child {
            border-bottom: none;
        }

        .update-list li:hover {
            padding-left: 6px;
        }

        .update-list .update-date {
            font-size: 12px;
            color: var(--text-weak);
            font-family: var(--font-num);
            letter-spacing: 0.04em;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .update-list .update-date i {
            color: var(--gold);
            font-size: 10px;
        }

        .update-list .update-title {
            font-size: 14px;
            color: var(--text);
            line-height: 1.5;
            transition: var(--transition);
        }

        .update-list li:hover .update-title {
            color: var(--wine);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-item {
            display: inline-block;
            padding: 5px 14px;
            background: var(--linen);
            border-radius: 999px;
            font-size: 13px;
            color: var(--text);
            border: 1px solid rgba(28, 29, 33, 0.08);
            transition: var(--transition);
        }

        .tag-item:hover {
            background: var(--gold);
            color: #fff;
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        .banner-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            min-height: 200px;
            display: flex;
            align-items: flex-end;
            background: linear-gradient(to top, rgba(28, 29, 33, 0.85), rgba(28, 29, 33, 0.1)), url('/assets/images/coverpic/cover-3.png') center/cover no-repeat;
        }

        .banner-card .banner-body {
            padding: 20px;
            color: #fff;
            width: 100%;
        }

        .banner-card .banner-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .banner-card .banner-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .banner-card .banner-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--gold);
            color: #fff;
            padding: 6px 18px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            transition: var(--transition);
        }

        .banner-card .banner-btn:hover {
            background: #C99B6E;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(183, 138, 92, 0.4);
        }

        /* CTA Strip */
        .cta-strip {
            background: var(--linen);
            border-top: 1px solid rgba(28, 29, 33, 0.06);
            padding: 70px 0;
            text-align: center;
        }

        .cta-strip h2 {
            font-size: 30px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 12px;
        }

        .cta-strip p {
            font-size: 15px;
            color: var(--text-weak);
            max-width: 600px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }

        .cta-strip .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-note {
            margin-top: 14px;
            font-size: 13px;
            color: var(--text-weak);
        }

        /* ---- Footer ---- */
        .site-footer {
            background: #18191D;
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 40px;
        }

        .footer-brand .site-logo {
            margin-bottom: 14px;
        }

        .footer-brand .logo-text strong {
            color: #fff;
        }

        .footer-brand .logo-text span {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-brand-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition);
            display: inline-block;
        }

        .footer-col ul a:hover {
            color: #fff;
            transform: translateX(4px);
        }

        .contact-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
        }

        .contact-list li i {
            color: var(--gold);
            width: 16px;
            text-align: center;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 18px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--gold);
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 18px 0;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ---- Responsive ---- */
        @media (max-width: 1024px) {
            .main-nav a {
                padding: 8px 12px;
                font-size: 14px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media (max-width: 768px) {
            .utility-tip {
                display: none;
            }

            .site-header {
                height: 64px;
            }

            .main-nav {
                position: fixed;
                top: 100px;
                right: 0;
                left: 0;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                align-items: stretch;
                padding: 20px 24px;
                border-bottom: 1px solid rgba(28, 29, 33, 0.08);
                box-shadow: 0 20px 40px rgba(28, 29, 33, 0.12);
                transform: translateY(-20px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.35s ease;
                max-height: calc(100vh - 100px);
                overflow-y: auto;
            }

            .main-nav.open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .main-nav a {
                padding: 14px 12px;
                font-size: 16px;
                border-radius: 8px;
            }

            .main-nav a::after {
                display: none;
            }

            .main-nav a:hover {
                background: var(--linen);
            }

            .main-nav a.active {
                background: rgba(139, 30, 30, 0.08);
            }

            .header-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .cat-hero {
                min-height: 250px;
                padding: 55px 0 45px;
            }

            .cat-hero h1 {
                font-size: 32px;
            }

            .cat-hero .cat-desc {
                font-size: 14px;
            }

            .category-wrap .main-content {
                padding-right: 0;
            }

            .category-wrap .sidebar {
                padding-left: 0;
                margin-top: 30px;
            }

            .entry-card {
                flex-direction: column;
                padding: 22px;
            }

            .entry-card .entry-img {
                width: 100%;
                height: 100%;
            }

            .ticket-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .ticket-card.featured {
                transform: none;
            }

            .ticket-card.featured:hover {
                transform: translateY(-4px);
            }

            .notes-grid {
                grid-template-columns: 1fr;
            }

            .process-timeline {
                padding: 24px 20px;
            }

            .step-body p {
                font-size: 13px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .cat-hero h1 {
                font-size: 28px;
            }

            .section-header h2 {
                font-size: 22px;
            }

            .entry-card {
                padding: 18px;
            }

            .step-left {
                width: 50px;
            }

            .process-step::before {
                left: 25px;
            }

            .faq-list {
                padding: 8px 16px;
            }

            .faq-question {
                font-size: 14px;
                padding: 16px 0;
            }

            .cta-strip h2 {
                font-size: 24px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
