:root {
      --brand: #e50914;
      --accent: #f5c518;
      --bg-dark: #0b0b0f;
      --text-light: #f5f5f7;
      --text-muted: #b0b0b8;
      --card-bg: #181820;
      --border-subtle: #26262e;
      --shadow: 0 8px 24px rgba(0,0,0,0.5);
    }
    * { box-sizing: border-box; }
    body {
      background-color: var(--bg-dark);
      color: var(--text-light);
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      font-size: 0.925rem;
      line-height: 1.5;
      padding-top: 64px;
    }
    h1, h2, h3, .serif-title {
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    a { color: inherit; text-decoration: none; }

    /* 导航 */
    .navbar-custom {
      background: rgba(11, 11, 15, 0.6);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 0.5rem 1rem;
      transition: all 0.2s ease;
      min-height: 60px;
      z-index: 1000;
    }
    .navbar-custom.scrolled {
      background: rgba(11, 11, 15, 0.95);
      box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    }
    .brand-logo {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--text-light) !important;
      margin-right: 2rem;
    }
    .brand-logo i { color: var(--accent); }
    .navbar-nav .nav-link {
      color: var(--text-light);
      font-weight: 500;
      padding: 0.5rem 1rem;
      transition: 0.2s;
      font-size: 0.95rem;
    }
    .navbar-nav .nav-link:hover { color: var(--accent); }
    .navbar-toggler { border: 1px solid rgba(255,255,255,0.3); color: white; }
    .navbar-toggler:focus { box-shadow: none; }

    /* 滚动标签云 hero */
    .keyword-cloud {
      padding: 0.6rem 0;
      overflow: hidden;
      background: rgba(20,20,28,0.5);
      border-bottom: 1px solid var(--border-subtle);
    }
    .keyword-track {
      display: flex;
      gap: 2rem;
      white-space: nowrap;
      animation: scrollCloud 28s linear infinite;
    }
    .keyword-track span {
      color: var(--text-muted);
      font-weight: 500;
      font-size: 0.9rem;
      border: 1px solid rgba(255,255,255,0.1);
      padding: 0.2rem 1rem;
      border-radius: 30px;
      background: rgba(255,255,255,0.02);
    }
    @keyframes scrollCloud {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* 轮播 */
    .hero-banner {
      border-radius: 16px;
      overflow: hidden;
      margin: 1.5rem 0;
      background: linear-gradient(135deg, #15151c 0%, #1d1d28 100%);
      box-shadow: var(--shadow);
      border: 1px solid var(--border-subtle);
    }
    .hero-slide {
      padding: 2rem 2.5rem;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-size: cover;
      background-position: center;
      background-image: linear-gradient(100deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%), url('{随机图片}');
    }
    .hero-slide h2 {
      font-size: 2.2rem;
      font-weight: 800;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
      max-width: 60%;
    }
    .hero-slide p {
      font-size: 1rem;
      color: #ddd;
      max-width: 50%;
    }
    .hero-slide .btn-accent {
      background: var(--accent);
      color: #000;
      border: none;
      font-weight: 700;
      width: fit-content;
      margin-top: 1rem;
    }

    /* 区块通用 */
    .section-title {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      margin: 2rem 0 1rem 0;
      font-weight: 800;
      font-size: 1.5rem;
      border-left: 6px solid var(--brand);
      padding-left: 1rem;
    }
    .section-title .seemore {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-left: auto;
      font-weight: 400;
    }

    /* 卡片 */
    .card-poster {
      background: var(--card-bg);
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
      height: 100%;
      position: relative;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      animation: cardFadeIn 0.5s ease both;
    }
    .card-poster:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.7);
    }
    .card-poster .poster-img {
      width: 100%;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      background: #2a2a32;
      display: block;
    }
    .poster-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 45%);
      pointer-events: none;
    }
    .card-poster .play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(229, 9, 20, 0.8);
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.2s;
      border: 2px solid white;
      color: white;
      font-size: 1.2rem;
      z-index: 5;
    }
    .card-poster:hover .play-btn { opacity: 1; }
    .poster-info {
      padding: 0.6rem 0.8rem 0.8rem;
      background: var(--card-bg);
      position: relative;
      z-index: 2;
    }
    .poster-info h5 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-info .meta {
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    .rating {
      color: var(--accent);
      font-weight: 700;
      font-size: 0.8rem;
    }

    /* 标签云心情 */
    .mood-tags .btn {
      background: #1a1a24;
      border: 1px solid var(--border-subtle);
      color: var(--text-light);
      border-radius: 30px;
      font-size: 0.85rem;
      padding: 0.3rem 1.2rem;
    }
    .mood-tags .btn:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* 友链 */
    .friend-links {
      background: #12121a;
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      padding: 1.5rem;
      margin: 2rem 0;
    }
    .friend-links h5 {
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .friend-links .links { color: var(--text-muted); word-break: break-all; }

    /* 步骤条 */
    .steps-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      background: #101018;
      padding: 1.8rem;
      border-radius: 16px;
      margin: 1.5rem 0;
      border: 1px solid var(--border-subtle);
    }
    .step-item {
      flex: 1 1 180px;
      text-align: center;
    }
    .step-icon { font-size: 2rem; color: var(--accent); }
    .step-item h6 { font-weight: 700; margin-top: 0.5rem; }

    /* 精选片单 */
    .featured-pick {
      background: #14141c;
      border-left: 4px solid var(--accent);
      padding: 1rem 1.2rem;
      border-radius: 8px;
      margin-bottom: 0.8rem;
    }
    .featured-pick p { margin-bottom: 0.2rem; font-weight: 500; }
    .featured-pick small { color: var(--text-muted); }

    /* 侧滑详情 */
    .detail-sidebar {
      position: fixed;
      top: 0; right: -420px;
      width: 400px; max-width: 92vw;
      height: 100vh;
      background: #10101a;
      box-shadow: -10px 0 40px rgba(0,0,0,0.7);
      z-index: 2000;
      transition: right 0.35s ease;
      overflow-y: auto;
      padding: 2rem 1.5rem;
      border-left: 2px solid var(--brand);
    }
    .detail-sidebar.active { right: 0; }
    .close-detail {
      position: absolute;
      top: 1rem; right: 1rem;
      background: none;
      border: none;
      color: white;
      font-size: 2rem;
      line-height: 1;
    }
    .detail-sidebar .poster-lg {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 1rem;
    }
    .detail-sidebar .field {
      margin-bottom: 0.75rem;
      border-bottom: 1px solid var(--border-subtle);
      padding-bottom: 0.4rem;
    }
    .detail-sidebar .field strong { display: inline-block; min-width: 70px; color: var(--accent); }
    .overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 1999;
      display: none;
    }
    .overlay.active { display: block; }

    /* 滚动动画 */
    @keyframes cardFadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .card-delay-1 { animation-delay: 0.05s; }
    .card-delay-2 { animation-delay: 0.15s; }
    .card-delay-3 { animation-delay: 0.25s; }

    .footer {
      background: #07070b;
      border-top: 1px solid var(--border-subtle);
      padding: 2rem 0;
      margin-top: 3rem;
    }
    @media (max-width: 768px) {
      body { padding-top: 56px; }
      .hero-slide { padding: 1.5rem; }
      .hero-slide h2 { font-size: 1.5rem; max-width: 100%; }
      .hero-slide p { max-width: 100%; }
    }

