/* roulang page: index */
:root {
            --bg-deep: #0D0E12;
            --bg-surface: #14161D;
            --bg-card: #1A1D26;
            --bg-elevated: #222633;
            --brand-gold: #E5A93C;
            --brand-red: #E50914;
            --text-main: #F5F7FA;
            --text-muted: #A0A5B5;
            --border-line: rgba(255, 255, 255, 0.08);
            --border-focus: rgba(229, 169, 60, 0.4);
            --radius-sm: 4px;
            --radius-md: 6px;
            --container-max: 1280px;
            --shadow-glow: 0 10px 30px rgba(229, 169, 60, 0.15);
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-deep);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
        img { display: block; max-width: 100%; height: auto; object-fit: cover; }
        button, input { font-family: inherit; }

        .site-container {
            max-width: var(--container-max);
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* 顶部杂志刊头导航 */
        .masthead-header {
            background-color: rgba(13, 14, 18, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-line);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .masthead-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-line);
        }
        .brand-logo-wrap {
            display: flex;
            align-items: baseline;
            gap: 12px;
        }
        .brand-name {
            font-size: 26px;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .brand-name::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 22px;
            background: var(--brand-red);
            border-radius: 2px;
        }
        .brand-sub {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--brand-gold);
            font-weight: 600;
        }
        .header-status-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            background: var(--bg-surface);
            padding: 6px 14px;
            border-radius: 20px;
            border: 1px solid var(--border-line);
        }
        .live-dot {
            width: 8px;
            height: 8px;
            background-color: var(--brand-red);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--brand-red);
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.85); }
            100% { opacity: 1; transform: scale(1); }
        }

        .masthead-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 52px;
        }
        .nav-channel-list {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 32px;
            overflow-x: auto;
            white-space: nowrap;
        }
        .nav-channel-item a {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            padding: 14px 2px;
            position: relative;
            display: inline-block;
        }
        .nav-channel-item a:hover,
        .nav-channel-item.active a {
            color: var(--text-main);
        }
        .nav-channel-item.active a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--brand-gold);
        }
        .nav-meta-tools {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .tool-link {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }
        .tool-link:hover { color: var(--brand-gold); }

        /* 通用板块与排版 */
        .page-section {
            padding: 96px 0;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .section-header-block {
            margin-bottom: 56px;
        }
        .section-tag-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .kicker-tag {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--brand-gold);
            background: rgba(229, 169, 60, 0.1);
            padding: 3px 10px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(229, 169, 60, 0.25);
        }
        .section-serial-num {
            font-family: Georgia, serif;
            font-size: 13px;
            color: var(--text-muted);
            font-style: italic;
        }
        .section-primary-title {
            font-size: 36px;
            font-weight: 900;
            line-height: 1.25;
            color: var(--text-main);
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .section-lead-summary {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 820px;
            line-height: 1.75;
        }

        /* 按钮与交互徽章 */
        .btn-brand-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: var(--brand-gold);
            color: #000;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--brand-gold);
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .btn-brand-primary:hover {
            background-color: #f1b74e;
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }
        .btn-brand-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: transparent;
            color: var(--text-main);
            font-weight: 600;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-line);
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .btn-brand-outline:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        /* 影视海报卡片体系 */
        .media-poster-card {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-line);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .media-poster-card:hover {
            transform: translateY(-6px);
            border-color: rgba(229, 169, 60, 0.4);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
        }
        .poster-frame {
            aspect-ratio: 2 / 3;
            width: 100%;
            position: relative;
            overflow: hidden;
            background-color: #111;
        }
        .poster-frame img {
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        .media-poster-card:hover .poster-frame img {
            transform: scale(1.05);
        }
        .poster-overlay-badges {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2;
        }
        .spec-badge {
            font-size: 11px;
            font-weight: 800;
            padding: 3px 6px;
            border-radius: 2px;
            letter-spacing: 0.5px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        .spec-badge.hdr-gold {
            border-color: var(--brand-gold);
            color: var(--brand-gold);
        }
        .score-pill {
            background: rgba(229, 9, 20, 0.85);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            padding: 2px 7px;
            border-radius: 2px;
        }
        .card-caption-block {
            padding: 16px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .media-card-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .media-card-synopsis {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 12px;
            flex: 1;
        }
        .media-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: rgba(160, 165, 181, 0.8);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 10px;
        }

        /* 1. Hero 价值主张 */
        .hero-stage-section {
            padding: 72px 0 96px 0;
            position: relative;
            background-image: linear-gradient(180deg, rgba(13, 14, 18, 0.4) 0%, rgba(13, 14, 18, 0.95) 80%, var(--bg-deep) 100%), url('/assets/images/93b36d97461813fa.jpg');
            background-size: cover;
            background-position: center top;
        }
        .hero-layout-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 48px;
            align-items: center;
        }
        .hero-h1-statement {
            font-size: 46px;
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 24px;
            color: #fff;
        }
        .hero-h1-statement span {
            color: var(--brand-gold);
            display: inline;
        }
        .hero-narrative-paragraph {
            font-size: 17px;
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 36px;
        }
        .hero-cta-cluster {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .hero-metric-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding-top: 28px;
            border-top: 1px solid var(--border-line);
        }
        .hero-metric-val {
            font-size: 26px;
            font-weight: 900;
            color: var(--brand-gold);
            line-height: 1;
            margin-bottom: 6px;
        }
        .hero-metric-label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }
        .hero-interactive-screen {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
            overflow: hidden;
            position: relative;
        }
        .screen-topbar {
            background: #11131a;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border-line);
        }
        .screen-lights {
            display: flex;
            gap: 6px;
        }
        .screen-light {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #2f3442;
        }
        .screen-light:nth-child(1) { background: #e50914; }
        .screen-light:nth-child(2) { background: #e5a93c; }
        .screen-light:nth-child(3) { background: #22c55e; }
        .screen-code {
            font-family: monospace;
            font-size: 11px;
            color: var(--text-muted);
        }
        .screen-preview-image {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .screen-preview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .playback-hud-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px;
            background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, transparent 100%);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        /* 2. 功能分组矩阵 */
        .features-grid-quad {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .feature-cell {
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            position: relative;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }
        .feature-cell:hover {
            transform: translateY(-4px);
            border-color: var(--brand-gold);
        }
        .feature-glyph-slot {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: rgba(229, 169, 60, 0.12);
            color: var(--brand-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 900;
            margin-bottom: 20px;
            border: 1px solid rgba(229, 169, 60, 0.25);
        }
        .feature-item-heading {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
        }
        .feature-item-text {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
        }

        /* 3. 热门分类入口 (全览分流) */
        .category-gallery-shelf {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .category-portal-card {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-line);
            display: block;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .category-portal-card:hover {
            transform: translateY(-6px);
            border-color: var(--brand-gold);
        }
        .portal-poster-slot {
            aspect-ratio: 4 / 3;
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        .portal-poster-slot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .category-portal-card:hover .portal-poster-slot img {
            transform: scale(1.08);
        }
        .portal-info-box {
            padding: 16px;
        }
        .portal-name-row {
            font-size: 16px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .portal-caption {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 12px;
        }
        .portal-link-arrow {
            font-size: 12px;
            color: var(--brand-gold);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* 4. 使用场景切片 */
        .scenarios-triad-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .scenario-showcase-box {
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        .scenario-hero-image {
            aspect-ratio: 16 / 9;
            width: 100%;
            overflow: hidden;
        }
        .scenario-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .scenario-meta-body {
            padding: 24px;
        }
        .scenario-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 10px;
        }
        .scenario-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .spec-specs-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-top: 1px solid var(--border-line);
            padding-top: 16px;
        }
        .spec-specs-item {
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            color: var(--text-muted);
        }
        .spec-specs-item strong {
            color: var(--text-main);
            font-weight: 600;
        }

        /* 5. 截图/技术演示 */
        .tech-demo-console {
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-md);
            padding: 40px;
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 40px;
            align-items: center;
        }
        .console-viewport {
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            background: #000;
        }
        .console-viewport img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }
        .console-specs-breakdown {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .tech-point-row {
            border-left: 2px solid var(--brand-gold);
            padding-left: 16px;
        }
        .tech-point-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        .tech-point-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* 6. 独家收录/影视档案展示 */
        .exclusive-grid-sextet {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 18px;
        }

        /* 7. 套餐与特权方案对比 */
        .pricing-tier-trio {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            align-items: stretch;
        }
        .tier-plan-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-md);
            padding: 36px 28px;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .tier-plan-card.featured-gold {
            border-color: var(--brand-gold);
            background: linear-gradient(180deg, rgba(229, 169, 60, 0.08) 0%, var(--bg-surface) 100%);
        }
        .tier-plan-card.featured-gold::before {
            content: "年度力荐放映席位";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand-gold);
            color: #000;
            font-size: 11px;
            font-weight: 800;
            padding: 2px 12px;
            border-radius: 12px;
            letter-spacing: 0.5px;
        }
        .tier-level-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .tier-level-caption {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        .tier-price-row {
            font-size: 36px;
            font-weight: 900;
            color: var(--text-main);
            margin-bottom: 24px;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }
        .tier-price-row span {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-muted);
        }
        .tier-features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 32px;
            flex: 1;
        }
        .tier-feature-item {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
align-items: center;
            gap: 10px;
        }
        .tier-feature-item::before {
            content: "✓";
            color: var(--brand-gold);
            font-weight: 900;
        }

        /* 8. 影迷评价墙 */
        .reviews-masonry-trio {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .review-card-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-md);
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .review-quote-text {
            font-size: 14px;
            line-height: 1.7;
            color: #d1d5db;
            margin-bottom: 20px;
            position: relative;
        }
        .review-author-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 16px;
        }
        .review-avatar-glyph {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #252a38;
            color: var(--brand-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 15px;
        }
        .review-user-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-main);
        }
        .review-user-tag {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* 9. 量化指标数据条 */
        .metrics-quad-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-md);
            padding: 40px 32px;
        }
        .metric-cell-unit {
            border-right: 1px solid var(--border-line);
            padding-right: 20px;
        }
        .metric-cell-unit:last-child {
            border-right: none;
            padding-right: 0;
        }
        .metric-big-num {
            font-size: 40px;
            font-weight: 900;
            color: var(--brand-gold);
            line-height: 1.1;
            margin-bottom: 8px;
            font-family: Georgia, -apple-system, serif;
        }
        .metric-item-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .metric-sub-detail {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* 10. 前沿资讯与影视日历 */
        .journal-duo-layout {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 32px;
        }
        .journal-spotlight-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-md);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .spotlight-cover-wrapper {
            aspect-ratio: 16 / 9;
            width: 100%;
            overflow: hidden;
        }
        .spotlight-cover-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .spotlight-body-copy {
            padding: 28px;
        }
        .spotlight-date-tag {
            font-size: 12px;
            color: var(--brand-gold);
            font-weight: 700;
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        .spotlight-heading {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 12px;
            line-height: 1.35;
        }
        .spotlight-abstract {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .journal-compact-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .journal-mini-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            transition: border-color 0.25s ease;
        }
        .journal-mini-item:hover {
            border-color: rgba(229, 169, 60, 0.4);
        }
        .mini-date-badge {
            font-size: 11px;
            color: var(--text-muted);
        }
        .mini-title-line {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.4;
        }
        .mini-synopsis-line {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* 11. FAQ 手风琴 */
        .faq-accordion-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-qa-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-md);
            padding: 24px 28px;
        }
        .faq-question-text {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .faq-answer-paragraph {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.75;
        }

        /* 12. 终极收口行动区 */
        .final-cta-banner {
            background: linear-gradient(135deg, #181b24 0%, #0d0e12 100%);
            border: 1px solid rgba(229, 169, 60, 0.3);
            border-radius: var(--radius-md);
            padding: 64px 40px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
        }
        .final-cta-banner::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 30%;
            background: radial-gradient(circle at 100% 50%, rgba(229, 169, 60, 0.08), transparent 70%);
            pointer-events: none;
        }
        .final-cta-heading {
            font-size: 36px;
            font-weight: 900;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .final-cta-caption {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto 36px auto;
            line-height: 1.7;
        }
        .cta-action-center {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cta-guarantee-row {
            display: flex;
            justify-content: center;
            gap: 28px;
            margin-top: 28px;
            font-size: 12px;
            color: var(--text-muted);
        }

        /* 统一页脚 */
        .masthead-footer {
            background-color: #08090b;
            border-top: 1px solid var(--border-line);
            padding: 72px 0 32px 0;
        }
        .footer-matrix-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 56px;
        }
        .footer-brand-title {
            font-size: 20px;
            font-weight: 900;
            color: var(--text-main);
            margin-bottom: 14px;
        }
        .footer-manifesto {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.75;
            max-width: 340px;
            margin-bottom: 20px;
        }
        .footer-col-title {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }
        .footer-link-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-link-list a {
            font-size: 13px;
            color: var(--text-muted);
        }
        .footer-link-list a:hover {
            color: var(--brand-gold);
        }
        .footer-bottom-bar {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: rgba(160, 165, 181, 0.6);
            flex-wrap: wrap;
            gap: 12px;
        }

        /* 响应式断点适配 */
        @media (max-width: 1024px) {
            .hero-layout-grid { grid-template-columns: 1fr; gap: 40px; }
            .features-grid-quad { grid-template-columns: repeat(2, 1fr); }
            .category-gallery-shelf { grid-template-columns: repeat(3, 1fr); }
            .exclusive-grid-sextet { grid-template-columns: repeat(3, 1fr); }
            .pricing-tier-trio { grid-template-columns: 1fr; }
            .reviews-masonry-trio { grid-template-columns: 1fr; }
            .metrics-quad-strip { grid-template-columns: repeat(2, 1fr); gap: 32px; }
            .journal-duo-layout { grid-template-columns: 1fr; }
            .tech-demo-console { grid-template-columns: 1fr; padding: 24px; }
            .footer-matrix-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 640px) {
            .page-section { padding: 60px 0; }
            .hero-stage-section { padding: 48px 0 64px 0; }
            .hero-h1-statement { font-size: 32px; }
            .section-primary-title { font-size: 26px; }
            .features-grid-quad { grid-template-columns: 1fr; }
            .category-gallery-shelf { grid-template-columns: repeat(2, 1fr); }
            .scenarios-triad-grid { grid-template-columns: 1fr; }
            .exclusive-grid-sextet { grid-template-columns: repeat(2, 1fr); }
            .metrics-quad-strip { grid-template-columns: 1fr; }
            .metric-cell-unit { border-right: none; border-bottom: 1px solid var(--border-line); padding-bottom: 20px; padding-right: 0; }
            .metric-cell-unit:last-child { border-bottom: none; }
            .footer-matrix-grid { grid-template-columns: 1fr; }
            .hero-metric-strip { grid-template-columns: 1fr; gap: 14px; }
        }

/* roulang page: category1 */
:root {
      --bg-deep: #0D0E12;
      --bg-surface: #14161D;
      --bg-card: #1A1D26;
      --bg-elevated: #222633;
      --brand-gold: #E5A93C;
      --brand-red: #E50914;
      --text-main: #F5F7FA;
      --text-muted: #A0A5B5;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(229, 169, 60, 0.4);
      --radius-sm: 4px;
      --radius-md: 6px;
      --container-max: 1280px;
      --shadow-glow: 0 10px 30px rgba(229, 169, 60, 0.15);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
    img { display: block; max-width: 100%; height: auto; object-fit: cover; }
    button, input { font-family: inherit; }
    .site-container {
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    /* 顶部杂志刊头导航 */
    .masthead-header {
      background-color: rgba(13, 14, 18, 0.95);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-line);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .masthead-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .brand-logo-wrap {
      display: flex;
      align-items: baseline;
      gap: 12px;
    }
    .brand-name {
      font-size: 26px;
      font-weight: 900;
      letter-spacing: -0.5px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .brand-name::before {
      content: "";
      display: inline-block;
      width: 5px;
      height: 22px;
      background: var(--brand-red);
      border-radius: 2px;
    }
    .brand-sub {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--brand-gold);
      font-weight: 600;
    }
    .header-status-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      background: var(--bg-surface);
      padding: 6px 14px;
      border-radius: 20px;
      border: 1px solid var(--border-line);
    }
    .live-dot {
      width: 8px;
      height: 8px;
      background-color: #10B981;
      border-radius: 50%;
      box-shadow: 0 0 8px #10B981;
    }
    .masthead-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 52px;
    }
    .nav-channel-list {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 32px;
      overflow-x: auto;
      white-space: nowrap;
    }
    .nav-channel-item a {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      padding: 14px 2px;
      position: relative;
      display: inline-block;
    }
    .nav-channel-item a:hover,
    .nav-channel-item.active a {
      color: var(--text-main);
    }
    .nav-channel-item.active a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background-color: var(--brand-gold);
    }
    .nav-meta-tools {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .tool-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-muted);
      cursor: pointer;
    }
    .tool-link:hover {
      color: var(--brand-gold);
    }

    /* 分类板块与页面层级 */
    .cat-section {
      padding: 64px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .kicker-tag {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--brand-gold);
      background: rgba(229, 169, 60, 0.1);
      padding: 3px 10px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(229, 169, 60, 0.25);
      display: inline-block;
      margin-bottom: 12px;
    }

    /* 板块一：分类刊头与导言 */
    .cat-masthead-hero {
      padding: 56px 0 40px;
      border-bottom: 1px solid var(--border-line);
      background: radial-gradient(circle at 80% 20%, rgba(229, 169, 60, 0.05), transparent 45%),
                  radial-gradient(circle at 10% 80%, rgba(229, 9, 20, 0.04), transparent 40%);
    }
    .cat-header-topline {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 20px;
    }
    .cat-h1 {
      font-size: 38px;
      font-weight: 900;
      letter-spacing: -0.5px;
      line-height: 1.25;
      margin-bottom: 16px;
      color: var(--text-main);
    }
    .cat-h1 span {
      color: var(--brand-gold);
    }
    .cat-desc {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 820px;
      line-height: 1.8;
    }
    .cat-meta-metrics {
      display: flex;
      gap: 24px;
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      padding: 16px 24px;
      border-radius: var(--radius-md);
    }
    .cat-metric-item {
      display: flex;
      flex-direction: column;
    }
    .cat-metric-val {
      font-size: 20px;
      font-weight: 800;
      color: var(--brand-gold);
      font-family: Georgia, serif;
    }
    .cat-metric-lbl {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* 板块二：多维动态筛选器 */
    .filter-deck-block {
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-line);
      padding: 24px;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-row:first-child {
      padding-top: 0;
    }
    .filter-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--brand-gold);
      width: 72px;
      flex-shrink: 0;
      line-height: 28px;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      flex-grow: 1;
    }
    .filter-pill {
      font-size: 13px;
      color: var(--text-muted);
      padding: 4px 14px;
      border-radius: var(--radius-sm);
      background: transparent;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.2s ease;
    }
    .filter-pill:hover {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.04);
    }
    .filter-pill.active {
      color: #000;
      background: var(--brand-gold);
      font-weight: 600;
    }

    /* 板块三：影视卡片网格主体 */
    .cat-grid-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
    }
    .cat-grid-title {
      font-size: 22px;
      font-weight: 800;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cat-grid-sub {
      font-size: 13px;
      color: var(--text-muted);
    }
    .movie-card-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .movie-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-line);
      position: relative;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
    }
    .movie-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-focus);
      box-shadow: var(--shadow-glow);
    }
    .movie-poster-wrap {
      position: relative;
      width: 100%;
      padding-top: 140%; /* 近似 2:3 纵向海报 */
      background-color: var(--bg-surface);
      overflow: hidden;
    }
    .movie-poster-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .movie-card:hover .movie-poster-img {
      transform: scale(1.04);
    }
    .badge-stream-type {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(13, 14, 18, 0.85);
      border: 1px solid rgba(229, 169, 60, 0.4);
      color: var(--brand-gold);
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--radius-sm);
      backdrop-filter: blur(8px);
      z-index: 2;
    }
    .badge-rating {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--brand-red);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: var(--radius-sm);
      z-index: 2;
    }
    .movie-info-wrap {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }
    .movie-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-meta-tags {
      display: flex;
      gap: 8px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .movie-desc-snip {
      font-size: 12px;
      color: #8c92a4;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 14px;
    }
    .movie-footer-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 12px;
      font-size: 12px;
    }
    .movie-bitrate {
      color: var(--brand-gold);
      font-weight: 600;
    }
    .movie-play-action {
      color: var(--text-main);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .cat-pagination-wrap {
      margin-top: 48px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
    }
    .cat-page-btn {
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-line);
      background: var(--bg-surface);
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .cat-page-btn:hover {
      border-color: var(--brand-gold);
      color: var(--text-main);
    }
    .cat-page-btn.active {
      background: var(--brand-gold);
      color: #000;
      border-color: var(--brand-gold);
    }

    /* 板块四：评审团重磅力荐横幅 */
    .spotlight-banner {
      background: linear-gradient(135deg, var(--bg-surface) 0%, #171a24 100%);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      align-items: center;
    }
    .spotlight-content {
      padding: 48px 40px;
    }
    .spotlight-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--brand-red);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 12px;
    }
    .spotlight-title {
      font-size: 28px;
      font-weight: 900;
      line-height: 1.3;
      margin-bottom: 16px;
    }
    .spotlight-quote {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
      border-left: 2px solid var(--brand-gold);
      padding-left: 16px;
      margin-bottom: 24px;
      font-style: italic;
    }
    .spotlight-specs {
      display: flex;
      gap: 20px;
      margin-bottom: 28px;
      font-size: 13px;
      color: var(--text-main);
    }
    .spotlight-specs span strong {
      color: var(--brand-gold);
    }
    .spotlight-media {
      height: 100%;
      min-height: 360px;
      position: relative;
    }
    .spotlight-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .spotlight-media-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--bg-surface) 0%, transparent 40%);
    }

    /* 板块五：题材深度影视漫评 */
    .critique-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .critique-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .critique-card:hover {
      border-color: rgba(229, 169, 60, 0.3);
      transform: translateY(-3px);
    }
    .critique-thumb {
      height: 180px;
      width: 100%;
      position: relative;
    }
    .critique-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .critique-body {
      padding: 20px;
    }
    .critique-tag {
      font-size: 11px;
      color: var(--brand-gold);
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
    }
    .critique-title {
      font-size: 17px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 10px;
      color: var(--text-main);
    }
    .critique-excerpt {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 板块六：分类专题特刊与片单矩阵 */
    .topics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .topic-item-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      padding: 20px;
      border-radius: var(--radius-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 140px;
      transition: all 0.25s ease;
    }
    .topic-item-card:hover {
      border-color: var(--brand-gold);
      background: var(--bg-elevated);
    }
    .topic-name {
      font-size: 16px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .topic-detail {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .topic-count {
      font-size: 12px;
      color: var(--brand-gold);
      font-weight: 700;
      align-self: flex-start;
      margin-top: 12px;
    }

    /* 板块七：专属观影放映技术说明 */
    .tech-advisory-box {
      background: var(--bg-card);
      border-left: 3px solid var(--brand-gold);
      border-top: 1px solid var(--border-line);
      border-right: 1px solid var(--border-line);
      border-bottom: 1px solid var(--border-line);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 32px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .advisory-item h4 {
      font-size: 15px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .advisory-item h4::before {
      content: "";
      width: 4px;
      height: 14px;
      background: var(--brand-gold);
      display: inline-block;
    }
    .advisory-item p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 按钮通用 */
    .btn-brand-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background-color: var(--brand-gold);
      color: #000;
      font-weight: 700;
      font-size: 14px;
      padding: 10px 22px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--brand-gold);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-brand-primary:hover {
      background-color: #f1b74e;
      transform: translateY(-2px);
      box-shadow: var(--shadow-glow);
    }
    .btn-brand-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background-color: transparent;
      color: var(--text-main);
      font-weight: 600;
      font-size: 14px;
      padding: 10px 22px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-line);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-brand-outline:hover {
      border-color: rgba(255, 255, 255, 0.3);
      background-color: rgba(255, 255, 255, 0.05);
    }

    /* 页脚 */
    .masthead-footer {
      background-color: #090a0d;
      border-top: 1px solid var(--border-line);
      padding: 64px 0 32px;
      font-size: 13px;
    }
    .footer-matrix-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand-title {
      font-size: 20px;
      font-weight: 900;
      color: var(--text-main);
      margin-bottom: 12px;
    }
    .footer-manifesto {
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 360px;
      margin-bottom: 16px;
    }
    .footer-col-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }
    .footer-link-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-link-list a {
      color: var(--text-muted);
    }
    .footer-link-list a:hover {
      color: var(--brand-gold);
    }
    .footer-bottom-bar {
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #606575;
      font-size: 12px;
      flex-wrap: wrap;
      gap: 12px;
    }

    /* 响应式断点适配 */
    @media (max-width: 1024px) {
      .movie-card-grid { grid-template-columns: repeat(3, 1fr); }
      .spotlight-banner { grid-template-columns: 1fr; }
      .spotlight-media { min-height: 240px; }
      .topics-grid { grid-template-columns: repeat(2, 1fr); }
      .critique-grid { grid-template-columns: repeat(2, 1fr); }
      .tech-advisory-box { grid-template-columns: 1fr; gap: 20px; }
      .footer-matrix-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      .cat-h1 { font-size: 28px; }
      .movie-card-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .critique-grid { grid-template-columns: 1fr; }
      .topics-grid { grid-template-columns: 1fr; }
      .cat-header-topline { flex-direction: column; align-items: flex-start; }
      .cat-meta-metrics { width: 100%; justify-content: space-around; }
      .footer-matrix-grid { grid-template-columns: 1fr; }
      .masthead-nav { height: auto; padding: 12px 0; }
      .nav-channel-list { gap: 18px; }
      .nav-meta-tools { display: none; }
    }

/* roulang page: category2 */
:root {
  --bg-deep: #0D0E12;
  --bg-surface: #14161D;
  --bg-card: #1A1D26;
  --bg-elevated: #222633;
  --brand-gold: #E5A93C;
  --brand-red: #E50914;
  --text-main: #F5F7FA;
  --text-muted: #A0A5B5;
  --border-line: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(229, 169, 60, 0.4);
  --radius-sm: 4px;
  --radius-md: 6px;
  --container-max: 1280px;
  --shadow-glow: 0 10px 30px rgba(229, 169, 60, 0.15);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
button, input { font-family: inherit; }
.site-container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* 顶部杂志刊头导航 */
.masthead-header {
  background-color: rgba(13, 14, 18, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.masthead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.brand-logo-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.brand-name {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-name::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 22px;
  background: var(--brand-red);
  border-radius: 2px;
}
.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-gold);
  font-weight: 600;
}
.header-status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-line);
}
.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-red);
  display: inline-block;
}
.masthead-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.nav-channel-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
  overflow-x: auto;
  white-space: nowrap;
}
.nav-channel-item a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 14px 2px;
  position: relative;
  display: inline-block;
}
.nav-channel-item a:hover,
.nav-channel-item.active a {
  color: var(--text-main);
}
.nav-channel-item.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--brand-gold);
}
.nav-meta-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tool-link {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.2s;
}
.tool-link:hover {
  color: var(--brand-gold);
}

