/* roulang page: index */
:root {
            --cin-bg-main: #0D0E12;
            --cin-bg-card: #151821;
            --cin-bg-card-alt: #1B1F2C;
            --cin-border: #262B3D;
            --cin-border-light: #363C52;
            --cin-gold: #FFB800;
            --cin-gold-glow: rgba(255, 184, 0, 0.25);
            --cin-crimson: #FF385C;
            --cin-crimson-glow: rgba(255, 56, 92, 0.3);
            --cin-text-main: #F8F9FA;
            --cin-text-muted: #9FA6B2;
            --cin-text-dim: #656C7A;
            --cin-radius: 8px;
            --cin-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }

        body {
            background-color: var(--cin-bg-main);
            color: var(--cin-text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.25s ease;
        }

        /* 顶部导航与大按钮 CTA */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(13, 14, 18, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--cin-border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.28rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cin-gold), var(--cin-crimson));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.1rem;
            box-shadow: 0 0 14px var(--cin-gold-glow);
        }
        .nav-link-custom {
            color: var(--cin-text-muted);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 16px;
            position: relative;
            transition: color 0.2s ease;
        }
        .nav-link-custom:hover, .nav-link-custom.active {
            color: #fff;
        }
        .nav-link-custom.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            background: var(--cin-gold);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--cin-gold);
        }
        .btn-cinema-cta {
            background: linear-gradient(135deg, var(--cin-gold) 0%, var(--cin-crimson) 100%);
            color: #0d0e12;
            font-size: 0.92rem;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 30px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 0 16px var(--cin-gold-glow);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .btn-cinema-cta:hover {
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px var(--cin-crimson-glow);
        }

        /* 统一卡片样式 */
        .cin-card {
            background-color: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 24px;
            box-shadow: var(--cin-shadow);
            position: relative;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .cin-card:hover {
            transform: translateY(-4px);
            border-color: var(--cin-border-light);
            box-shadow: 0 10px 25px rgba(255, 184, 0, 0.12);
        }
        .ticket-notch-top {
            position: relative;
        }
        .ticket-notch-top::before, .ticket-notch-top::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 14px;
            height: 14px;
            background-color: var(--cin-bg-main);
            border-radius: 50%;
            transform: translateY(-50%);
        }
        .ticket-notch-top::before { left: -7px; }
        .ticket-notch-top::after { right: -7px; }

        .section-header {
            margin-bottom: 40px;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--cin-gold);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            background: rgba(255, 184, 0, 0.08);
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid rgba(255, 184, 0, 0.2);
        }
        .section-title {
            font-size: 1.85rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
        }
        .section-desc {
            color: var(--cin-text-muted);
            font-size: 0.98rem;
            max-width: 680px;
        }

        /* 板块一：Hero KV 沉浸全宽 */
        .hero-banner {
            position: relative;
            background: radial-gradient(circle at 50% 20%, #1c2133 0%, var(--cin-bg-main) 75%);
            padding: 85px 0 65px;
            border-bottom: 1px solid var(--cin-border);
            overflow: hidden;
        }
        .hero-banner::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 350px;
            background: radial-gradient(ellipse, rgba(255, 184, 0, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-title {
            font-size: clamp(2.1rem, 4vw, 3.4rem);
            font-weight: 900;
            line-height: 1.25;
            color: #fff;
            margin-bottom: 24px;
        }
        .hero-lead {
            font-size: 1.08rem;
            color: var(--cin-text-muted);
            line-height: 1.8;
            max-width: 820px;
            margin: 0 auto 30px;
        }
        .countdown-strip {
            background: rgba(21, 24, 33, 0.85);
            border: 1px solid var(--cin-border);
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 20px;
            padding: 8px 24px;
            margin-bottom: 32px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .countdown-item {
            display: flex;
            align-items: baseline;
            gap: 4px;
            font-weight: 700;
            color: #fff;
        }
        .countdown-item span {
            color: var(--cin-gold);
            font-size: 1.2rem;
            font-family: monospace;
        }

        /* 板块二：KPI 核心数据看板 */
        .kpi-row {
            margin-top: -30px;
            position: relative;
            z-index: 10;
        }
        .kpi-card {
            background: #151821;
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 24px;
            text-align: center;
            box-shadow: var(--cin-shadow);
        }
        .kpi-val {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--cin-gold);
            font-family: monospace;
            line-height: 1;
            margin-bottom: 8px;
        }
        .kpi-label {
            font-size: 0.88rem;
            color: var(--cin-text-muted);
            font-weight: 600;
        }

        /* 状态指示灯与票根细分 */
        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            background: rgba(40, 167, 69, 0.15);
            color: #28a745;
            border: 1px solid rgba(40, 167, 69, 0.3);
        }
        .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: currentColor;
            box-shadow: 0 0 6px currentColor;
        }
        .card-dashed-line {
            border-top: 1px dashed var(--cin-border);
            margin: 16px 0;
        }

        /* 对比台表格 */
        .comp-table-wrap {
            background: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            overflow: hidden;
        }
        .comp-table {
            width: 100%;
            margin-bottom: 0;
            color: var(--cin-text-main);
        }
        .comp-table th {
            background: var(--cin-bg-card-alt);
            padding: 16px 20px;
            font-weight: 700;
            border-bottom: 1px solid var(--cin-border);
        }
        .comp-table td {
            padding: 18px 20px;
            border-bottom: 1px solid var(--cin-border);
            vertical-align: middle;
        }
        .comp-table tr:last-child td {
            border-bottom: none;
        }

        /* 里程碑放映轴 */
        .milestone-track {
            position: relative;
            padding-left: 30px;
        }
        .milestone-track::before {
            content: '';
            position: absolute;
            top: 10px;
            bottom: 10px;
            left: 10px;
            width: 2px;
            background: linear-gradient(to bottom, var(--cin-gold), var(--cin-crimson));
        }
        .milestone-node {
            position: relative;
            margin-bottom: 30px;
        }
        .milestone-node::before {
            content: '';
            position: absolute;
            left: -25px;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--cin-gold);
            box-shadow: 0 0 10px var(--cin-gold);
        }

        /* FAQ 手风琴样式 */
        .cin-accordion .accordion-item {
            background-color: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            margin-bottom: 12px;
            border-radius: var(--cin-radius);
            overflow: hidden;
        }
        .cin-accordion .accordion-button {
            background-color: var(--cin-bg-card);
            color: #fff;
            font-weight: 700;
            font-size: 1.02rem;
            padding: 18px 22px;
            box-shadow: none;
        }
        .cin-accordion .accordion-button:not(.collapsed) {
            color: var(--cin-gold);
            background-color: var(--cin-bg-card-alt);
            border-bottom: 1px solid var(--cin-border);
        }
        .cin-accordion .accordion-button::after {
            filter: invert(1);
        }
        .cin-accordion .accordion-body {
            color: var(--cin-text-muted);
            padding: 20px 22px;
            line-height: 1.75;
        }

        /* 控制台表单 */
        .console-form-box {
            background: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 32px;
            position: relative;
        }
        .cin-input {
            background: #0D0E12;
            border: 1px solid var(--cin-border);
            color: #fff;
            padding: 12px 16px;
            border-radius: 6px;
        }
        .cin-input:focus {
            background: #0D0E12;
            border-color: var(--cin-gold);
            color: #fff;
            box-shadow: 0 0 0 0.2rem var(--cin-gold-glow);
        }

        /* 标签流式聚合 */
        .tag-badge {
            display: inline-block;
            background: var(--cin-bg-card-alt);
            border: 1px solid var(--cin-border);
            color: var(--cin-text-muted);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin: 4px;
            transition: all 0.2s ease;
        }
        .tag-badge:hover {
            color: var(--cin-gold);
            border-color: var(--cin-gold);
            transform: translateY(-2px);
        }

        /* 页脚 */
        .site-footer {
            background: #08090C;
            border-top: 1px solid var(--cin-border);
            padding: 60px 0 25px;
            color: var(--cin-text-muted);
            font-size: 0.9rem;
        }
        .site-footer h5 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--cin-gold);
        }
        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #1A1D27;
            font-size: 0.82rem;
            color: var(--cin-text-dim);
        }