/* --- 子页面追加 --- */
/* 与首页完全一致的 CSS 变量 */
        :root {
            --brand: #e50914;
            --accent: #f5c518;
            --bg-dark: #0b0b0f;
            --text-light: #f5f5f7;
            --text-muted: #b0b0b8;
            --card-bg: #181820;
            --border-subtle: #26262e;
            --shadow: 0 8px 24px rgba(0,0,0,0.5);
        }
a:hover { opacity: .8; color: var(--accent); }
/* 导航 */
        .navbar-custom {
            background-color: #0b0b0fcc;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            padding: .8rem 0;
            z-index: 1050;
        }
.navbar-custom .navbar-nav .nav-link {
            color: var(--text-muted);
            font-weight: 500;
            padding: .5rem 1rem;
            border-radius: 6px;
            margin: 0 2px;
        }
.navbar-custom .navbar-nav .nav-link:hover { color: var(--text-light); background: rgba(255,255,255,.03); }
.navbar-custom .navbar-nav .nav-link.active {
            color: var(--accent);
            font-weight: 600;
            background: rgba(245,197,24,.08);
        }
/* 通用工具 */
        .section-title {
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
            border-left: 5px solid var(--brand);
            padding-left: 1rem;
        }
.section-sub { color: var(--text-muted); }
.bg-card { background-color: var(--card-bg); border: 1px solid var(--border-subtle); }
.text-muted { color: var(--text-muted) !important; }
/* 关于页专用（少量补充） */
        .about-hero {
            background: radial-gradient(circle at 20% 20%, rgba(229,9,20,.15), transparent 50%);
            padding: 3.5rem 0 1.5rem;
        }