/* 分类页板块通用 */
.category-section {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cat-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-gold);
  background: rgba(229, 169, 60, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(229, 169, 60, 0.25);
  margin-bottom: 14px;
}

/* 板块1：分类刊头矮横幅 */
.cat-masthead-hero {
  padding: 48px 0 54px;
  background: linear-gradient(180deg, rgba(20, 22, 29, 0.9) 0%, rgba(13, 14, 18, 1) 100%);
  border-bottom: 1px solid var(--border-line);
  position: relative;
}
.cat-masthead-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.cat-masthead-title-col {
  max-width: 780px;
}
.cat-main-h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text-main);
  margin-bottom: 14px;
}
.cat-desc-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}
.cat-meta-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cat-meta-item {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  text-align: right;
  min-width: 130px;
}
.cat-meta-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cat-meta-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-gold);
  font-family: Georgia, serif;
}

/* 板块2：多维动态筛选控制栏 */
.cat-filter-section {
  padding: 32px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-line);
}
.filter-row-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  flex-wrap: wrap;
}
.filter-row-label {
  color: var(--text-muted);
  font-weight: 700;
  min-width: 60px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-row-label::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 12px;
  background: var(--brand-gold);
  border-radius: 1px;
}
.filter-options {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-opt-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  padding: 5px 14px;
  font-size: 13px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-opt-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}