/* roulang page: article */
:root {
            --cin-bg-main: #0D0E12;
            --cin-bg-card: #151821;
            --cin-bg-card-alt: #1B1F2C;
            --cin-border: #262B3D;
            --cin-border-light: #363C52;
            --cin-gold: #FFB800;
            --cin-gold-glow: rgba(255, 184, 0, 0.25);
            --cin-crimson: #FF385C;
            --cin-crimson-glow: rgba(255, 56, 92, 0.3);
            --cin-text-main: #F8F9FA;
            --cin-text-muted: #9FA6B2;
            --cin-text-dim: #656C7A;
            --cin-radius: 8px;
            --cin-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        body {
            background-color: var(--cin-bg-main);
            color: var(--cin-text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.25s ease;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(13, 14, 18, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--cin-border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.28rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cin-gold), var(--cin-crimson));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.1rem;
            box-shadow: 0 0 14px var(--cin-gold-glow);
        }
        .nav-link-custom {
            color: var(--cin-text-muted);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 16px;
            position: relative;
            transition: color 0.2s ease;
        }
        .nav-link-custom:hover, .nav-link-custom.active {
            color: #fff;
        }
        .nav-link-custom.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            background: var(--cin-gold);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--cin-gold);
        }
        .btn-cinema-cta {
            background: linear-gradient(135deg, var(--cin-gold) 0%, var(--cin-crimson) 100%);
            color: #0d0e12;
            font-size: 0.92rem;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 30px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 0 16px var(--cin-gold-glow);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .btn-cinema-cta:hover {
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px var(--cin-crimson-glow);
        }
        .cin-card {
            background-color: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 24px;
            box-shadow: var(--cin-shadow);
            position: relative;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .cin-card:hover {
            transform: translateY(-4px);
            border-color: var(--cin-border-light);
            box-shadow: 0 10px 25px rgba(255, 184, 0, 0.12);
        }
        .article-container {
            max-width: 980px;
            margin: 0 auto;
        }
        .article-breadcrumb {
            background: rgba(21, 24, 33, 0.6);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 14px 20px;
            font-size: 0.88rem;
            color: var(--cin-text-muted);
        }
        .article-breadcrumb a {
            color: var(--cin-text-muted);
        }
        .article-breadcrumb a:hover {
            color: var(--cin-gold);
        }
        .article-header-box {
            background: radial-gradient(circle at 50% 10%, #1c2133 0%, var(--cin-bg-card) 90%);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 36px 32px;
            position: relative;
            overflow: hidden;
        }
        .article-header-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--cin-gold), var(--cin-crimson));
        }
        .article-meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 184, 0, 0.1);
            color: var(--cin-gold);
            border: 1px solid rgba(255, 184, 0, 0.25);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .article-main-title {
            font-size: clamp(1.75rem, 3.2vw, 2.45rem);
            font-weight: 800;
            line-height: 1.35;
            color: #fff;
            margin: 18px 0 20px;
        }
        .article-quote-lead {
            background: rgba(27, 31, 44, 0.7);
            border-left: 4px solid var(--cin-gold);
            padding: 16px 20px;
            border-radius: 0 var(--cin-radius) var(--cin-radius) 0;
            color: var(--cin-text-muted);
            font-size: 0.96rem;
            line-height: 1.75;
        }
        .article-content-body {
            font-size: 1.05rem;
            line-height: 1.85;
            color: #E2E4E9;
            letter-spacing: 0.2px;
        }
        .article-content-body p {
            margin-bottom: 22px;
        }
        .article-content-body h2 {
            font-size: 1.45rem;
            font-weight: 700;
            color: #fff;
            margin: 36px 0 16px;
            padding-left: 12px;
            border-left: 4px solid var(--cin-crimson);
            display: flex;
            align-items: center;
        }
        .article-content-body h3 {
            font-size: 1.22rem;
            font-weight: 600;
            color: var(--cin-gold);
            margin: 28px 0 14px;
        }
        .article-content-body ul, .article-content-body ol {
            padding-left: 24px;
            margin-bottom: 22px;
            color: var(--cin-text-muted);
        }
        .article-content-body li {
            margin-bottom: 8px;
        }
        .article-content-body blockquote {
            background: #111319;
            border-left: 4px solid var(--cin-gold);
            padding: 16px 22px;
            margin: 24px 0;
            border-radius: 4px;
            color: var(--cin-text-muted);
            font-style: normal;
        }
        .article-summary-card {
            background: #151821;
            border: 1px dashed var(--cin-border-light);
            border-radius: var(--cin-radius);
            padding: 24px;
            position: relative;
        }
        .article-summary-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20px;
            right: 20px;
            height: 1px;
            background: repeating-linear-gradient(90deg, var(--cin-gold) 0, var(--cin-gold) 6px, transparent 6px, transparent 12px);
        }
        .article-nav-card {
            background: var(--cin-bg-card-alt);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 18px 20px;
            transition: all 0.25s ease;
            height: 100%;
        }
        .article-nav-card:hover {
            border-color: var(--cin-gold);
            transform: translateY(-2px);
        }
        .cin-footer {
            background: #090A0E;
            border-top: 1px solid var(--cin-border);
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .cin-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 800;
            color: #fff;
        }
        .cin-brand-icon {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--cin-gold), var(--cin-crimson));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 0.95rem;
        }
        .cin-footer-title {
            font-size: 0.98rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }
        .cin-footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 24px;
            height: 2px;
            background: var(--cin-gold);
        }
        .cin-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cin-footer-links li {
            margin-bottom: 10px;
        }
        .cin-footer-links a {
            color: var(--cin-text-muted);
            font-size: 0.88rem;
            transition: color 0.2s ease;
        }
        .cin-footer-links a:hover {
            color: var(--cin-gold);
            padding-left: 3px;
        }
        .cin-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            margin-top: 40px;
            font-size: 0.82rem;
            color: var(--cin-text-dim);
        }
        @media (max-width: 768px) {
            .article-header-box {
                padding: 24px 18px;
            }
            .article-main-title {
                font-size: 1.55rem;
            }
        }