.about-badge {
            display: inline-block;
            background: rgba(229,9,20,.15);
            color: var(--accent);
            font-weight: 600;
            font-size: .8rem;
            letter-spacing: .05em;
            padding: .25rem .8rem;
            border-radius: 30px;
            border: 1px solid rgba(245,197,24,.25);
            margin-bottom: 1rem;
        }
.feature-block {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            height: 100%;
            border: 1px solid var(--border-subtle);
            transition: transform .2s ease, border-color .2s;
        }
.feature-block:hover { transform: translateY(-4px); border-color: rgba(229,9,20,.5); }
.feature-icon {
            font-size: 2rem;
            color: var(--brand);
            margin-bottom: 1rem;
        }
.value-item {
            background: rgba(255,255,255,.02);
            border-left: 3px solid var(--accent);
            padding: 1rem 1.2rem;
            border-radius: 0 10px 10px 0;
            margin-bottom: 1rem;
        }
.footer a { color: var(--text-muted); margin-right: 1.2rem; }
.footer a:hover { color: var(--accent); }

/* --- 子页面追加 --- */
/* 确保Bootstrap组件不破坏深色风格——只用了栅格/工具类，组件类自定义 */
        .guide-hero {
            background: linear-gradient(145deg, rgba(229, 9, 20, 0.15) 0%, rgba(11, 11, 15, 0.8) 100%), var(--bg-dark);
            padding: 3.5rem 0 2.5rem;
            border-bottom: 1px solid var(--border-subtle);
        }
.guide-hero h1 {
            color: var(--text-light);
            font-weight: 800;
            letter-spacing: -0.02em;
        }
.guide-hero .lead {
            color: var(--text-muted);
            max-width: 720px;
        }
.section-title-guide {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 1.2rem;
            border-left: 4px solid var(--brand);
            padding-left: 1rem;
        }
.guide-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            height: 100%;
            box-shadow: var(--shadow);
            transition: transform 0.2s ease, border-color 0.2s;
        }
.guide-card:hover {
            border-color: var(--brand);
            transform: translateY(-4px);
        }
.guide-card i {
            color: var(--brand);
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }
.guide-card h3 {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.25rem;
            margin-bottom: 0.6rem;
        }
.guide-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }
.guide-steps {
            background: rgba(255,255,255,0.02);
            border-radius: 24px;
            padding: 2rem 1.5rem;
            border: 1px solid var(--border-subtle);
        }
.step-item:last-child {
            border-bottom: none;
        }
.step-item h4 {
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 0.2rem;
        }
.step-item p {
            color: var(--text-muted);
            margin-bottom: 0;
            font-size: 0.95rem;
        }
.list-bullet {
            color: var(--text-muted);
            padding-left: 1.2rem;
            list-style: none;
        }
.list-bullet li {
            margin-bottom: 0.5rem;
            position: relative;
        }
.list-bullet li::before {
            content: "▹";
            color: var(--brand);
            font-weight: bold;
            display: inline-block;
            width: 1.2rem;
            margin-left: -1.2rem;
        }