.filter-opt-btn.active {
  color: #000;
  background: var(--brand-gold);
  font-weight: 700;
}

/* 板块3：流媒体海报主体网格 (4列) */
.drama-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  margin-top: 32px;
}
.drama-card {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.drama-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
  box-shadow: var(--shadow-glow);
}
.drama-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #000;
}
.drama-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.drama-card:hover .drama-poster-img {
  transform: scale(1.05);
}
.drama-badge-top-left {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(229, 9, 20, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}
.drama-badge-top-right {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--brand-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}
.drama-overlay-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 14, 18, 0.95) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.drama-ep-stat {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}
.drama-rating-num {
  font-size: 15px;
  font-weight: 900;
  color: var(--brand-gold);
  font-family: Georgia, serif;
}
.drama-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.drama-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.4;
}
.drama-meta-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.drama-desc-brief {
  font-size: 13px;
  color: #8c92a4;
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.drama-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}
.drama-play-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.drama-card:hover .drama-play-btn {
  color: #fff;
}
.drama-codec-tag {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

/* 分页控制条 */
.cat-pagination-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}
.page-ctrl-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  color: var(--text-main);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.page-ctrl-btn:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}
.page-ctrl-btn.active {
  background: var(--brand-gold);
  color: #000;
  border-color: var(--brand-gold);
}

