/* roulang page: index */
:root {
            --color-primary: #5b4ce6;
            --color-primary-light: #7b6ff0;
            --color-primary-dark: #3d2eb8;
            --color-accent: #f0b840;
            --color-accent-light: #f5d078;
            --color-accent-dark: #c89220;
            --color-bg: #08081a;
            --color-bg-alt: #0c0c24;
            --color-surface: #111133;
            --color-surface-hover: #181848;
            --color-surface-elevated: #1a1a4a;
            --color-text: #e4e4f2;
            --color-text-heading: #f0f0fa;
            --color-text-muted: #9090b8;
            --color-text-weak: #6a6a90;
            --color-border: #1e1e44;
            --color-border-light: #2a2a56;
            --color-success: #22c58a;
            --color-danger: #e84855;
            --color-info: #4da6ff;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 9999px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 30px rgba(91, 76, 230, 0.25);
            --shadow-glow-accent: 0 0 28px rgba(240, 184, 64, 0.2);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Segoe UI', system-ui, sans-serif;
            --transition-fast: 0.18s ease;
            --transition-normal: 0.28s ease;
            --transition-slow: 0.4s ease;
            --max-width: 1200px;
            --header-height: 140px;
            --nav-row1-height: 56px;
            --nav-row2-height: 48px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.7;
            color: var(--color-text);
            background: var(--color-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

        input {
            font-family: inherit;
            font-size: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.3;
            color: var(--color-text-heading);
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* ===== HEADER & NAV ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(8, 8, 26, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--color-border);
            transition: background var(--transition-normal), border-color var(--transition-normal);
        }

        .nav-row-1 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-row1-height);
            gap: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--color-text-heading);
            letter-spacing: 0.02em;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .nav-brand .brand-icon {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(91, 76, 230, 0.35);
        }

        .nav-brand:hover {
            color: var(--color-accent-light);
        }

        .nav-brand:hover .brand-icon {
            box-shadow: 0 4px 22px rgba(91, 76, 230, 0.55);
        }

        .nav-search-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            max-width: 380px;
        }

        .nav-search {
            display: flex;
            align-items: center;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-full);
            padding: 8px 16px;
            gap: 8px;
            flex: 1;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }

        .nav-search:focus-within {
            border-color: var(--color-primary-light);
            box-shadow: 0 0 0 3px rgba(91, 76, 230, 0.15);
        }

        .nav-search input {
            background: transparent;
            border: none;
            color: var(--color-text);
            font-size: 0.9rem;
            outline: none;
            width: 100%;
            min-width: 0;
        }

        .nav-search input::placeholder {
            color: var(--color-text-weak);
        }

        .nav-search .search-icon {
            color: var(--color-text-muted);
            flex-shrink: 0;
            font-size: 0.95rem;
        }

        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 20px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
            color: #1a1a0a;
            transition: all var(--transition-fast);
            box-shadow: 0 4px 16px rgba(240, 184, 64, 0.25);
            flex-shrink: 0;
            letter-spacing: 0.01em;
        }

        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
            box-shadow: 0 6px 24px rgba(240, 184, 64, 0.4);
            transform: translateY(-1px);
        }

        .nav-cta-btn:active {
            transform: translateY(0);
            box-shadow: 0 3px 12px rgba(240, 184, 64, 0.3);
        }

        .nav-row-2 {
            display: flex;
            align-items: center;
            height: var(--nav-row2-height);
            gap: 4px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .nav-row-2::-webkit-scrollbar {
            display: none;
        }

        .nav-tab {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-text-muted);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.01em;
        }

        .nav-tab:hover {
            color: var(--color-text);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-tab.active {
            color: #fff;
            background: var(--color-primary);
            box-shadow: 0 3px 14px rgba(91, 76, 230, 0.35);
        }

        .nav-tab.active:hover {
            background: var(--color-primary-light);
            color: #fff;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--color-text);
            border-radius: 2px;
            transition: all var(--transition-fast);
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 560px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: var(--color-bg-alt);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img,
        .hero-bg .bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(8, 8, 26, 0.65) 0%, rgba(8, 8, 26, 0.82) 40%, rgba(8, 8, 26, 0.95) 100%);
            z-index: 1;
        }

        .hero-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 35%, rgba(91, 76, 230, 0.2) 0%, transparent 65%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 780px;
            padding: 60px 24px;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: var(--radius-full);
            background: rgba(240, 184, 64, 0.15);
            color: var(--color-accent-light);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 20px;
            border: 1px solid rgba(240, 184, 64, 0.25);
        }

        .hero h1 {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 900;
            margin-bottom: 18px;
            letter-spacing: 0.03em;
            color: #fff;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        .hero h1 .highlight {
            color: var(--color-accent);
            position: relative;
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--color-text-muted);
            margin-bottom: 32px;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.75;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.02em;
            transition: all var(--transition-normal);
            cursor: pointer;
            border: 2px solid transparent;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            color: #fff;
            box-shadow: var(--shadow-glow);
            border-color: transparent;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
            box-shadow: 0 0 40px rgba(91, 76, 230, 0.4);
            transform: translateY(-2px);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: var(--shadow-glow);
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.55);
            transform: translateY(-2px);
        }

        .btn-outline:active {
            transform: translateY(0);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
            color: #1a1a0a;
            box-shadow: var(--shadow-glow-accent);
            border-color: transparent;
        }

        .btn-accent:hover {
            background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
            box-shadow: 0 0 36px rgba(240, 184, 64, 0.4);
            transform: translateY(-2px);
        }

        .btn-accent:active {
            transform: translateY(0);
        }

        .btn-sm {
            padding: 8px 18px;
            font-size: 0.85rem;
            border-radius: var(--radius-full);
        }

        .btn-lg {
            padding: 16px 36px;
            font-size: 1.1rem;
            border-radius: var(--radius-full);
        }

        /* ===== SECTIONS ===== */
        .section {
            padding: 72px 0;
        }

        .section-alt {
            background: var(--color-bg-alt);
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: var(--color-accent);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: clamp(1.7rem, 3.5vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--color-text-heading);
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== BRAND INTRO ===== */
        .brand-intro-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
        }

        .intro-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            text-align: center;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

        .intro-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
            border-radius: 0 0 3px 3px;
            opacity: 0;
            transition: opacity var(--transition-normal);
        }

        .intro-card:hover {
            border-color: var(--color-border-light);
            background: var(--color-surface-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .intro-card:hover::before {
            opacity: 1;
        }

        .intro-card-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.5rem;
            color: #fff;
            box-shadow: 0 6px 20px rgba(91, 76, 230, 0.3);
        }

        .intro-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }

        .intro-card p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        /* ===== CATEGORY ENTRY ===== */
        .category-entry-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .category-entry-card {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 0;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: all var(--transition-normal);
            min-height: 280px;
        }

        .category-entry-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .category-entry-img {
            position: relative;
            min-height: 280px;
            overflow: hidden;
        }

        .category-entry-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .category-entry-card:hover .category-entry-img img {
            transform: scale(1.06);
        }

        .category-entry-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 40%, rgba(8, 8, 26, 0.7) 100%);
        }

        .category-entry-body {
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
        }

        .category-entry-tag {
            display: inline-block;
            padding: 5px 14px;
            border-radius: var(--radius-full);
            background: rgba(240, 184, 64, 0.12);
            color: var(--color-accent-light);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            width: fit-content;
        }

        .category-entry-body h3 {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 0.02em;
        }

        .category-entry-body p {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            line-height: 1.65;
        }

        /* ===== STATS ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            transition: all var(--transition-normal);
        }

        .stat-card:hover {
            background: var(--color-surface-hover);
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .stat-number {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--color-accent);
            letter-spacing: 0.02em;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        /* ===== CMS LIST ===== */
        .cms-list-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
        }

        .cms-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
        }

        .cms-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            background: var(--color-surface-hover);
        }

        .cms-card-img {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            position: relative;
            background: var(--color-bg-alt);
        }

        .cms-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .cms-card:hover .cms-card-img img {
            transform: scale(1.05);
        }

        .cms-card-body {
            padding: 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .cms-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--color-text-weak);
            flex-wrap: wrap;
        }

        .cms-card-category {
            padding: 3px 10px;
            border-radius: var(--radius-sm);
            background: rgba(91, 76, 230, 0.18);
            color: var(--color-primary-light);
            font-weight: 600;
            font-size: 0.78rem;
            letter-spacing: 0.03em;
        }

        .cms-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.45;
            letter-spacing: 0.01em;
        }

        .cms-card h4 a {
            color: var(--color-text-heading);
            transition: color var(--transition-fast);
        }

        .cms-card h4 a:hover {
            color: var(--color-accent-light);
        }

        .cms-card-excerpt {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cms-empty {
            text-align: center;
            padding: 48px 24px;
            color: var(--color-text-muted);
            font-size: 1rem;
            grid-column: 1 / -1;
        }

        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }

        .feature-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 32px 26px;
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .feature-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            background: var(--color-surface-hover);
        }

        .feature-card-img {
            border-radius: var(--radius-md);
            overflow: hidden;
            aspect-ratio: 3 / 2;
            background: var(--color-bg-alt);
        }

        .feature-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .feature-card:hover .feature-card-img img {
            transform: scale(1.04);
        }

        .feature-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .feature-card p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        .feature-card .feature-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-accent);
            margin-top: auto;
            transition: gap var(--transition-fast);
        }

        .feature-card .feature-link:hover {
            color: var(--color-accent-light);
            gap: 10px;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-normal);
        }

        .faq-item:hover {
            border-color: var(--color-border-light);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-text-heading);
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            gap: 12px;
            letter-spacing: 0.01em;
            transition: color var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--color-accent-light);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            transition: all var(--transition-fast);
        }

        .faq-item.open .faq-icon {
            background: var(--color-primary);
            color: #fff;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-normal), padding var(--transition-normal);
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 22px 18px;
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.7;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            position: relative;
            background: var(--color-bg-alt);
            overflow: hidden;
            text-align: center;
            padding: 80px 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(91, 76, 230, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-bg-img {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.25;
        }

        .cta-bg-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .cta-content h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }

        .cta-content p {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--color-bg);
            border-top: 1px solid var(--color-border);
            padding: 48px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 36px;
        }

        .footer-brand .brand-name {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--color-text-heading);
            letter-spacing: 0.02em;
            margin-bottom: 8px;
        }

        .footer-brand p {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            max-width: 300px;
        }

        .footer-links h4 {
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            color: var(--color-text-heading);
            margin-bottom: 14px;
            text-transform: uppercase;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            font-size: 0.88rem;
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--color-accent-light);
        }

        .footer-bottom {
            border-top: 1px solid var(--color-border);
            padding-top: 20px;
            text-align: center;
            font-size: 0.82rem;
            color: var(--color-text-weak);
        }

        .footer-bottom a {
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--color-accent-light);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .category-entry-card {
                grid-template-columns: 1fr;
            }

            .category-entry-img {
                min-height: 200px;
                max-height: 260px;
            }

            .category-entry-img-overlay {
                background: linear-gradient(180deg, transparent 30%, rgba(8, 8, 26, 0.75) 100%);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .nav-search-wrap {
                max-width: 260px;
            }

            .hero {
                min-height: 460px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-height: 120px;
            }

            .nav-row-1 {
                height: 50px;
            }

            .nav-row-2 {
                height: 42px;
            }

            .nav-brand {
                font-size: 1.15rem;
            }

            .nav-brand .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }

            .nav-search-wrap {
                max-width: 180px;
            }

            .nav-cta-btn {
                padding: 7px 14px;
                font-size: 0.8rem;
            }

            .nav-search {
                padding: 6px 12px;
            }

            .nav-tab {
                padding: 6px 14px;
                font-size: 0.82rem;
            }

            .hero {
                min-height: 400px;
            }

            .hero-content {
                padding: 40px 20px;
            }

            .section {
                padding: 48px 0;
            }

            .section-header {
                margin-bottom: 32px;
            }

            .cms-list-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .brand-intro-grid {
                grid-template-columns: 1fr;
            }

            .btn-lg {
                padding: 14px 26px;
                font-size: 1rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .nav-search-wrap {
                display: none;
            }

            .nav-cta-btn {
                font-size: 0.78rem;
                padding: 6px 12px;
            }

            .nav-brand {
                font-size: 1rem;
            }

            .nav-brand .brand-icon {
                width: 26px;
                height: 26px;
                font-size: 0.85rem;
            }

            .hero {
                min-height: 350px;
            }

            .hero h1 {
                font-size: 1.7rem;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .btn {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .stat-card {
                padding: 18px 12px;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.78rem;
            }

            .cms-list-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .category-entry-body {
                padding: 20px 18px;
            }

            .category-entry-body h3 {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .faq-question {
                font-size: 0.9rem;
                padding: 14px 16px;
            }

            .faq-answer-inner {
                padding: 0 16px 14px;
                font-size: 0.82rem;
            }

            .nav-row-2 {
                gap: 1px;
            }

            .nav-tab {
                padding: 5px 10px;
                font-size: 0.76rem;
            }
        }

/* roulang page: category1 */
/* ========== 设计变量 & 基础 Reset ========== */
        :root {
            --bg-deep: #08090d;
            --bg-surface: #111318;
            --bg-card: #181b22;
            --bg-card-hover: #1f222b;
            --bg-elevated: #1c1f28;
            --border-subtle: #252830;
            --border-medium: #333845;
            --border-accent: #4a3f2f;
            --gold-primary: #c8a145;
            --gold-light: #e0c06e;
            --gold-bright: #f0d078;
            --gold-pale: #d4b860;
            --text-primary: #e8e6e0;
            --text-secondary: #b5b3ab;
            --text-muted: #7a7870;
            --text-inverse: #0a0905;
            --accent-blue: #4a90c2;
            --accent-red: #c94a4a;
            --accent-green: #5a9e6f;
            --accent-orange: #d4853a;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.55);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.65);
            --shadow-gold: 0 0 30px rgba(200,161,69,0.12);
            --radius-xs: 4px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            --font-display: 'Georgia', 'Noto Serif SC', 'STSong', serif;
            --font-body: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
            background-image:
                radial-gradient(ellipse at 15% 10%, rgba(200,161,69,0.03) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 5%, rgba(74,144,194,0.025) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 70%, rgba(200,161,69,0.02) 0%, transparent 50%);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        ul, ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== 全局装饰粒子（星空效果） ========== */
        .stars-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.35;
        }

        /* ========== Header 深色风格覆盖 ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(8,9,13,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            box-shadow: 0 2px 20px rgba(0,0,0,0.5);
        }
        .site-header .container {
            padding-top: 8px;
            padding-bottom: 0;
        }
        .nav-row-1 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding-bottom: 8px;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--gold-light);
            letter-spacing: 0.03em;
            transition: color var(--transition-fast), text-shadow var(--transition-fast);
            white-space: nowrap;
        }
        .nav-brand:hover {
            color: var(--gold-bright);
            text-shadow: 0 0 24px rgba(200,161,69,0.35);
        }
        .brand-icon {
            font-size: 1.5rem;
            color: var(--gold-primary);
            animation: icon-pulse 2.8s ease-in-out infinite;
        }
        @keyframes icon-pulse {
            0%, 100% { opacity: 0.75; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.12); }
        }
        .nav-search-wrap {
            flex: 1;
            max-width: 360px;
            min-width: 180px;
        }
        .nav-search {
            display: flex;
            align-items: center;
            background: var(--bg-surface);
            border: 1px solid var(--border-medium);
            border-radius: 28px;
            padding: 7px 16px;
            gap: 8px;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        .nav-search:focus-within {
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 3px rgba(200,161,69,0.1);
        }
        .search-icon {
            font-size: 0.95rem;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .nav-search input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-primary);
            font-size: 0.9rem;
            min-width: 0;
        }
        .nav-search input::placeholder {
            color: var(--text-muted);
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 22px;
            background: linear-gradient(135deg, var(--gold-primary), #b8912e);
            color: var(--text-inverse);
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            box-shadow: 0 2px 12px rgba(200,161,69,0.25);
        }
        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--gold-light), #c89f3a);
            box-shadow: 0 4px 20px rgba(200,161,69,0.4);
            transform: translateY(-1px);
        }
        .nav-cta-btn:active {
            transform: scale(0.97);
        }

        /* 第二行频道导航 */
        .nav-row-2 {
            display: flex;
            align-items: center;
            gap: 2px;
            padding-bottom: 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-row-2::-webkit-scrollbar {
            display: none;
        }
        .nav-tab {
            display: inline-flex;
            align-items: center;
            padding: 11px 20px;
            font-size: 0.93rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 10px 10px 0 0;
            position: relative;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .nav-tab:hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.03);
        }
        .nav-tab.active {
            color: var(--gold-light);
            font-weight: 600;
            background: rgba(200,161,69,0.06);
        }
        .nav-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            right: 20%;
            height: 2.5px;
            background: var(--gold-primary);
            border-radius: 4px 4px 0 0;
            box-shadow: 0 0 10px rgba(200,161,69,0.5);
        }

        /* ========== 分类 Hero Banner ========== */
        .category-hero {
            position: relative;
            padding: 80px 0 90px;
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            min-height: 420px;
            display: flex;
            align-items: center;
            overflow: hidden;
            z-index: 1;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(8,9,13,0.65) 0%, rgba(8,9,13,0.82) 40%, rgba(8,9,13,0.94) 85%, var(--bg-deep) 100%);
            z-index: 1;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 35% 40%, rgba(200,161,69,0.08) 0%, transparent 60%);
            z-index: 1;
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-badge-row {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }
        .hero-cat-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            background: rgba(200,161,69,0.15);
            border: 1px solid rgba(200,161,69,0.3);
            border-radius: 20px;
            color: var(--gold-light);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.04em;
        }
        .hero-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4ade80;
            animation: live-pulse 1.5s ease-in-out infinite;
        }
        @keyframes live-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
            50% { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
        }
        .category-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700;
            color: #f0e8d5;
            letter-spacing: 0.03em;
            line-height: 1.25;
            margin-bottom: 14px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.6);
        }
        .category-hero h1 .gold-accent {
            color: var(--gold-bright);
        }
        .category-hero .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 620px;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .hero-stats-row {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }
        .hero-stat-item {
            text-align: center;
            min-width: 70px;
        }
        .hero-stat-num {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold-light);
            line-height: 1.1;
        }
        .hero-stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            letter-spacing: 0.04em;
            margin-top: 4px;
        }

        /* ========== 板块通用 ========== */
        .section-block {
            padding: 64px 0;
            position: relative;
            z-index: 1;
        }
        .section-block.alt-bg {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .section-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--gold-pale);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 2.8vw, 2.2rem);
            font-weight: 700;
            color: #f0e8d5;
            letter-spacing: 0.02em;
            margin-bottom: 10px;
        }
        .section-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ========== 赛事卡片网格 ========== */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
        }
        .event-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .event-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-lg), var(--shadow-gold);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }
        .event-card-img-wrap {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }
        .event-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .event-card:hover .event-card-img-wrap img {
            transform: scale(1.06);
        }
        .event-card-img-wrap::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(24,27,34,0.9), transparent);
            pointer-events: none;
        }
        .event-status-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 5px 14px;
            border-radius: 16px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            z-index: 2;
            backdrop-filter: blur(6px);
        }
        .status-upcoming { background: rgba(74,144,194,0.25); color: #8cc8f0; border: 1px solid rgba(74,144,194,0.4); }
        .status-live { background: rgba(90,158,111,0.25); color: #7ed68a; border: 1px solid rgba(90,158,111,0.4); animation: status-glow 2s ease-in-out infinite; }
        .status-ended { background: rgba(180,180,180,0.15); color: #999; border: 1px solid rgba(180,180,180,0.25); }
        .status-signup { background: rgba(212,133,58,0.25); color: #f0b870; border: 1px solid rgba(212,133,58,0.4); }
        .status-preview { background: rgba(180,140,200,0.2); color: #c8b0d8; border: 1px solid rgba(180,140,200,0.35); }
        @keyframes status-glow {
            0%, 100% { box-shadow: 0 0 8px rgba(90,158,111,0.3); }
            50% { box-shadow: 0 0 18px rgba(90,158,111,0.55); }
        }
        .event-card-body {
            padding: 20px 20px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .event-card-cat {
            font-size: 0.75rem;
            color: var(--gold-pale);
            letter-spacing: 0.05em;
            margin-bottom: 6px;
            font-weight: 500;
        }
        .event-card-title {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: #e8e4d8;
            line-height: 1.4;
            margin-bottom: 8px;
            transition: color var(--transition-fast);
        }
        .event-card:hover .event-card-title {
            color: var(--gold-light);
        }
        .event-card-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.55;
            flex: 1;
            margin-bottom: 12px;
        }
        .event-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 12px;
        }
        .event-heat {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--accent-orange);
            font-weight: 600;
        }
        .event-heat i {
            font-size: 0.85rem;
        }

        /* ========== 赛程时间线 ========== */
        .timeline-wrap {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        .timeline-wrap::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--border-accent), var(--border-medium), var(--border-subtle));
            border-radius: 1px;
        }
        .timeline-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 32px;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-dot {
            position: absolute;
            left: 16px;
            top: 4px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2.5px solid var(--gold-primary);
            z-index: 2;
            box-shadow: 0 0 12px rgba(200,161,69,0.3);
        }
        .timeline-item.live .timeline-dot {
            background: #5a9e6f;
            border-color: #5a9e6f;
            animation: live-pulse 1.5s ease-in-out infinite;
        }
        .timeline-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 22px;
            transition: all var(--transition-fast);
        }
        .timeline-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-md);
        }
        .timeline-date {
            font-size: 0.78rem;
            color: var(--gold-pale);
            letter-spacing: 0.05em;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .timeline-title {
            font-weight: 700;
            font-size: 1.05rem;
            color: #e8e4d8;
            margin-bottom: 4px;
        }
        .timeline-info {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        /* ========== 数据面板 ========== */
        .stats-panel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        .stat-panel-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-panel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .stat-panel-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .stat-panel-card:hover::before {
            opacity: 1;
        }
        .stat-panel-icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: var(--gold-pale);
        }
        .stat-panel-value {
            font-family: var(--font-display);
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--gold-light);
            line-height: 1.1;
        }
        .stat-panel-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            letter-spacing: 0.04em;
            margin-top: 6px;
        }

        /* ========== 资讯列表 ========== */
        .news-list-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .news-list-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .news-list-item:hover {
            padding-left: 8px;
            border-bottom-color: var(--border-accent);
        }
        .news-list-tag {
            flex-shrink: 0;
            padding: 4px 12px;
            border-radius: 14px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            background: rgba(200,161,69,0.12);
            color: var(--gold-pale);
            border: 1px solid rgba(200,161,69,0.2);
        }
        .news-list-content {
            flex: 1;
            min-width: 0;
        }
        .news-list-title {
            font-weight: 600;
            font-size: 1rem;
            color: #e0dcd2;
            line-height: 1.45;
            transition: color var(--transition-fast);
        }
        .news-list-item:hover .news-list-title {
            color: var(--gold-light);
        }
        .news-list-date {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ========== FAQ ========== */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 16px;
            max-width: 960px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 22px;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .faq-item:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-md);
        }
        .faq-q {
            font-weight: 700;
            font-size: 0.98rem;
            color: #e8e4d8;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .faq-q .faq-icon {
            color: var(--gold-pale);
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .faq-a {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ========== CTA ========== */
        .cta-section {
            padding: 72px 0;
            text-align: center;
            position: relative;
            z-index: 1;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
        }
        .cta-inner {
            max-width: 640px;
            margin: 0 auto;
        }
        .cta-section h2 {
            font-family: var(--font-display);
            font-size: clamp(1.7rem, 2.6vw, 2.1rem);
            color: #f0e8d5;
            margin-bottom: 12px;
        }
        .cta-section p {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-size: 0.95rem;
        }
        .btn-primary-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background: linear-gradient(135deg, var(--gold-primary), #b8912e);
            color: var(--text-inverse);
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.03em;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(200,161,69,0.3);
        }
        .btn-primary-lg:hover {
            background: linear-gradient(135deg, var(--gold-light), #c89f3a);
            box-shadow: 0 6px 28px rgba(200,161,69,0.45);
            transform: translateY(-2px);
        }
        .btn-primary-lg:active {
            transform: scale(0.96);
        }
        .btn-outline-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background: transparent;
            color: var(--gold-light);
            border: 1.5px solid var(--gold-primary);
            border-radius: 28px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.03em;
            transition: all var(--transition-smooth);
            margin-left: 12px;
        }
        .btn-outline-lg:hover {
            background: rgba(200,161,69,0.08);
            border-color: var(--gold-light);
            box-shadow: 0 4px 18px rgba(200,161,69,0.2);
        }

        /* ========== Footer 深色覆盖 ========== */
        .site-footer {
            background: var(--bg-deep);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            position: relative;
            z-index: 1;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 28px;
        }
        .brand-name {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--gold-light);
            letter-spacing: 0.03em;
            margin-bottom: 10px;
        }
        .footer-brand p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .footer-links h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.05em;
            margin-bottom: 12px;
            text-transform: uppercase;
        }
        .footer-links ul li {
            margin-bottom: 7px;
        }
        .footer-links ul li a,
        .footer-links ul li span {
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-links ul li a:hover {
            color: var(--gold-light);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 18px;
            border-top: 1px solid var(--border-subtle);
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .events-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .hero-stats-row {
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .nav-row-1 {
                flex-wrap: wrap;
                gap: 10px;
            }
            .nav-search-wrap {
                order: 3;
                max-width: 100%;
                flex: 1 1 100%;
            }
            .nav-cta-btn {
                font-size: 0.8rem;
                padding: 7px 16px;
            }
            .nav-row-2 {
                gap: 0;
            }
            .nav-tab {
                padding: 10px 14px;
                font-size: 0.82rem;
            }
            .category-hero {
                padding: 50px 0 60px;
                min-height: auto;
            }
            .category-hero h1 {
                font-size: 1.7rem;
            }
            .hero-stats-row {
                gap: 16px;
            }
            .hero-stat-num {
                font-size: 1.5rem;
            }
            .events-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .stats-panel-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .section-block {
                padding: 40px 0;
            }
            .timeline-wrap::before {
                left: 16px;
            }
            .timeline-item {
                padding-left: 46px;
            }
            .timeline-dot {
                left: 8px;
                width: 14px;
                height: 14px;
            }
            .btn-outline-lg {
                margin-left: 0;
                margin-top: 10px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }
            .nav-brand {
                font-size: 1.1rem;
            }
            .nav-tab {
                padding: 8px 10px;
                font-size: 0.75rem;
            }
            .category-hero {
                padding: 36px 0 44px;
            }
            .category-hero h1 {
                font-size: 1.4rem;
            }
            .hero-stats-row {
                gap: 10px;
            }
            .hero-stat-num {
                font-size: 1.2rem;
            }
            .hero-stat-label {
                font-size: 0.7rem;
            }
            .stats-panel-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-panel-value {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .event-card-title {
                font-size: 1rem;
            }
        }

/* roulang page: article */
:root {
            --bg-deep: #06090f;
            --bg-primary: #0a0e17;
            --bg-secondary: #101520;
            --bg-card: #161b28;
            --bg-card-hover: #1c2233;
            --bg-elevated: #1e2535;
            --bg-input: #141924;
            --text-primary: #e6e3dd;
            --text-secondary: #b0aca5;
            --text-weak: #7a7670;
            --text-muted: #5a5652;
            --accent-gold: #c9a75c;
            --accent-gold-light: #e0c87d;
            --accent-gold-dark: #a6863d;
            --accent-amber: #d4783b;
            --accent-bronze: #b8864e;
            --border-subtle: #1f2635;
            --border-default: #2a3040;
            --border-gold: rgba(201, 167, 92, 0.35);
            --border-gold-strong: rgba(201, 167, 92, 0.6);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
            --shadow-gold: 0 0 0 1px rgba(201,167,92,0.25), 0 4px 20px rgba(201,167,92,0.12);
            --shadow-gold-lg: 0 0 0 2px rgba(201,167,92,0.2), 0 8px 40px rgba(201,167,92,0.15);
            --radius-xs: 4px;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Serif SC', 'STSong', serif;
            --transition-fast: 0.15s ease;
            --transition-base: 0.25s ease;
            --transition-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --max-width: 1200px;
            --max-width-article: 820px;
            --nav-height-row1: 56px;
            --nav-height-row2: 44px;
            --nav-total-height: 100px;
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
        body {
            font-family: var(--font-sans);
            background-color: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at 50% 0%, rgba(201,167,92,0.04) 0%, transparent 65%),
                        radial-gradient(ellipse at 80% 20%, rgba(180,130,70,0.03) 0%, transparent 50%),
                        radial-gradient(ellipse at 20% 70%, rgba(160,120,60,0.02) 0%, transparent 45%);
            pointer-events: none; z-index: 0;
        }
        a { color: var(--accent-gold-light); text-decoration: none; transition: color var(--transition-fast); }
        a:hover { color: var(--accent-gold); }
        img { max-width: 100%; height: auto; display: block; }
        button, input, textarea { font-family: inherit; }
        ul, ol { list-style: none; }
        .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
        .container--article { max-width: var(--max-width-article); }

        /* ===== HEADER / NAV ===== */
        .site-header {
            position: sticky; top: 0; z-index: 100;
            background: rgba(10,14,23,0.92); backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            box-shadow: 0 2px 20px rgba(0,0,0,0.35);
        }
        .nav-row-1 {
            display: flex; align-items: center; gap: 20px;
            height: var(--nav-height-row1); padding: 0 4px;
        }
        .nav-brand {
            display: flex; align-items: center; gap: 10px; flex-shrink: 0;
            font-size: 1.25rem; font-weight: 700; color: var(--text-primary);
            letter-spacing: 0.02em; text-decoration: none;
            transition: color var(--transition-fast);
        }
        .nav-brand:hover { color: var(--accent-gold-light); }
        .brand-icon {
            display: flex; align-items: center; justify-content: center;
            width: 38px; height: 38px; border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
            color: #0a0e17; font-size: 1.1rem; font-weight: 700;
            box-shadow: 0 0 20px rgba(201,167,92,0.3);
        }
        .nav-search-wrap { flex: 1; max-width: 360px; }
        .nav-search {
            display: flex; align-items: center; gap: 8px;
            background: var(--bg-input); border: 1px solid var(--border-default);
            border-radius: 24px; padding: 8px 16px;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        .nav-search:focus-within {
            border-color: var(--border-gold-strong);
            box-shadow: 0 0 0 3px rgba(201,167,92,0.08);
        }
        .search-icon { font-size: 0.95rem; opacity: 0.6; flex-shrink: 0; }
        .nav-search input {
            background: transparent; border: none; outline: none;
            color: var(--text-primary); font-size: 0.9rem; width: 100%;
        }
        .nav-search input::placeholder { color: var(--text-muted); }
        .nav-cta-btn {
            flex-shrink: 0; display: inline-flex; align-items: center;
            padding: 9px 22px; border-radius: 24px;
            background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
            color: #0a0e17; font-weight: 700; font-size: 0.9rem;
            text-decoration: none; letter-spacing: 0.03em;
            transition: all var(--transition-base);
            box-shadow: 0 2px 12px rgba(201,167,92,0.25);
        }
        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            box-shadow: 0 4px 20px rgba(201,167,92,0.4);
            color: #0a0e17; transform: translateY(-1px);
        }
        .nav-row-2 {
            display: flex; align-items: center; gap: 2px;
            height: var(--nav-height-row2); padding: 0 4px;
            overflow-x: auto; -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-row-2::-webkit-scrollbar { display: none; }
        .nav-tab {
            display: inline-flex; align-items: center; padding: 7px 18px;
            border-radius: 20px; font-size: 0.9rem; font-weight: 500;
            color: var(--text-secondary); text-decoration: none;
            white-space: nowrap; transition: all var(--transition-fast);
            border: 1px solid transparent;
        }
        .nav-tab:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); }
        .nav-tab.active {
            color: var(--accent-gold-light); font-weight: 600;
            background: rgba(201,167,92,0.08);
            border-color: var(--border-gold);
        }

        /* ===== ARTICLE BANNER ===== */
        .article-banner {
            position: relative; padding: 60px 0 48px;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-subtle);
            overflow: hidden;
        }
        .article-banner::before {
            content: '';
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: url('/assets/images/backpic/back-1.png') center/cover no-repeat;
            opacity: 0.08; z-index: 0;
        }
        .article-banner::after {
            content: '';
            position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
            z-index: 1;
        }
        .article-banner .container { position: relative; z-index: 2; }
        .breadcrumb {
            display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
            font-size: 0.85rem; color: var(--text-weak); margin-bottom: 24px;
        }
        .breadcrumb a { color: var(--text-secondary); }
        .breadcrumb a:hover { color: var(--accent-gold-light); }
        .breadcrumb .sep { color: var(--text-muted); font-size: 0.7rem; }
        .breadcrumb .current { color: var(--accent-gold-light); }
        .article-meta-top {
            display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
            margin-bottom: 16px;
        }
        .article-cat-tag {
            display: inline-flex; padding: 5px 14px; border-radius: 20px;
            font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
            background: rgba(201,167,92,0.12); color: var(--accent-gold-light);
            border: 1px solid var(--border-gold);
        }
        .article-date {
            font-size: 0.85rem; color: var(--text-weak);
            display: flex; align-items: center; gap: 6px;
        }
        .article-date::before { content: '📅'; font-size: 0.8rem; }
        .article-banner h1 {
            font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700;
            line-height: 1.35; color: var(--text-primary);
            letter-spacing: 0.02em; margin-bottom: 8px;
        }
        .article-excerpt {
            font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7;
            max-width: 680px;
        }

        /* ===== ARTICLE CONTENT ===== */
        .article-content-section {
            padding: 48px 0 56px;
            background: var(--bg-deep);
            position: relative;
        }
        .article-featured-image {
            border-radius: var(--radius-lg); overflow: hidden;
            margin-bottom: 36px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-subtle);
        }
        .article-featured-image img {
            width: 100%; height: auto; display: block;
            border-radius: var(--radius-lg);
        }
        .article-body {
            font-size: 1.05rem; line-height: 1.85; color: var(--text-primary);
        }
        .article-body h2 {
            font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
            color: var(--text-primary); margin: 36px 0 16px; padding-top: 8px;
            border-top: 1px solid var(--border-subtle);
        }
        .article-body h3 {
            font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600;
            color: var(--text-primary); margin: 28px 0 12px;
        }
        .article-body p { margin-bottom: 16px; color: var(--text-secondary); }
        .article-body ul, .article-body ol {
            margin: 12px 0 20px 20px; color: var(--text-secondary);
        }
        .article-body li { margin-bottom: 8px; padding-left: 4px; }
        .article-body ul li::marker { color: var(--accent-gold); }
        .article-body blockquote {
            margin: 24px 0; padding: 20px 24px;
            border-left: 3px solid var(--accent-gold);
            background: var(--bg-card); border-radius: 0 var(--radius-md) var(--radius-md) 0;
            color: var(--text-secondary); font-style: italic;
        }
        .article-body strong { color: var(--text-primary); font-weight: 600; }
        .article-body a { color: var(--accent-gold-light); text-decoration: underline; text-underline-offset: 3px; }
        .article-body a:hover { color: var(--accent-gold); }
        .article-body img { border-radius: var(--radius-md); margin: 20px 0; }
        .article-divider {
            border: none; height: 1px; background: var(--border-subtle);
            margin: 36px 0;
        }

        /* ===== NOT FOUND STATE ===== */
        .not-found-card {
            text-align: center; padding: 60px 32px;
            background: var(--bg-card); border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
        }
        .not-found-card .nf-icon {
            font-size: 3.5rem; margin-bottom: 20px; display: block;
        }
        .not-found-card h2 {
            font-family: var(--font-heading); font-size: 1.8rem;
            color: var(--text-primary); margin-bottom: 12px;
        }
        .not-found-card p {
            color: var(--text-secondary); margin-bottom: 24px; font-size: 1.05rem;
        }
        .btn-back-home {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 12px 28px; border-radius: 24px;
            background: var(--accent-gold); color: #0a0e17;
            font-weight: 700; text-decoration: none;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-gold);
        }
        .btn-back-home:hover {
            background: var(--accent-gold-light); color: #0a0e17;
            box-shadow: var(--shadow-gold-lg); transform: translateY(-2px);
        }

        /* ===== RELATED POSTS ===== */
        .related-section {
            padding: 56px 0 64px;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-subtle);
            position: relative;
        }
        .related-section::before {
            content: '';
            position: absolute; top: 0; left: 0; width: 100%; height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
        }
        .section-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
            color: var(--accent-gold-light); text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-label::before {
            content: ''; display: inline-block; width: 8px; height: 8px;
            border-radius: 50%; background: var(--accent-gold);
            box-shadow: 0 0 10px rgba(201,167,92,0.5);
        }
        .section-title {
            font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700;
            color: var(--text-primary); margin-bottom: 32px; letter-spacing: 0.02em;
        }
        .related-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .related-card {
            background: var(--bg-card); border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle); overflow: hidden;
            transition: all var(--transition-base);
            display: flex; flex-direction: column;
        }
        .related-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-gold);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }
        .related-card-img {
            height: 180px; overflow: hidden; position: relative;
        }
        .related-card-img img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .related-card:hover .related-card-img img { transform: scale(1.06); }
        .related-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
        .related-card-tag {
            display: inline-block; font-size: 0.75rem; font-weight: 600;
            color: var(--accent-gold-light); letter-spacing: 0.04em;
            margin-bottom: 8px;
        }
        .related-card h3 {
            font-size: 1.05rem; font-weight: 600; color: var(--text-primary);
            line-height: 1.45; margin-bottom: 8px;
        }
        .related-card h3 a {
            color: var(--text-primary); text-decoration: none;
        }
        .related-card h3 a:hover { color: var(--accent-gold-light); }
        .related-card .rc-date {
            font-size: 0.8rem; color: var(--text-weak); margin-top: auto;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 56px 0 60px;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            text-align: center; position: relative;
        }
        .cta-section::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(201,167,92,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h2 {
            font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
            color: var(--text-primary); margin-bottom: 12px;
        }
        .cta-section p {
            color: var(--text-secondary); font-size: 1.05rem;
            margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto;
        }
        .btn-cta-lg {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 14px 36px; border-radius: 28px;
            background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
            color: #0a0e17; font-weight: 700; font-size: 1rem;
            text-decoration: none; letter-spacing: 0.03em;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-gold);
        }
        .btn-cta-lg:hover {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            box-shadow: var(--shadow-gold-lg); transform: translateY(-2px);
            color: #0a0e17;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--bg-deep); border-top: 1px solid var(--border-subtle);
            padding: 48px 0 28px; position: relative;
        }
        .footer-grid {
            display: grid; grid-template-columns: 1.4fr 1fr 1fr;
            gap: 40px; margin-bottom: 32px;
        }
        .brand-name {
            font-size: 1.3rem; font-weight: 700; color: var(--text-primary);
            margin-bottom: 10px; letter-spacing: 0.02em;
        }
        .footer-brand p { color: var(--text-weak); font-size: 0.9rem; line-height: 1.7; }
        .footer-links h4 {
            font-size: 0.85rem; font-weight: 600; color: var(--text-primary);
            letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px;
        }
        .footer-links ul { display: flex; flex-direction: column; gap: 8px; }
        .footer-links li, .footer-links li span { color: var(--text-weak); font-size: 0.9rem; }
        .footer-links a { color: var(--text-weak); text-decoration: none; transition: color var(--transition-fast); }
        .footer-links a:hover { color: var(--accent-gold-light); }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle); padding-top: 20px;
            text-align: center; font-size: 0.85rem; color: var(--text-muted);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .article-banner h1 { font-size: 2rem; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
            .footer-brand { grid-column: 1 / -1; }
        }
        @media (max-width: 768px) {
            .nav-row-1 { gap: 12px; }
            .nav-search-wrap { max-width: 200px; }
            .nav-brand span { font-size: 1rem; }
            .brand-icon { width: 32px; height: 32px; font-size: 0.9rem; }
            .nav-cta-btn { padding: 7px 16px; font-size: 0.8rem; }
            .article-banner { padding: 40px 0 32px; }
            .article-banner h1 { font-size: 1.6rem; }
            .article-excerpt { font-size: 1rem; }
            .article-body { font-size: 0.98rem; }
            .article-body h2 { font-size: 1.35rem; }
            .related-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 1.5rem; }
            .cta-section h2 { font-size: 1.5rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .container { padding: 0 16px; }
        }
        @media (max-width: 520px) {
            .nav-row-1 { gap: 8px; }
            .nav-search-wrap { display: none; }
            .nav-brand span { display: none; }
            .brand-icon { width: 36px; height: 36px; }
            .nav-cta-btn { padding: 6px 14px; font-size: 0.78rem; }
            .nav-row-2 { gap: 0; }
            .nav-tab { padding: 6px 12px; font-size: 0.8rem; border-radius: 16px; }
            .article-banner h1 { font-size: 1.4rem; }
            .article-banner { padding: 28px 0 24px; }
            .article-featured-image { border-radius: var(--radius-md); }
            .article-featured-image img { border-radius: var(--radius-md); }
            .article-body { font-size: 0.93rem; }
            .article-body h2 { font-size: 1.2rem; margin-top: 24px; }
            .not-found-card { padding: 40px 20px; }
            .not-found-card h2 { font-size: 1.4rem; }
            .related-card-img { height: 160px; }
        }