.badge-tip {
            background: rgba(229, 9, 20, 0.2);
            color: var(--accent);
            font-weight: 600;
            border-radius: 30px;
            padding: 0.2rem 1rem;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
.friend-links a {
            color: var(--text-muted);
            text-decoration: none;
            margin-right: 1.5rem;
        }
.friend-links a:hover {
            color: var(--accent);
        }
/* 覆盖Bootstrap nav-link 颜色 (如果有冲突) */
        .navbar-custom .nav-link {
            color: var(--text-light) !important;
        }
.navbar-custom .nav-link.active {
            color: var(--accent) !important;
            font-weight: 600;
        }

/* --- 子页面追加 --- */
/* 本页专属微调：仅补充 update 页特有布局，不覆盖站点根变量 */
    .update-hero {
      background: linear-gradient(145deg, rgba(229,9,20,0.15) 0%, var(--bg-dark) 80%);
      border-bottom: 1px solid var(--border-subtle);
      padding: 2.5rem 0 2rem;
    }
.update-hero h1 {
      font-weight: 800;
      letter-spacing: -0.02em;
    }
.update-hero .lead {
      color: var(--text-muted);
      max-width: 720px;
    }
.update-section-title {
      font-weight: 700;
      font-size: 1.5rem;
      border-left: 4px solid var(--brand);
      padding-left: 0.9rem;
      margin: 2.5rem 0 1.5rem;
      color: var(--text-light);
    }
.update-section-title i {
      color: var(--accent);
      margin-right: 0.5rem;
    }
.update-grid-card {
      background: var(--card-bg);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 1.25rem 1.25rem 1.5rem;
      height: 100%;
      transition: transform 0.2s ease, border-color 0.2s;
      box-shadow: var(--shadow);
    }
.update-grid-card:hover {
      transform: translateY(-4px);
      border-color: rgba(245,197,24,0.4);
    }
.update-badge {
      background: rgba(229,9,20,0.2);
      color: #fca5a5;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.3rem 0.7rem;
      border-radius: 30px;
      display: inline-block;
      letter-spacing: 0.02em;
    }
.update-card-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin: 0.8rem 0 0.3rem;
      color: var(--text-light);
    }
.update-card-meta {
      color: var(--text-muted);
      font-size: 0.88rem;
    }
.update-card-desc {
      color: #c7c7ce;
      font-size: 0.93rem;
      line-height: 1.5;
      margin-top: 0.6rem;
    }
.update-footer-link {
      color: var(--accent);
      font-weight: 500;
      text-decoration: none;
      font-size: 0.9rem;
    }
.update-footer-link:hover {
      text-decoration: underline;
    }
.update-sticky-note {
      background: rgba(245,197,24,0.08);
      border: 1px dashed rgba(245,197,24,0.4);
      border-radius: 20px;
      padding: 1.2rem 1.5rem;
      margin-top: 2.5rem;
    }
/* 确保 bootstrap 组件不破坏配色——仅用栅格，无组件类，但额外保险 */
    .friend-links a, .footer a {
      color: var(--text-muted);
      text-decoration: none;
    }
.friend-links a:hover, .footer a:hover {
      color: var(--accent);
    }

/* --- 子页面追加 --- */
/* 本页专属样式 */
    .rank-hero { background: linear-gradient(135deg, rgba(229,9,20,.15), transparent), var(--bg-dark); padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--border-subtle); }