/* roulang page: category1 */
:root {
            --cin-bg-main: #0D0E12;
            --cin-bg-card: #151821;
            --cin-bg-card-alt: #1B1F2C;
            --cin-border: #262B3D;
            --cin-border-light: #363C52;
            --cin-gold: #FFB800;
            --cin-gold-glow: rgba(255, 184, 0, 0.25);
            --cin-crimson: #FF385C;
            --cin-crimson-glow: rgba(255, 56, 92, 0.3);
            --cin-text-main: #F8F9FA;
            --cin-text-muted: #9FA6B2;
            --cin-text-dim: #656C7A;
            --cin-radius: 8px;
            --cin-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }

        body {
            background-color: var(--cin-bg-main);
            color: var(--cin-text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.25s ease;
        }

        /* 顶部导航与大按钮 CTA */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(13, 14, 18, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--cin-border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.28rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cin-gold), var(--cin-crimson));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.1rem;
            box-shadow: 0 0 14px var(--cin-gold-glow);
        }

        .nav-link-custom {
            color: var(--cin-text-muted);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 16px;
            position: relative;
            transition: color 0.2s ease;
        }

        .nav-link-custom:hover, .nav-link-custom.active {
            color: #fff;
        }

        .nav-link-custom.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            background: var(--cin-gold);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--cin-gold);
        }

        .btn-cinema-cta {
            background: linear-gradient(135deg, var(--cin-gold) 0%, var(--cin-crimson) 100%);
            color: #0d0e12;
            font-size: 0.92rem;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 30px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 0 16px var(--cin-gold-glow);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .btn-cinema-cta:hover {
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px var(--cin-crimson-glow);
        }

        /* 基础与统一卡片 */
        .cin-card {
            background-color: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 24px;
            box-shadow: var(--cin-shadow);
            position: relative;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .cin-card:hover {
            transform: translateY(-4px);
            border-color: var(--cin-border-light);
            box-shadow: 0 10px 25px rgba(255, 184, 0, 0.12);
        }

        .cin-badge {
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .cin-badge-gold {
            background: rgba(255, 184, 0, 0.15);
            color: var(--cin-gold);
            border: 1px solid rgba(255, 184, 0, 0.3);
        }
        .cin-badge-crimson {
            background: rgba(255, 56, 92, 0.15);
            color: var(--cin-crimson);
            border: 1px solid rgba(255, 56, 92, 0.3);
        }

        /* 板块一：分类标题栏 (非Hero) */
        .cat-hero-bar {
            background: linear-gradient(180deg, #151824 0%, var(--cin-bg-main) 100%);
            border-bottom: 1px solid var(--cin-border);
            padding: 45px 0 35px;
            position: relative;
        }
        .cat-hero-bar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cin-gold), transparent);
            opacity: 0.5;
        }
        .cat-h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .cat-desc {
            color: var(--cin-text-muted);
            font-size: 1rem;
            max-width: 820px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* 板块二：交互筛选器 */
        .cat-filter-wrapper {
            background: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 16px 20px;
            margin-top: 25px;
            margin-bottom: 40px;
        }
        .filter-group {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .filter-label {
            font-size: 0.85rem;
            color: var(--cin-text-dim);
            font-weight: 600;
            min-width: 70px;
        }
        .filter-pill {
            font-size: 0.85rem;
            padding: 5px 14px;
            border-radius: 20px;
            background: #0d0e12;
            color: var(--cin-text-muted);
            border: 1px solid var(--cin-border);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .filter-pill:hover, .filter-pill.active {
            background: var(--cin-gold);
            color: #000;
            font-weight: 700;
            border-color: var(--cin-gold);
            box-shadow: 0 0 10px var(--cin-gold-glow);
        }

        /* 板块三：票根样式卡片与列表 */
        .ticket-card {
            background: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .ticket-card:hover {
            border-color: var(--cin-border-light);
            transform: translateY(-5px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
        }
        .ticket-top {
            padding: 22px 22px 16px;
            flex-grow: 1;
        }
        .ticket-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            font-size: 0.8rem;
            color: var(--cin-text-dim);
        }
        .ticket-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.45;
        }
        .ticket-card:hover .ticket-title {
            color: var(--cin-gold);
        }
        .ticket-summary {
            font-size: 0.9rem;
            color: var(--cin-text-muted);
            line-height: 1.6;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .ticket-notch {
            height: 1px;
            border-top: 1px dashed #2C3246;
            position: relative;
            margin: 0;
        }
        .ticket-notch::before, .ticket-notch::after {
            content: '';
            position: absolute;
            top: -7px;
            width: 14px;
            height: 14px;
            background-color: var(--cin-bg-main);
            border-radius: 50%;
            border: 1px solid var(--cin-border);
            z-index: 2;
        }
        .ticket-notch::before {
            left: -8px;
            border-left-color: transparent;
        }
        .ticket-notch::after {
            right: -8px;
            border-right-color: transparent;
        }
        .ticket-bottom {
            padding: 14px 22px;
            background: #11131a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }
        .ticket-btn {
            color: var(--cin-gold);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .ticket-card:hover .ticket-btn {
            transform: translateX(3px);
        }

        /* 板块四：分类指标透视 */
        .perf-panel {
            background: var(--cin-bg-card-alt);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .perf-circle {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.45rem;
            font-weight: 800;
            border: 4px solid var(--cin-border);
            position: relative;
        }
        .perf-circle.circle-gold {
            border-top-color: var(--cin-gold);
            border-right-color: var(--cin-gold);
            color: var(--cin-gold);
            box-shadow: 0 0 16px var(--cin-gold-glow);
        }
        .perf-circle.circle-crimson {
            border-top-color: var(--cin-crimson);
            border-right-color: var(--cin-crimson);
            color: var(--cin-crimson);
            box-shadow: 0 0 16px var(--cin-crimson-glow);
        }
        .perf-circle.circle-cyan {
            border-top-color: #00F0FF;
            border-right-color: #00F0FF;
            color: #00F0FF;
            box-shadow: 0 0 16px rgba(0, 240, 255, 0.25);
        }
        .perf-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .perf-desc {
            font-size: 0.88rem;
            color: var(--cin-text-muted);
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* 板块五：重点专题推荐横幅 */
        .spotlight-banner {
            background: linear-gradient(135deg, #1C202F 0%, #151821 100%);
            border: 1px solid var(--cin-border-light);
            border-radius: var(--cin-radius);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        .spotlight-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 184, 0, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        /* 板块六：专属 FAQ */
        .accordion-cin .accordion-item {
            background-color: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            margin-bottom: 12px;
            border-radius: var(--cin-radius) !important;
            overflow: hidden;
        }
        .accordion-cin .accordion-button {
            background-color: var(--cin-bg-card);
            color: #fff;
            font-weight: 600;
            font-size: 1.02rem;
            padding: 18px 24px;
            box-shadow: none;
        }
        .accordion-cin .accordion-button:not(.collapsed) {
            color: var(--cin-gold);
            background-color: var(--cin-bg-card-alt);
            border-bottom: 1px solid var(--cin-border);
        }
        .accordion-cin .accordion-button::after {
            filter: invert(1) brightness(0.8);
        }
        .accordion-cin .accordion-body {
            background-color: var(--cin-bg-card-alt);
            color: var(--cin-text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            padding: 20px 24px;
        }

        /* 板块七：转化与状态指引 */
        .bottom-action-strip {
            background: radial-gradient(circle at 50% 50%, #1a1e2b 0%, #101218 100%);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 35px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* 全局 Footer */
        .cin-footer {
            background-color: #08090C;
            border-top: 1px solid var(--cin-border);
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .cin-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .cin-brand-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--cin-gold), var(--cin-crimson));
            color: #000;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
        }
        .cin-brand-text {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
        }
        .cin-footer-title {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
        .cin-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cin-footer-links li {
            margin-bottom: 10px;
        }
        .cin-footer-links a {
            color: var(--cin-text-muted);
            font-size: 0.88rem;
            transition: color 0.2s ease;
        }
        .cin-footer-links a:hover {
            color: var(--cin-gold);
        }
        .footer-divider {
            border-top: 1px solid #1a1e2b;
            margin: 40px 0 25px;
        }

        @media (max-width: 991px) {
            .cat-h1 {
                font-size: 1.8rem;
            }
            .spotlight-banner {
                padding: 26px;
            }
        }

/* roulang page: category2 */
:root {
            --cin-bg-main: #0D0E12;
            --cin-bg-card: #151821;
            --cin-bg-card-alt: #1B1F2C;
            --cin-border: #262B3D;
            --cin-border-light: #363C52;
            --cin-gold: #FFB800;
            --cin-gold-glow: rgba(255, 184, 0, 0.25);
            --cin-crimson: #FF385C;
            --cin-crimson-glow: rgba(255, 56, 92, 0.3);
            --cin-text-main: #F8F9FA;
            --cin-text-muted: #9FA6B2;
            --cin-text-dim: #656C7A;
            --cin-radius: 8px;
            --cin-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        body {
            background-color: var(--cin-bg-main);
            color: var(--cin-text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.25s ease;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(13, 14, 18, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--cin-border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.28rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--cin-gold), var(--cin-crimson));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.1rem;
            box-shadow: 0 0 14px var(--cin-gold-glow);
        }
        .nav-link-custom {
            color: var(--cin-text-muted);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 16px;
            position: relative;
            transition: color 0.2s ease;
        }
        .nav-link-custom:hover, .nav-link-custom.active {
            color: #fff;
        }
        .nav-link-custom.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            background: var(--cin-gold);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--cin-gold);
        }
        .btn-cinema-cta {
            background: linear-gradient(135deg, var(--cin-gold) 0%, var(--cin-crimson) 100%);
            color: #0d0e12;
            font-size: 0.92rem;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 30px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 0 16px var(--cin-gold-glow);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .btn-cinema-cta:hover {
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px var(--cin-crimson-glow);
        }
        .cin-card {
            background-color: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: var(--cin-radius);
            padding: 24px;
            box-shadow: var(--cin-shadow);
            position: relative;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .cin-card:hover {
            transform: translateY(-4px);
            border-color: var(--cin-border-light);
            box-shadow: 0 10px 25px rgba(255, 184, 0, 0.12);
        }
        .section-header {
            margin-bottom: 32px;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--cin-gold);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            background: rgba(255, 184, 0, 0.08);
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid rgba(255, 184, 0, 0.2);
        }
        .section-title {
            font-size: 1.85rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
        }
        .section-desc {
            color: var(--cin-text-muted);
            font-size: 0.98rem;
            max-width: 680px;
        }

        /* 分类页特有板块样式 */
        .category-focus-bar {
            background: linear-gradient(90deg, #12151f 0%, #1a1e2b 50%, #12151f 100%);
            border-bottom: 1px solid var(--cin-border);
            padding: 46px 0;
            position: relative;
        }
        .category-focus-bar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            right: 20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--cin-gold), transparent);
        }
        .category-h1 {
            font-size: clamp(1.8rem, 3.2vw, 2.5rem);
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            color: #fff;
        }
        .category-badge-chip {
            background: rgba(255, 184, 0, 0.12);
            color: var(--cin-gold);
            border: 1px solid rgba(255, 184, 0, 0.3);
            border-radius: 4px;
            padding: 4px 10px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .filter-ribbon {
            background: #11141c;
            border-bottom: 1px solid var(--cin-border);
            padding: 16px 0;
        }
        .filter-label {
            font-size: 0.84rem;
            color: var(--cin-text-dim);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        .filter-btn {
            background: #191d28;
            border: 1px solid var(--cin-border);
            color: var(--cin-text-muted);
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 0.85rem;
            transition: all 0.2s ease;
        }
        .filter-btn:hover, .filter-btn.active {
            background: rgba(255, 184, 0, 0.15);
            color: var(--cin-gold);
            border-color: var(--cin-gold);
        }
        .ticket-card {
            background: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: 8px;
            padding: 22px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }
        .ticket-card:hover {
            transform: translateY(-4px);
            border-color: var(--cin-gold);
        }
        .ticket-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px dashed #282f42;
            padding-bottom: 14px;
            margin-bottom: 14px;
        }
        .ticket-signal {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            color: #10b981;
            font-weight: 600;
        }
        .ticket-signal-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            box-shadow: 0 0 6px #10b981;
        }
        .ticket-title {
            font-size: 1.15rem;
            font-weight: 700;
            line-height: 1.45;
            color: #fff;
            margin-bottom: 10px;
        }
        .ticket-desc {
            font-size: 0.9rem;
            color: var(--cin-text-muted);
            line-height: 1.6;
            margin-bottom: 16px;
            flex-grow: 1;
        }
        .ticket-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.82rem;
            color: var(--cin-text-dim);
            border-top: 1px solid #1f2535;
            padding-top: 12px;
        }
        .load-more-wrap {
            text-align: center;
            margin-top: 36px;
        }
        .btn-load-more {
            background: #181d29;
            border: 1px solid var(--cin-border-light);
            color: var(--cin-text-main);
            padding: 10px 32px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.25s ease;
        }
        .btn-load-more:hover {
            border-color: var(--cin-gold);
            color: var(--cin-gold);
            background: #1f2537;
        }
        .metric-dial-card {
            background: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: 8px;
            padding: 28px 20px;
            text-align: center;
        }
        .circle-progress-wrap {
            position: relative;
            width: 110px;
            height: 110px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .circle-progress-wrap svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }
        .circle-bg {
            fill: none;
            stroke: #1c2130;
            stroke-width: 8;
        }
        .circle-val {
            fill: none;
            stroke: var(--cin-gold);
            stroke-width: 8;
            stroke-linecap: round;
        }
        .circle-val-crimson {
            stroke: var(--cin-crimson);
        }
        .circle-text {
            position: absolute;
            font-size: 1.35rem;
            font-weight: 800;
            color: #fff;
            font-family: monospace;
        }
        .promo-banner {
            background: linear-gradient(135deg, #181c28 0%, #1f2537 60%, #151824 100%);
            border: 1px solid var(--cin-border-light);
            border-radius: 10px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        .promo-banner::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 320px;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .cin-accordion-item {
            background-color: var(--cin-bg-card);
            border: 1px solid var(--cin-border);
            border-radius: 6px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        .cin-accordion-header {
            width: 100%;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.05rem;
            font-weight: 700;
            padding: 18px 24px;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .cin-accordion-body {
            padding: 0 24px 20px;
            color: var(--cin-text-muted);
            font-size: 0.95rem;
            line-height: 1.75;
            border-top: 1px dashed #222838;
            padding-top: 16px;
        }
        .cta-anchor-box {
            background: radial-gradient(circle at center, #1b2030 0%, #12141c 100%);
            border: 1px solid var(--cin-border-light);
            border-radius: 8px;
            padding: 36px 30px;
            text-align: center;
        }

        /* 页脚 */
        .cin-footer {
            background-color: #08090C;
            border-top: 1px solid var(--cin-border);
            padding: 60px 0 24px;
            margin-top: 70px;
        }
        .cin-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .cin-brand-icon {
            width: 32px;
            height: 32px;
            background: var(--cin-gold);
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        .cin-brand-text {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
        }
        .cin-footer-title {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }
        .cin-footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .cin-footer-links li {
            margin-bottom: 10px;
        }
        .cin-footer-links a {
            color: var(--cin-text-muted);
            font-size: 0.88rem;
            transition: color 0.2s ease;
        }
        .cin-footer-links a:hover {
            color: var(--cin-gold);
        }
        .cin-footer-bottom {
            border-top: 1px solid #1a1e2b;
            padding-top: 24px;
            margin-top: 40px;
            font-size: 0.8rem;
            color: var(--cin-text-dim);
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