/* 板块4：编辑精选力荐横幅 */
.curation-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.curation-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.curation-thumb {
  width: 140px;
  height: 190px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.curation-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.curation-content {
  display: flex;
  flex-direction: column;
}
.curation-label-tag {
  font-size: 11px;
  color: var(--brand-red);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.curation-h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}
.curation-summary {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.curation-tech-specs {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--brand-gold);
  font-weight: 600;
}

/* 板块5：题材深度漫评与剧评专栏 */
.review-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.review-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.review-author-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--brand-gold);
  border: 1px solid var(--border-line);
}
.review-author-meta h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}
.review-author-meta span {
  font-size: 11px;
  color: var(--text-muted);
}
.review-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}
.review-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 16px;
}
.review-tag {
  font-size: 11px;
  color: var(--brand-gold);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 10px;
}

/* 板块6：特色专题特刊与剧目分类云 */
.series-collection-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.series-col-card {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: all 0.2s;
}
.series-col-card:hover {
  border-color: rgba(229, 169, 60, 0.5);
  background: var(--bg-elevated);
}
.series-col-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}
.series-col-count {
  font-size: 12px;
  color: var(--brand-gold);
  margin-bottom: 10px;
}
.series-col-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 板块7：剧集观影小贴士与播控参数指引 */
.tips-container-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.tips-card {
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}
.tips-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-gold);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.tips-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}
.tips-para {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 页脚样式复用 */
.masthead-footer {
  background-color: #090a0d;
  border-top: 1px solid var(--border-line);
  padding: 80px 0 40px;
}
.footer-matrix-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 16px;
}
.footer-manifesto {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link-list a {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-link-list a:hover {
  color: var(--brand-gold);
}
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* 响应式断点 */
@media (max-width: 1024px) {
  .drama-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .series-collection-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .tips-container-grid {
    grid-template-columns: 1fr;
  }
  .footer-matrix-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .cat-masthead-hero {
    padding: 36px 0;
  }
  .cat-main-h1 {
    font-size: 28px;
  }
  .drama-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .curation-banner-grid {
    grid-template-columns: 1fr;
  }
  .review-col-grid {
    grid-template-columns: 1fr;
  }
  .series-collection-row {
    grid-template-columns: 1fr;
  }
  .cat-meta-badges {
    width: 100%;
  }
  .cat-meta-item {
    flex: 1;
    text-align: left;
  }
  .footer-matrix-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .nav-channel-list {
    gap: 20px;
  }
  .filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .drama-grid {
    grid-template-columns: 1fr;
  }
}

/* roulang page: category4 */
:root {
      --bg-deep: #0D0E12;
      --bg-surface: #14161D;
      --bg-card: #1A1D26;
      --bg-elevated: #222633;
      --brand-gold: #E5A93C;
      --brand-red: #E50914;
      --text-main: #F5F7FA;
      --text-muted: #A0A5B5;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(229, 169, 60, 0.4);
      --radius-sm: 4px;
      --radius-md: 6px;
      --container-max: 1280px;
      --shadow-glow: 0 10px 30px rgba(229, 169, 60, 0.15);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    img {
      display: block;
      max-width: 100%;
      height: auto;
      object-fit: cover;
    }
    button, input {
      font-family: inherit;
    }
    .site-container {
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
    }
    /* 顶部杂志刊头导航 */
    .masthead-header {
      background-color: rgba(13, 14, 18, 0.95);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-line);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .masthead-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .brand-logo-wrap {
      display: flex;
      align-items: baseline;
      gap: 12px;
    }
    .brand-name {
      font-size: 26px;
      font-weight: 900;
      letter-spacing: -0.5px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .brand-name::before {
      content: "";
      display: inline-block;
      width: 5px;
      height: 22px;
      background: var(--brand-red);
      border-radius: 2px;
    }
    .brand-sub {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--brand-gold);
      font-weight: 600;
    }
    .header-status-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      background: var(--bg-surface);
      padding: 6px 14px;
      border-radius: 20px;
      border: 1px solid var(--border-line);
    }
    .live-dot {
      width: 8px;
      height: 8px;
      background: #10B981;
      border-radius: 50%;
      box-shadow: 0 0 10px #10B981;
    }
    .masthead-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 52px;
    }
    .nav-channel-list {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 32px;
      overflow-x: auto;
      white-space: nowrap;
    }
    .nav-channel-item a {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      padding: 14px 2px;
      position: relative;
      display: inline-block;
    }
    .nav-channel-item a:hover,
    .nav-channel-item.active a {
      color: var(--text-main);
    }
    .nav-channel-item.active a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background-color: var(--brand-gold);
    }
    .nav-meta-tools {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .tool-link {
      font-size: 13px;
      color: var(--text-muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .tool-link:hover {
      color: var(--text-main);
    }

    /* 通用板块与排版 */
    .page-section {
      padding: 88px 0;
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .section-header-block {
      margin-bottom: 48px;
    }
    .section-tag-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .kicker-tag {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--brand-gold);
      background: rgba(229, 169, 60, 0.1);
      padding: 3px 10px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(229, 169, 60, 0.25);
    }
    .section-serial-num {
      font-family: Georgia, serif;
      font-size: 13px;
      color: var(--text-muted);
      font-style: italic;
    }
    .section-primary-title {
      font-size: 32px;
      font-weight: 900;
      line-height: 1.3;
      color: var(--text-main);
      letter-spacing: -0.5px;
      margin-bottom: 14px;
    }
    .section-lead-summary {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 860px;
      line-height: 1.7;
    }

    /* 按钮与交互徽章 */
    .btn-brand-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background-color: var(--brand-gold);
      color: #000;
      font-weight: 700;
      font-size: 15px;
      padding: 12px 26px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--brand-gold);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-brand-primary:hover {
      background-color: #f1b74e;
      transform: translateY(-2px);
      box-shadow: var(--shadow-glow);
    }
    .btn-brand-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background-color: transparent;
      color: var(--text-main);
      font-weight: 600;
      font-size: 15px;
      padding: 12px 26px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-line);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .btn-brand-outline:hover {
      border-color: rgba(255, 255, 255, 0.3);
      background-color: rgba(255, 255, 255, 0.05);
      transform: translateY(-2px);
    }

    /* 分类板块一：分类刊头与 H1 */
    .category-masthead-hero {
      padding: 64px 0 56px;
      background: radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, rgba(13, 14, 18, 0) 70%);
      border-bottom: 1px solid var(--border-line);
    }
    .cat-hero-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .cat-main-title {
      font-size: 40px;
      font-weight: 900;
      line-height: 1.2;
      color: var(--text-main);
      letter-spacing: -1px;
      margin-bottom: 20px;
    }
    .cat-main-title span {
      color: var(--brand-gold);
    }
    .cat-desc-text {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .cat-meta-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--border-line);
    }
    .metric-unit {
      display: flex;
      flex-direction: column;
    }
    .metric-unit-num {
      font-size: 22px;
      font-weight: 800;
      color: var(--text-main);
      font-family: Georgia, serif;
    }
    .metric-unit-lbl {
      font-size: 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .cat-banner-preview {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-line);
      box-shadow: 0 20px 40px rgba(0,0,0,0.6);
      aspect-ratio: 16/9;
    }
    .cat-banner-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .cat-banner-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--brand-red);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 2px;
      letter-spacing: 1px;
    }

    /* 分类板块二：多维动态筛选栏 */
    .filter-panel-section {
      padding: 32px 0;
      background-color: var(--bg-surface);
      border-bottom: 1px solid var(--border-line);
    }
    .filter-group-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .filter-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--brand-gold);
      min-width: 72px;
      letter-spacing: 0.5px;
    }
    .filter-items {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .filter-pill {
      font-size: 13px;
      padding: 5px 14px;
      border-radius: 20px;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-pill:hover,
    .filter-pill.active {
      color: var(--text-main);
      background: rgba(229, 169, 60, 0.12);
      border-color: var(--brand-gold);
    }

    /* 分类板块三：分类影视网格主体（动漫海报） */
    .anime-poster-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }
    .anime-media-card {
      background-color: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .anime-media-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-focus);
      box-shadow: var(--shadow-glow);
    }
    .card-poster-thumb {
      position: relative;
      aspect-ratio: 2/3;
      width: 100%;
      overflow: hidden;
      background: #000;
    }
    .card-poster-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .anime-media-card:hover .card-poster-thumb img {
      transform: scale(1.04);
    }
    .card-overlay-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--radius-sm);
      background: rgba(13, 14, 18, 0.85);
      border: 1px solid var(--border-line);
      color: var(--brand-gold);
      backdrop-filter: blur(4px);
    }
    .card-score-pill {
      position: absolute;
      bottom: 12px;
      right: 12px;
      font-size: 12px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 2px;
      background: var(--brand-red);
      color: #fff;
    }
    .card-meta-content {
      padding: 18px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .card-series-title {
      font-size: 17px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .card-extra-row {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .card-synopsis {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-action-bar {
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .card-play-tag {
      font-size: 12px;
      color: var(--brand-gold);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .pagination-bar-wrap {
      margin-top: 56px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
    }

    /* 分类板块四：分类榜单/编辑力荐横幅 */
    .anime-spotlight-feature {
      background: linear-gradient(135deg, var(--bg-surface) 0%, #171B26 100%);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .spotlight-left-meta {
      display: flex;
      flex-direction: column;
    }
    .spotlight-sub {
      font-size: 13px;
      font-weight: 800;
      color: var(--brand-red);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .spotlight-h2 {
      font-size: 28px;
      font-weight: 900;
      line-height: 1.3;
      margin-bottom: 16px;
      color: var(--text-main);
    }
    .spotlight-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 24px;
    }
    .spotlight-spec-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 28px;
    }
    .spec-item {
      background: rgba(0,0,0,0.3);
      padding: 12px;
      border-radius: var(--radius-sm);
      border-left: 2px solid var(--brand-gold);
    }
    .spec-item-key {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
    }
    .spec-item-val {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-main);
      margin-top: 4px;
    }
    .spotlight-media-frame {
      position: relative;
      border-radius: var(--radius-sm);
      overflow: hidden;
      aspect-ratio: 16/9;
      border: 1px solid var(--border-line);
    }
    .spotlight-media-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 分类板块五：题材深度影视漫评 */
    .article-digest-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .article-digest-card {
      background-color: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      flex-direction: column;
    }
    .digest-tag-line {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--brand-gold);
      font-weight: 700;
      margin-bottom: 12px;
    }
    .digest-heading {
      font-size: 18px;
      font-weight: 800;
      line-height: 1.4;
      color: var(--text-main);
      margin-bottom: 12px;
    }
    .digest-paragraph {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .digest-author-bar {
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--text-muted);
    }

    /* 分类板块六：专题特刊与主题标签云 */
    .theme-tags-matrix {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 24px;
    }
    .theme-tag-chip {
      background-color: var(--bg-surface);
      border: 1px solid var(--border-line);
      padding: 10px 20px;
      border-radius: var(--radius-sm);
      color: var(--text-main);
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.2s ease;
    }
    .theme-tag-chip:hover {
      border-color: var(--brand-gold);
      background: var(--bg-elevated);
      color: var(--brand-gold);
    }
    .theme-tag-count {
      font-size: 11px;
      background: rgba(255, 255, 255, 0.08);
      padding: 2px 6px;
      border-radius: 10px;
      color: var(--text-muted);
    }

    /* 分类板块七：专属观影播放说明 */
    .playback-specs-box {
      background-color: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 36px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .spec-guide-block h3 {
      font-size: 17px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .spec-guide-block h3::before {
      content: "";
      width: 4px;
      height: 16px;
      background-color: var(--brand-gold);
      border-radius: 2px;
    }
    .spec-guide-block p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 页脚 Footer */
    .masthead-footer {
      background-color: #08090C;
      border-top: 1px solid var(--border-line);
      padding: 72px 0 40px;
    }
    .footer-matrix-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }
    .footer-brand-title {
      font-size: 22px;
      font-weight: 900;
      color: var(--text-main);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-brand-title::before {
      content: "";
      display: inline-block;
      width: 4px;
      height: 18px;
      background: var(--brand-red);
      border-radius: 2px;
    }
    .footer-manifesto {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 380px;
      margin-bottom: 20px;
    }
    .footer-col-title {
      font-size: 14px;
      font-weight: 800;
      color: var(--text-main);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }
    .footer-link-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-link-list li a {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-link-list li a:hover {
      color: var(--brand-gold);
      padding-left: 4px;
    }
    .footer-bottom-bar {
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--text-muted);
      flex-wrap: wrap;
      gap: 16px;
    }

    /* 响应式适配 */
    @media (max-width: 1024px) {
      .anime-poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .cat-hero-grid {
        grid-template-columns: 1fr;
      }
      .footer-matrix-grid {
        grid-template-columns: 1fr 1fr;
      }
      .anime-spotlight-feature {
        grid-template-columns: 1fr;
      }
      .playback-specs-box {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .anime-poster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .article-digest-grid {
        grid-template-columns: 1fr;
      }
      .masthead-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .footer-matrix-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .cat-main-title {
        font-size: 28px;
      }
      .page-section {
        padding: 56px 0;
      }
    }
    @media (max-width: 480px) {
      .anime-poster-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .nav-channel-list {
        gap: 18px;
      }
    }

/* roulang page: category3 */
:root {
      --bg-deep: #0D0E12;
      --bg-surface: #14161D;
      --bg-card: #1A1D26;
      --bg-elevated: #222633;
      --brand-gold: #E5A93C;
      --brand-red: #E50914;
      --text-main: #F5F7FA;
      --text-muted: #A0A5B5;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(229, 169, 60, 0.4);
      --radius-sm: 4px;
      --radius-md: 6px;
      --container-max: 1280px;
      --shadow-glow: 0 10px 30px rgba(229, 169, 60, 0.15);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    img {
      display: block;
      max-width: 100%;
      height: auto;
      object-fit: cover;
    }
    button, input, select {
      font-family: inherit;
    }
    .site-container {
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
    }
    /* 顶部杂志刊头导航 */
    .masthead-header {
      background-color: rgba(13, 14, 18, 0.95);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-line);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .masthead-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .brand-logo-wrap {
      display: flex;
      align-items: baseline;
      gap: 12px;
    }
    .brand-name {
      font-size: 26px;
      font-weight: 900;
      letter-spacing: -0.5px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .brand-name::before {
      content: "";
      display: inline-block;
      width: 5px;
      height: 22px;
      background: var(--brand-red);
      border-radius: 2px;
    }
    .brand-sub {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--brand-gold);
      font-weight: 600;
    }
    .header-status-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      background: var(--bg-surface);
      padding: 6px 14px;
      border-radius: 20px;
      border: 1px solid var(--border-line);
    }
    .live-dot {
      width: 7px;
      height: 7px;
      background-color: #10B981;
      border-radius: 50%;
      box-shadow: 0 0 8px #10B981;
    }
    .masthead-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 52px;
    }
    .nav-channel-list {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 32px;
      overflow-x: auto;
      white-space: nowrap;
    }
    .nav-channel-item a {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      padding: 14px 2px;
      position: relative;
      display: inline-block;
    }
    .nav-channel-item a:hover,
    .nav-channel-item.active a {
      color: var(--text-main);
    }
    .nav-channel-item.active a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background-color: var(--brand-gold);
    }
    .nav-meta-tools {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .tool-link {
      font-size: 13px;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }
    .tool-link:hover {
      color: var(--brand-gold);
    }

    /* 分类矮横幅刊头（板块一） */
    .cat-masthead-section {
      background-color: var(--bg-surface);
      border-bottom: 1px solid var(--border-line);
      padding: 48px 0 40px;
      position: relative;
      background-image: radial-gradient(circle at 80% 20%, rgba(229, 169, 60, 0.08) 0%, transparent 60%);
    }
    .cat-meta-breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .cat-meta-breadcrumbs a:hover {
      color: var(--brand-gold);
    }
    .cat-title-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 18px;
    }
    .cat-masthead-h1 {
      font-size: 34px;
      font-weight: 900;
      letter-spacing: -0.5px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0;
    }
    .cat-badge-spec {
      background: linear-gradient(135deg, var(--brand-gold) 0%, #b87c1c 100%);
      color: #000;
      font-size: 12px;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: var(--radius-sm);
      letter-spacing: 0.5px;
    }
    .cat-stats-group {
      display: flex;
      align-items: center;
      gap: 24px;
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      padding: 10px 20px;
      border-radius: var(--radius-sm);
    }
    .cat-stat-unit {
      text-align: right;
    }
    .cat-stat-val {
      font-size: 18px;
      font-weight: 800;
      color: var(--brand-gold);
      font-variant-numeric: tabular-nums;
    }
    .cat-stat-lbl {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .cat-lead-summary {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 960px;
      line-height: 1.7;
    }

    /* 过滤栏（板块二） */
    .filter-panel-section {
      background: var(--bg-deep);
      border-bottom: 1px solid var(--border-line);
      padding: 20px 0;
    }
    .filter-group-wrap {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .filter-line {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 13px;
    }
    .filter-label {
      color: var(--text-muted);
      min-width: 64px;
      font-weight: 600;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .filter-items {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-pill {
      padding: 4px 12px;
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      font-size: 13px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-pill:hover {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.05);
    }
    .filter-pill.active {
      color: #000;
      background: var(--brand-gold);
      font-weight: 700;
    }

    /* 影视卡片主体网格（板块三） */
    .catalog-grid-section {
      padding: 60px 0 80px;
      border-bottom: 1px solid var(--border-line);
    }
    .section-title-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
    }
    .section-title-h2 {
      font-size: 22px;
      font-weight: 800;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-title-h2::before {
      content: "";
      width: 4px;
      height: 18px;
      background: var(--brand-gold);
      border-radius: 2px;
    }
    .section-desc-note {
      font-size: 13px;
      color: var(--text-muted);
    }
    .cinema-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }
    .cinema-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.3s ease;
    }
    .cinema-card:hover {
      border-color: var(--border-focus);
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.5);
    }
    .card-poster-box {
      position: relative;
      aspect-ratio: 16 / 10;
      width: 100%;
      background: #000;
      overflow: hidden;
    }
    .card-poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .cinema-card:hover .card-poster-box img {
      transform: scale(1.05);
    }
    .card-tag-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(13, 14, 18, 0.85);
      border: 1px solid rgba(229, 169, 60, 0.4);
      color: var(--brand-gold);
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 2px;
      letter-spacing: 0.5px;
      backdrop-filter: blur(4px);
    }
    .card-rate-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(229, 9, 20, 0.9);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 2px;
    }
    .card-body-meta {
      padding: 18px 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .card-title-text {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .card-tech-specs {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }
    .spec-pill {
      font-size: 10px;
      color: var(--text-muted);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 1px 6px;
      border-radius: 2px;
    }
    .card-summary-p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex-grow: 1;
    }
    .card-footer-action {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 12px;
      color: var(--text-muted);
    }
    .card-action-btn {
      color: var(--brand-gold);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .card-action-btn:hover {
      text-decoration: underline;
    }
    .pagination-bar-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .btn-action-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      color: var(--text-main);
      font-size: 14px;
      font-weight: 600;
      padding: 12px 32px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all 0.25s;
    }
    .btn-action-more:hover {
      border-color: var(--brand-gold);
      color: var(--brand-gold);
    }

    /* 编辑力荐与标杆横幅（板块四） */
    .curator-picks-section {
      padding: 80px 0;
      background: var(--bg-surface);
      border-bottom: 1px solid var(--border-line);
    }
    .curator-dual-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .curator-feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .curator-banner-img {
      height: 240px;
      position: relative;
    }
    .curator-banner-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .curator-pill-overlay {
      position: absolute;
      bottom: 16px;
      left: 16px;
      background: rgba(13, 14, 18, 0.85);
      border-left: 3px solid var(--brand-gold);
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-main);
      backdrop-filter: blur(8px);
    }
    .curator-content {
      padding: 24px;
    }
    .curator-title {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--text-main);
    }
    .curator-para {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .curator-tech-points {
      display: flex;
      gap: 16px;
      font-size: 12px;
      color: var(--brand-gold);
      font-weight: 600;
    }

    /* 题材深度影视漫评（板块五） */
    .critique-articles-section {
      padding: 80px 0;
      border-bottom: 1px solid var(--border-line);
    }
    .critique-tri-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .critique-box {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .critique-thumb-box {
      height: 180px;
      overflow: hidden;
    }
    .critique-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }
    .critique-box:hover .critique-thumb-box img {
      transform: scale(1.04);
    }
    .critique-detail {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .critique-tag-line {
      font-size: 11px;
      color: var(--brand-gold);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }
    .critique-heading {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .critique-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
      flex-grow: 1;
    }
    .critique-meta-bar {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 12px;
    }

    /* 分类专题特刊/延伸标签（板块六） */
    .topics-tags-section {
      padding: 80px 0;
      background: var(--bg-surface);
      border-bottom: 1px solid var(--border-line);
    }
    .topics-row-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .spec-feature-box {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 28px;
    }
    .spec-feature-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .spec-feature-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .spec-tag-cluster {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .spec-cluster-tag {
      background: var(--bg-deep);
      border: 1px solid var(--border-line);
      color: var(--text-muted);
      font-size: 13px;
      padding: 6px 14px;
      border-radius:var(--radius-sm);
      transition: all 0.25s;
    }
    .spec-cluster-tag:hover {
      border-color: var(--brand-gold);
      color: var(--brand-gold);
    }

    /* 分类专属观影小贴士/播放说明（板块七） */
    .playback-guide-section {
      padding: 80px 0;
      border-bottom: 1px solid var(--border-line);
    }
    .guide-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .guide-card-item {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .guide-icon-pill {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      background: rgba(229, 169, 60, 0.1);
      border: 1px solid rgba(229, 169, 60, 0.25);
      color: var(--brand-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .guide-item-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }
    .guide-item-para {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 常见视听疑问解答（板块八） */
    .faq-spec-section {
      padding: 80px 0;
      background: var(--bg-surface);
      border-bottom: 1px solid var(--border-line);
    }
    .faq-compact-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-compact-item {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-sm);
      padding: 22px 24px;
    }
    .faq-compact-q {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .faq-compact-q::before {
      content: "Q";
      font-family: Georgia, serif;
      font-size: 14px;
      color: var(--brand-gold);
      font-weight: 900;
    }
    .faq-compact-a {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 底部收尾 CTA（板块九） */
    .cta-cinema-section {
      padding: 80px 0;
      text-align: center;
      background: radial-gradient(circle at 50% 50%, rgba(229, 169, 60, 0.08) 0%, var(--bg-deep) 70%);
      border-bottom: 1px solid var(--border-line);
    }
    .cta-inner-card {
      max-width: 760px;
      margin: 0 auto;
    }
    .cta-cinema-title {
      font-size: 32px;
      font-weight: 900;
      color: var(--text-main);
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }
    .cta-cinema-sub {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.7;
    }
    .cta-buttons-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* 底部与版权信息 */
    .masthead-footer {
      background-color: var(--bg-deep);
      border-top: 1px solid var(--border-line);
      padding: 64px 0 32px;
    }
    .footer-matrix-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }
    .footer-brand-title {
      font-size: 22px;
      font-weight: 900;
      color: var(--text-main);
      margin-bottom: 14px;
    }
    .footer-manifesto {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 16px;
      max-width: 340px;
    }
    .footer-col-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .footer-link-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-link-list a {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-link-list a:hover {
      color: var(--brand-gold);
    }
    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-muted);
      flex-wrap: wrap;
      gap: 16px;
    }

    /* 响应式断点控制 */
    @media (max-width: 1024px) {
      .cinema-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .curator-dual-layout,
      .topics-row-grid {
        grid-template-columns: 1fr;
      }
      .guide-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-matrix-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 640px) {
      .masthead-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .cat-title-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .cat-stats-group {
        width: 100%;
        justify-content: space-between;
      }
      .cinema-cards-grid {
        grid-template-columns: 1fr;
      }
      .critique-tri-grid {
        grid-template-columns: 1fr;
      }
      .guide-cards-grid {
        grid-template-columns: 1fr;
      }
      .footer-matrix-grid {
        grid-template-columns: 1fr;
      }
      .nav-meta-tools {
        display: none;
      }
    }

/* roulang page: category5 */
:root {
      --bg-deep: #0D0E12;
      --bg-surface: #14161D;
      --bg-card: #1A1D26;
      --bg-elevated: #222633;
      --brand-gold: #E5A93C;
      --brand-red: #E50914;
      --text-main: #F5F7FA;
      --text-muted: #A0A5B5;
      --border-line: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(229, 169, 60, 0.4);
      --radius-sm: 4px;
      --radius-md: 6px;
      --container-max: 1280px;
      --shadow-glow: 0 10px 30px rgba(229, 169, 60, 0.15);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
      object-fit: cover;
    }

    button, input {
      font-family: inherit;
    }

    .site-container {
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    /* 顶部杂志刊头导航 */
    .masthead-header {
      background-color: rgba(13, 14, 18, 0.95);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-line);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .masthead-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .brand-logo-wrap {
      display: flex;
      align-items: baseline;
      gap: 12px;
    }

    .brand-name {
      font-size: 26px;
      font-weight: 900;
      letter-spacing: -0.5px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .brand-name::before {
      content: "";
      display: inline-block;
      width: 5px;
      height: 22px;
      background: var(--brand-red);
      border-radius: 2px;
    }

    .brand-sub {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--brand-gold);
      font-weight: 600;
    }

    .header-status-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      background: var(--bg-surface);
      padding: 6px 14px;
      border-radius: 20px;
      border: 1px solid var(--border-line);
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background-color: #10B981;
      border-radius: 50%;
      box-shadow: 0 0 8px #10B981;
    }

    .masthead-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 52px;
    }

    .nav-channel-list {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 32px;
      overflow-x: auto;
      white-space: nowrap;
    }

    .nav-channel-item a {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      padding: 14px 2px;
      position: relative;
      display: inline-block;
    }

    .nav-channel-item a:hover,
    .nav-channel-item.active a {
      color: var(--text-main);
    }

    .nav-channel-item.active a::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background-color: var(--brand-gold);
    }

    .nav-meta-tools {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .tool-link {
      font-size: 13px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    .tool-link:hover {
      color: var(--brand-gold);
    }

    /* 通用板块与排版 */
    .page-section {
      padding: 88px 0;
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .section-header-block {
      margin-bottom: 44px;
    }

    .section-tag-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .kicker-tag {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--brand-gold);
      background: rgba(229, 169, 60, 0.1);
      padding: 3px 10px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(229, 169, 60, 0.25);
    }

    .section-serial-num {
      font-family: Georgia, serif;
      font-size: 13px;
      color: var(--text-muted);
      font-style: italic;
    }

    .section-primary-title {
      font-size: 32px;
      font-weight: 900;
      line-height: 1.3;
      color: var(--text-main);
      letter-spacing: -0.5px;
      margin-bottom: 14px;
    }

    .section-lead-summary {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 860px;
      line-height: 1.8;
    }

    /* 分类板块一：专属刊头 */
    .category-masthead-section {
      padding: 64px 0 40px;
      background: radial-gradient(circle at 80% 20%, rgba(229, 169, 60, 0.06), transparent 50%), var(--bg-surface);
      border-bottom: 1px solid var(--border-line);
    }

    .cat-masthead-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .cat-badge-lead {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(229, 9, 20, 0.12);
      border: 1px solid rgba(229, 9, 20, 0.3);
      color: #ff5b5b;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
    }

    .cat-title-h1 {
      font-size: 42px;
      font-weight: 900;
      color: var(--text-main);
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .cat-title-h1 span {
      color: var(--brand-gold);
    }

    .cat-meta-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .meta-stat-item {
      display: flex;
      flex-direction: column;
    }

    .meta-stat-label {
      font-size: 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .meta-stat-value {
      font-size: 20px;
      font-weight: 800;
      color: var(--brand-gold);
      font-family: Georgia, serif;
    }

    .cat-spec-box {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      padding: 24px;
      position: relative;
    }

    .spec-item-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      font-size: 13px;
    }

    .spec-item-row:last-child {
      border-bottom: none;
    }

    .spec-k {
      color: var(--text-muted);
    }

    .spec-v {
      font-weight: 600;
      color: var(--text-main);
    }

    /* 分类板块二：动态筛选栏 */
    .filter-section {
      padding: 32px 0;
      background: var(--bg-deep);
      border-bottom: 1px solid var(--border-line);
    }

    .filter-wrapper {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .filter-row {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .filter-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--brand-gold);
      min-width: 72px;
    }

    .filter-options {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .filter-chip {
      font-size: 13px;
      padding: 4px 12px;
      border-radius: 4px;
      color: var(--text-muted);
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-chip:hover {
      color: var(--text-main);
      background: rgba(255, 255, 255, 0.04);
    }

    .filter-chip.active {
      background: var(--bg-card);
      color: var(--brand-gold);
      border-color: rgba(229, 169, 60, 0.3);
      font-weight: 600;
    }

    /* 分类板块三：主体影视网格 */
    .film-grid-layout {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }

    .film-card {
      background: var(--bg-card);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-line);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.3s ease;
    }

    .film-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-focus);
      box-shadow: var(--shadow-glow);
    }

    .film-poster-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 2/3;
      overflow: hidden;
      background: var(--bg-surface);
    }

    .film-poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .film-card:hover .film-poster-wrap img {
      transform: scale(1.04);
    }

    .badge-top-left {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(13, 14, 18, 0.85);
      backdrop-filter: blur(4px);
      color: var(--brand-gold);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 2px;
      border: 1px solid rgba(229, 169, 60, 0.3);
    }

    .badge-score {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--brand-red);
      color: #FFF;
      font-size: 12px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 2px;
      font-family: Georgia, serif;
    }

    .film-info-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }

    .film-title-text {
      font-size: 16px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .film-synopsis-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .film-spec-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 10px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .film-spec-tag {
      color: var(--brand-gold);
      font-weight: 600;
    }

    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 24px;
    }

    .page-btn {
      padding: 8px 16px;
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 600;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .page-btn:hover {
      color: var(--text-main);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .page-btn.active {
      background: var(--brand-gold);
      color: #000;
      border-color: var(--brand-gold);
    }

    /* 分类板块四：编辑力荐横幅 */
    .curator-feature-section {
      background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
    }

    .feature-wide-card {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .feature-img-box {
      position: relative;
      min-height: 380px;
    }

    .feature-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .feature-content-box {
      padding: 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .feature-badge-row {
      display: flex;
      gap: 10px;
      margin-bottom: 16px;
    }

    .feature-headline {
      font-size: 28px;
      font-weight: 900;
      color: var(--text-main);
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .feature-desc-para {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .feature-metrics-row {
      display: flex;
      gap: 32px;
      margin-bottom: 28px;
    }

    .f-metric-val {
      font-size: 22px;
      font-weight: 900;
      color: var(--brand-gold);
    }

    .f-metric-key {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* 分类板块五：深度影视漫评 */
    .critique-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .critique-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-sm);
      padding: 24px;
      display: flex;
      flex-direction: column;
      transition: all 0.25s ease;
    }

    .critique-card:hover {
      border-color: rgba(229, 169, 60, 0.3);
      transform: translateY(-2px);
    }

    .critique-author-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .author-initial {
      width: 36px;
      height: 36px;
      background: var(--bg-elevated);
      color: var(--brand-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      border-radius: 50%;
      border: 1px solid rgba(229, 169, 60, 0.2);
    }

    .author-name-text {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
    }

    .author-sub-tag {
      font-size: 12px;
      color: var(--text-muted);
    }

    .critique-title {
      font-size: 17px;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .critique-body {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      flex-grow: 1;
      margin-bottom: 16px;
    }

    .critique-foot {
      font-size: 12px;
      color: var(--brand-gold);
      font-weight: 600;
    }

    /* 分类板块六：专题特刊矩阵与标签 */
    .curation-collections-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 32px;
    }

    .collection-item-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-sm);
      padding: 20px;
    }

    .collection-item-box h4 {
      font-size: 16px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .collection-item-box p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .tag-cloud-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .theme-tag-pill {
      font-size: 12px;
      color: var(--text-muted);
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      padding: 6px 14px;
      border-radius: 20px;
    }

    .theme-tag-pill:hover {
      color: var(--brand-gold);
      border-color: rgba(229, 169, 60, 0.4);
    }

    /* 分类板块七：专属视听技术配置说明 */
    .audio-visual-guide-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .av-guide-card {
      background: var(--bg-card);
      border: 1px solid var(--border-line);
      border-radius: var(--radius-sm);
      padding: 28px;
    }

    .av-icon-sign {
      width: 44px;
      height: 44px;
      background: rgba(229, 169, 60, 0.1);
      border: 1px solid rgba(229, 169, 60, 0.2);
      color: var(--brand-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      margin-bottom: 18px;
      font-size: 20px;
      font-weight: 900;
    }

    .av-guide-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .av-guide-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 按钮 */
    .btn-brand-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background-color: var(--brand-gold);
      color: #000;
      font-weight: 700;
      font-size: 14px;
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--brand-gold);
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-brand-primary:hover {
      background-color: #f1b74e;
      transform: translateY(-2px);
      box-shadow: var(--shadow-glow);
    }

    /* 页脚 */
    .masthead-footer {
      background-color: #0a0b0e;
      border-top: 1px solid var(--border-line);
      padding: 80px 0 40px;
      color: var(--text-muted);
    }

    .footer-matrix-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-brand-title {
      font-size: 22px;
      font-weight: 900;
      color: var(--text-main);
      margin-bottom: 16px;
    }

    .footer-manifesto {
      font-size: 14px;
      line-height: 1.8;
      max-width: 360px;
      margin-bottom: 20px;
    }

    .footer-col-title {
      font-size: 14px;
      font-weight: 800;
      color: var(--text-main);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .footer-link-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-link-list a {
      font-size: 14px;
      color: var(--text-muted);
    }

    .footer-link-list a:hover {
      color: var(--brand-gold);
    }

    .footer-bottom-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    /* 响应式断点 */
    @media (max-width: 1024px) {
      .film-grid-layout {
        grid-template-columns: repeat(3, 1fr);
      }
      .feature-wide-card {
        grid-template-columns: 1fr;
      }
      .footer-matrix-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
      .cat-masthead-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 768px) {
      .page-section {
        padding: 56px 0;
      }
      .cat-title-h1 {
        font-size: 28px;
      }
      .film-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .critique-grid,
      .curation-collections-grid,
      .audio-visual-guide-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .masthead-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .footer-matrix-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .footer-bottom-bar {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
      }
    }

    @media (max-width: 520px) {
      .film-grid-layout {
        grid-template-columns: 1fr;
      }
      .feature-content-box {
        padding: 24px;
      }
      .nav-meta-tools {
        display: none;
      }
    }