.rank-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: .5rem; }
.rank-hero p { color: var(--text-muted); max-width: 700px; }
.rank-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin: 2rem 0 1.5rem; }
.rank-tab-btn { padding: .5rem 1.2rem; border: 1px solid var(--border-subtle); border-radius: 30px; background: transparent; color: var(--text-muted); font-size: .9rem; cursor: pointer; transition: all .3s; }
.rank-tab-btn:hover, .rank-tab-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.rank-section { margin-bottom: 2.5rem; }
.rank-card { display: flex; gap: 1rem; background: var(--card-bg); border-radius: 12px; padding: 1rem; margin-bottom: .8rem; border: 1px solid var(--border-subtle); transition: transform .2s, box-shadow .2s; }
.rank-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.rank-num { font-size: 1.5rem; font-weight: 900; color: var(--brand); min-width: 2rem; text-align: center; line-height: 1.2; }
.rank-num.top { color: var(--accent); }
.rank-info { flex: 1; }
.rank-title { font-weight: 600; color: var(--text-light); margin-bottom: .2rem; }
.rank-meta { font-size: .8rem; color: var(--text-muted); }
.rank-score { background: rgba(245,197,24,.12); color: var(--accent); padding: .2rem .6rem; border-radius: 6px; font-weight: 700; font-size: .9rem; white-space: nowrap; }
.rank-desc { font-size: .85rem; color: var(--text-muted); margin-top: .3rem; }
.rank-badge { display: inline-block; font-size: .7rem; background: rgba(229,9,20,.2); color: var(--brand); padding: .1rem .5rem; border-radius: 4px; margin-left: .5rem; vertical-align: middle; }
.rank-hero { padding: 2rem 0 1.5rem; }
.rank-hero h1 { font-size: 1.5rem; }
.rank-card { padding: .7rem; gap: .7rem; }
.rank-num { font-size: 1.2rem; min-width: 1.5rem; }

/* --- 子页面追加 --- */
/* 分类页专属样式 */
        .category-hero {
            background: linear-gradient(135deg, rgba(229,9,20,0.15) 0%, rgba(11,11,15,0.8) 100%);
            padding: 60px 0 40px;
            border-bottom: 1px solid var(--border-subtle);
        }
.category-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }
.category-hero p {
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 1.7;
        }
.category-main {
            padding: 40px 0 60px;
        }
.cat-block {
            margin-bottom: 40px;
        }
.cat-block-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-subtle);
        }
.cat-block-title i {
            color: var(--brand);
            font-size: 1.1rem;
        }
.cat-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
.cat-tag {
            display: inline-block;
            padding: 6px 16px;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            color: var(--text-light);
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
.cat-tag:hover {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
            transform: translateY(-2px);
        }
.cat-tag .tag-count {
            color: var(--text-muted);
            font-size: 0.8rem;
            margin-left: 4px;
        }
.cat-tag:hover .tag-count {
            color: rgba(255,255,255,0.8);
        }
.genre-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 12px;
        }
.genre-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
.genre-card:hover {
            border-color: var(--brand);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
.genre-card i {
            font-size: 1.6rem;
            color: var(--brand);
            margin-bottom: 8px;
            display: block;
        }
.genre-card .genre-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-light);
        }
.genre-card .genre-num {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
.year-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }
.year-btn {
            padding: 4px 14px;
            background: transparent;
            border: 1px solid var(--border-subtle);
            border-radius: 6px;
            color: var(--text-muted);
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
        }
.year-btn:hover, .year-btn.active {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
        }
.region-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
.region-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            padding: 10px 18px;
            cursor: pointer;
            transition: all 0.2s;
        }
.region-item:hover {
            border-color: var(--accent);
        }
.region-item i {
            color: var(--accent);
        }
.region-item span {
            font-size: 0.9rem;
            font-weight: 500;
        }
.region-item small {
            color: var(--text-muted);
        }
/* 分类快速导航 */
        .cat-quick-nav {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 40px;
            border: 1px solid var(--border-subtle);
        }
.cat-quick-nav .quick-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--accent);
        }
.quick-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
.quick-link {
            padding: 4px 14px;
            background: rgba(229,9,20,0.1);
            border: 1px solid rgba(229,9,20,0.3);
            border-radius: 16px;
            font-size: 0.85rem;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.2s;
        }
.quick-link:hover {
            background: var(--brand);
            border-color: var(--brand);
        }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(11,11,15,.9) 0%, rgba(24,24,32,.7) 100%), url(' {随机图片}
.reco-hero h1 { font-size: 2.6rem; font-weight: 800; color: var(--text-light); margin-bottom: 12px; }
.reco-hero h1 span { color: var(--accent); }
.reco-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 700px; }
.reco-tag { display: inline-block; background: rgba(229,9,20,.15); color: var(--brand); border: 1px solid rgba(229,9,20,.4); border-radius: 20px; padding: 4px 14px; font-size: .85rem; font-weight: 600; margin-right: 8px; margin-bottom: 8px; }
.reco-card { background: var(--card-bg); border: 1px solid var(--border-subtle); border-radius: 16px; overflow: hidden; transition: transform .3s, box-shadow .3s; height: 100%; }
.reco-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reco-card-img { position: relative; height: 220px; overflow: hidden; }
.reco-card-img img { width: 100%; height: 100%; object-fit: cover; }
.reco-card-img .rating-badge { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.75); color: var(--accent); font-weight: 700; padding: 4px 10px; border-radius: 8px; font-size: .9rem; }
.reco-card-body { padding: 20px; }
.reco-card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-light); margin-bottom: 6px; }
.reco-card-body .reco-year { color: var(--text-muted); font-size: .85rem; margin-bottom: 10px; }
.reco-card-body p { color: var(--text-muted); font-size: .9rem; line-height: 1.5; margin-bottom: 14px; }
.reco-card-body .reco-meta { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: .82rem; flex-wrap: wrap; }
.reco-card-body .reco-meta i { color: var(--brand); }
.reco-reason { background: rgba(245,197,24,.08); border-left: 3px solid var(--accent); padding: 10px 14px; border-radius: 0 8px 8px 0; margin-top: 12px; font-size: .85rem; color: var(--text-light); }
.reco-reason i { color: var(--accent); margin-right: 6px; }
.reco-list-section { padding: 60px 0 40px; }
.reco-list-section .section-title { margin-bottom: 30px; }
.reco-list-section .section-title h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-light); }
.reco-list-section .section-title h2 span { color: var(--accent); }
.reco-list-section .section-title p { color: var(--text-muted); margin-top: 8px; }
.reco-tip { background: rgba(245,197,24,.06); border: 1px solid rgba(245,197,24,.2); border-radius: 12px; padding: 20px; margin: 40px 0; display: flex; align-items: flex-start; gap: 14px; }
.reco-tip i { color: var(--accent); font-size: 1.5rem; margin-top: 2px; }
.reco-tip p { color: var(--text-muted); margin: 0; font-size: .92rem; line-height: 1.6; }
.reco-tip strong { color: var(--text-light); }
.reco-hero { padding: 50px 0 40px; }
.reco-hero h1 { font-size: 1.8rem; }
.reco-card-img { height: 180px; }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .reco-hero {
            background: linear-gradient(135deg, rgba(229,9,20,.15) 0%, transparent 50%), var(--bg-dark);
            padding: 60px 0 40px;
            border-bottom: 1px solid var(--border-subtle);
        }
.section-tag {
            display: inline-block;
            padding: 4px 14px;
            background: rgba(229,9,20,.15);
            border: 1px solid rgba(229,9,20,.3);
            border-radius: 20px;
            color: var(--brand);
            font-size: .85rem;
            font-weight: 600;
            letter-spacing: .5px;
            margin-bottom: 16px;
        }
.reco-card .badge-2026 {
            background: var(--brand);
            color: #fff;
            font-size: .75rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 12px;
            letter-spacing: .5px;
        }
.reco-card h3 {
            color: var(--text-light);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.4;
        }
.reco-card p {
            color: var(--text-muted);
            font-size: .92rem;
            line-height: 1.6;
            margin-bottom: 14px;
        }
.reco-card .meta-row {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            border-top: 1px solid var(--border-subtle);
            padding-top: 14px;
            margin-top: 4px;
        }
.reco-card .meta-row span {
            color: var(--text-muted);
            font-size: .85rem;
        }
.reco-card .meta-row i {
            color: var(--accent);
            margin-right: 4px;
        }
.reco-card .rating-2026 {
            color: var(--accent);
            font-weight: 700;
            font-size: 1rem;
        }
.list-timeline {
            position: relative;
            padding-left: 28px;
        }
.list-timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--brand), rgba(229,9,20,.1));
        }
.list-timeline-item {
            position: relative;
            margin-bottom: 28px;
        }
.list-timeline-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--brand);
            border: 2px solid var(--bg-dark);
            box-shadow: 0 0 0 2px rgba(229,9,20,.3);
        }
.list-timeline-item .month-label {
            color: var(--accent);
            font-weight: 700;
            font-size: .9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
.list-timeline-item h4 {
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
.list-timeline-item .desc {
            color: var(--text-muted);
            font-size: .9rem;
            line-height: 1.5;
        }
.watch-now-btn {
            display: inline-block;
            background: var(--brand);
            color: #fff;
            padding: 6px 18px;
            border-radius: 6px;
            font-size: .85rem;
            font-weight: 600;
            text-decoration: none;
            transition: background .3s;
            margin-top: 8px;
        }
.watch-now-btn:hover {
            background: #b80710;
            color: #fff;
        }
.note-box {
            background: rgba(245,197,24,.08);
            border-left: 3px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }
.note-box p {
            color: var(--text-muted);
            font-size: .9rem;
            line-height: 1.6;
            margin: 0;
        }
.note-box strong {
            color: var(--accent);
        }

/* --- 子页面追加 --- */
.restore-hero {
            background: linear-gradient(135deg, #0b0b0f 0%, #1a0a0e 50%, #0b0b0f 100%);
            padding: 80px 0 60px;
            border-bottom: 1px solid var(--border-subtle);
            position: relative;
            overflow: hidden;
        }
.restore-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
.restore-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--text-light);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 1;
        }
.restore-hero h1 span {
            color: var(--brand);
        }
.restore-hero p {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 720px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
.restore-section {
            padding: 60px 0;
        }
.restore-section-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
.restore-section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--brand);
            border-radius: 2px;
        }
.restore-subtitle {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 32px;
        }
.restore-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 24px;
            height: 100%;
            transition: all 0.3s ease;
        }
.restore-card:hover {
            border-color: var(--brand);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
.restore-card h4 {
            color: var(--text-light);
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 12px;
        }
.restore-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
.restore-card .year-badge {
            display: inline-block;
            background: rgba(229, 9, 20, 0.15);
            color: var(--brand);
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
.tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
.tech-item {
            background: rgba(24, 24, 32, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }
.tech-item i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 12px;
        }
.tech-item h5 {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 8px;
        }
.tech-item p {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 0;
        }
.quote-block {
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(245, 197, 24, 0.05));
            border-left: 4px solid var(--accent);
            border-radius: 0 12px 12px 0;
            padding: 24px 28px;
            margin: 40px 0;
        }
.quote-block p {
            color: var(--text-light);
            font-style: italic;
            font-size: 1.05rem;
            line-height: 1.8;
            margin: 0;
        }
.quote-block .quote-author {
            color: var(--text-muted);
            font-style: normal;
            font-size: 0.85rem;
            margin-top: 12px;
        }
.film-detail-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.film-detail-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-muted);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
.film-detail-list li:last-child {
            border-bottom: none;
        }
.film-detail-list li i {
            color: var(--accent);
            margin-right: 12px;
            font-size: 0.8rem;
        }
.film-detail-list li strong {
            color: var(--text-light);
            font-weight: 600;
            margin-right: 6px;
        }
.restore-timeline {
            position: relative;
            padding-left: 30px;
            margin: 30px 0;
        }
.restore-timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--brand), var(--accent));
        }
.timeline-item {
            position: relative;
            margin-bottom: 24px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--brand);
            border: 2px solid var(--bg-dark);
        }
.timeline-item h5 {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 6px;
        }
.timeline-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }
.timeline-year {
            color: var(--accent);
            font-weight: 700;
            font-size: 0.85rem;
            margin-right: 8px;
        }
.restore-hero h1 {
                font-size: 2rem;
            }
.restore-section-title {
                font-size: 1.4rem;
            }
.tech-grid {
                grid-template-columns: 1fr 1fr;
            }
.tech-grid {
                grid-template-columns: 1fr;
            }