:root { --main:#f97316; --accent:#facc15; --bg:#1a1410; --text:#fff7ed; }
  body { background-color: var(--bg); color: var(--text); font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; }
  /* 胶囊、圆角 */
  .card, .btn, .badge, .form-control, .list-group-item { border-radius: 2rem !important; }
  .btn { border-radius: 50rem !important; }
  .navbar { background: rgba(26,20,16,0.6); backdrop-filter: blur(14px); transition: background 0.3s, box-shadow 0.3s; }
  .navbar.scrolled { background: rgba(26,20,16,0.95); box-shadow: 0 6px 20px rgba(0,0,0,0.5); }
  .navbar-brand { font-weight: 800; font-size: 1.8rem; letter-spacing: -0.5px; color: var(--main) !important; }
  .nav-link { color: var(--text) !important; font-weight: 500; margin: 0 0.3rem; }
  .nav-link:hover { color: var(--accent) !important; }
  .btn-main { background: var(--main); border: none; color: #1a1410; font-weight: 600; }
  .btn-main:hover { background: var(--accent); color: #1a1410; transform: scale(1.02); box-shadow: 0 4px 15px rgba(249,115,22,0.4); }
  .hero-section { background: linear-gradient(to bottom, rgba(26,20,16,0.3), var(--bg)), url('{随机图片}') center/cover no-repeat; min-height: 60vh; display: flex; align-items: center; }
  .hero-title { font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 900; color: white; text-shadow: 0 0 30px rgba(0,0,0,0.7); }
  .hero-sub { max-width: 700px; font-weight: 400; }
  .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 1.2rem; border-left: 8px solid var(--main); padding-left: 1rem; }
  .movie-card { background: #241e1a; border: none; border-radius: 1.5rem; overflow: hidden; transition: 0.2s; box-shadow: 0 6px 15px rgba(0,0,0,0.3); }
  .movie-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.6); }
  .movie-card img { height: 240px; object-fit: cover; background: #2b2b2b; transition: transform .4s; }
  .movie-card:hover img { transform: scale(1.04); }
  .movie-card .card-body { padding: 0.9rem 1rem; }
  .badge-flag { background: rgba(249,115,22,0.9); font-size: 0.65rem; font-weight: 600; }
  .rating-star { color: var(--accent); }
  .genre-chip { background: #332d27; padding: 0.2rem 0.9rem; border-radius: 30px; font-size: 0.75rem; font-weight: 500; }
  .sidebar-filter { background: #1f1916; border-radius: 2rem; padding: 1.5rem; position: sticky; top: 100px; }
  .sidebar-filter .list-group-item { background: transparent; color: var(--text); border: none; border-radius: 3rem !important; }
  .sidebar-filter .list-group-item.active { background: var(--main); color: #1a1410; font-weight: 600; }
  .footer-links a { color: #a8a29e; text-decoration: none; margin-right: 1.2rem; }
  .footer-links a:hover { color: var(--accent); }
  /* 翻转卡片 */
  .flip-card { perspective: 1000px; height: 100%; min-height: 340px; cursor: pointer; }
  .flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.6s; transform-style: preserve-3d; border-radius: 1.5rem; }
  .movie-card:hover .flip-inner { transform: rotateY(180deg); }
  .flip-front, .flip-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 1.5rem; }
  .flip-back { background: #29221e; transform: rotateY(180deg); padding: 1rem; display: flex; flex-direction: column; justify-content: center; border: 1px solid #3a332c; }
  /* 懒加载渐显 */
  img[data-lazy] { opacity: 0; transition: opacity 0.3s; }
  img.lazy-loaded { opacity: 1; }
  /* 时间线 */
  .timeline { border-left: 3px solid var(--main); padding-left: 1.5rem; }
  .timeline-item { margin-bottom: 1.8rem; }
  .timeline-dot { background: var(--main); width: 16px; height: 16px; border-radius: 50%; margin-left: -2rem; border: 2px solid var(--bg); }
  /* 滚动吸顶 */
  .sticky-top-custom { position: sticky; top: 0; z-index: 1020; }
  .back-close { position: absolute; top: 10px; right: 15px; font-size: 1.5rem; background: none; border: none; color: var(--text); }

/* --- 子页面追加 --- */
.ranking-hero {
            background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, transparent 50%), var(--bg);
            padding: 60px 0 30px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
.ranking-tabs {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
.ranking-tab-btn {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--text);
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all .3s ease;
            cursor: pointer;
        }
.ranking-tab-btn:hover, .ranking-tab-btn.active {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
            box-shadow: 0 4px 20px rgba(249,115,22,0.3);
        }
.rank-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
.rank-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 18px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 12px;
            transition: all .3s ease;
        }
.rank-item:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(249,115,22,0.4);
            transform: translateX(4px);
        }
.rank-num {
            font-size: 1.6rem;
            font-weight: 900;
            min-width: 44px;
            text-align: center;
            color: var(--text);
            opacity: 0.6;
            font-style: italic;
        }
.rank-num.top-1 { color: #ffd700; opacity: 1; }
.rank-num.top-2 { color: #c0c0c0; opacity: 1; }
.rank-num.top-3 { color: #cd7f32; opacity: 1; }
.rank-thumb {
            width: 60px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            background: rgba(255,255,255,0.08);
            flex-shrink: 0;
        }
.rank-info {
            flex: 1;
            min-width: 0;
        }
.rank-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 4px;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.rank-meta {
            font-size: 0.82rem;
            color: rgba(255,247,237,0.6);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
.rank-score {
            color: var(--accent);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 4px;
        }
.rank-tag {
            font-size: 0.7rem;
            padding: 2px 10px;
            border-radius: 20px;
            background: rgba(249,115,22,0.2);
            color: var(--main);
            border: 1px solid rgba(249,115,22,0.3);
        }
.rank-item:hover .rank-title {
            color: var(--main);
        }
.rank-category-section {
            margin-bottom: 40px;
        }
.rank-category-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text);
        }
.rank-category-title i {
            color: var(--main);
        }
.rank-category-title span {
            font-size: 0.85rem;
            font-weight: 400;
            color: rgba(255,247,237,0.5);
        }
.rank-note {
            background: rgba(249,115,22,0.08);
            border-left: 3px solid var(--main);
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 30px;
            font-size: 0.95rem;
            color: rgba(255,247,237,0.8);
            line-height: 1.7;
        }
.rank-note i {
            color: var(--main);
            margin-right: 8px;
        }

/* --- 子页面追加 --- */
/* 子页面专属微调：确保卡片与背景融合，文字清晰 */
        .about-section {
            background: var(--bg);
            color: var(--text);
        }
.about-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(249, 115, 22, 0.25);
            border-radius: 1rem;
            padding: 1.5rem 1.5rem;
            backdrop-filter: blur(2px);
            transition: transform .2s ease, border-color .2s ease;
        }
.about-card:hover {
            border-color: var(--main);
            transform: translateY(-4px);
        }
.about-card i {
            color: var(--main);
            font-size: 2rem;
            margin-bottom: .75rem;
        }
.about-card h3 {
            color: var(--accent);
            font-size: 1.35rem;
            font-weight: 700;
            letter-spacing: -.01em;
            margin-bottom: .75rem;
        }
.about-card p, .about-card li {
            color: rgba(255, 247, 237, 0.85);
            font-size: .96rem;
            line-height: 1.65;
        }
.about-card ul {
            padding-left: 1.2rem;
            margin-bottom: .5rem;
        }
.about-card li {
            list-style: disc;
            margin-bottom: .25rem;
        }
.timeline-item .timeline-dot {
            background: var(--main);
        }
.timeline-item .timeline-content {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(249,115,22,0.2);
            border-radius: .75rem;
            padding: 1rem 1.25rem;
        }
.timeline-item .timeline-content h4 {
            color: var(--accent);
            font-weight: 700;
        }
.timeline-item .timeline-content p {
            color: var(--text);
            opacity: .9;
        }
/* 覆盖 bootstrap 卡片默认白底 */
        .card, .card-body {
            background: transparent;
            color: var(--text);
        }
/* 导航高亮当前页 */
        .navbar .nav-link.active-nav {
            color: var(--accent) !important;
            font-weight: 600;
        }
.navbar .nav-link.active-nav i {
            color: var(--main);
        }
/* 小贴士风格 */
        .tip-badge {
            background: rgba(250, 204, 21, 0.15);
            border: 1px solid rgba(250, 204, 21, 0.4);
            color: var(--accent);
            padding: .2rem .8rem;
            border-radius: 30px;
            font-size: .8rem;
            font-weight: 600;
            display: inline-block;
        }
.hero-about {
            background: linear-gradient(145deg, rgba(249,115,22,0.08) 0%, rgba(26,20,16,0.9) 100%);
        }

/* --- 子页面追加 --- */
/* 页面专属样式 */
        .documentary-hero {
            background: linear-gradient(135deg, rgba(26,20,16,.95) 0%, rgba(26,20,16,.8) 50%, rgba(249,115,22,.3) 100%);
            padding: 80px 0 60px;
            border-bottom: 1px solid rgba(249,115,22,.15);
        }
.doc-category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }
.doc-cat-chip {
            padding: 8px 20px;
            border-radius: 30px;
            background: rgba(249,115,22,.08);
            border: 1px solid rgba(249,115,22,.2);
            color: var(--text);
            font-size: .9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all .3s ease;
            text-decoration: none;
        }
.doc-cat-chip:hover,
        .doc-cat-chip.active {
            background: var(--main);
            color: #fff;
            border-color: var(--main);
            box-shadow: 0 4px 15px rgba(249,115,22,.3);
        }
.doc-featured-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 30px;
            border: 1px solid rgba(249,115,22,.15);
            background: rgba(26,20,10,.6);
        }
.doc-featured-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
.doc-featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 60px 30px 30px;
            background: linear-gradient(transparent, rgba(26,20,10,.95));
        }
.doc-featured-tag {
            display: inline-block;
            background: var(--main);
            color: #fff;
            font-size: .8rem;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            letter-spacing: .5px;
        }
.doc-featured-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--text);
        }
.doc-featured-desc {
            font-size: .95rem;
            color: rgba(255,247,237,.85);
            max-width: 600px;
            line-height: 1.6;
        }
.doc-section-title {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.doc-section-title i {
            color: var(--main);
        }
.doc-grid-card {
            border-radius: 14px;
            overflow: hidden;
            background: rgba(26,20,10,.6);
            border: 1px solid rgba(249,115,22,.1);
            transition: all .35s ease;
            margin-bottom: 25px;
            height: 100%;
        }
.doc-grid-card:hover {
            transform: translateY(-6px);
            border-color: rgba(249,115,22,.35);
            box-shadow: 0 10px 30px rgba(0,0,0,.4);
        }
.doc-grid-img-wrap {
            position: relative;
            overflow: hidden;
        }
.doc-grid-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            transition: transform .5s ease;
        }
.doc-grid-card:hover .doc-grid-img {
            transform: scale(1.05);
        }
.doc-grid-rating {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(26,20,10,.85);
            color: var(--accent);
            font-weight: 700;
            font-size: .85rem;
            padding: 4px 10px;
            border-radius: 20px;
            border: 1px solid rgba(250,204,21,.3);
            backdrop-filter: blur(4px);
        }
.doc-grid-body {
            padding: 18px;
        }
.doc-grid-title {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
            line-height: 1.3;
        }
.doc-grid-meta {
            font-size: .8rem;
            color: rgba(255,247,237,.6);
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
.doc-grid-desc {
            font-size: .85rem;
            color: rgba(255,247,237,.7);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
.doc-weekly-wrap {
            background: rgba(249,115,22,.05);
            border: 1px solid rgba(249,115,22,.12);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 40px;
        }
.doc-weekly-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.doc-weekly-item {
            display: flex;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid rgba(249,115,22,.1);
            gap: 20px;
        }
.doc-weekly-item:last-child {
            border-bottom: none;
        }
.doc-weekly-num {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--main);
            width: 50px;
            text-align: center;
            font-style: italic;
        }
.doc-weekly-info {
            flex: 1;
        }
.doc-weekly-name {
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text);
        }
.doc-weekly-detail {
            font-size: .8rem;
            color: rgba(255,247,237,.6);
        }
.doc-weekly-rate {
            background: var(--accent);
            color: var(--bg);
            font-weight: 800;
            font-size: .85rem;
            padding: 4px 12px;
            border-radius: 20px;
            min-width: 50px;
            text-align: center;
        }
.doc-tip-box {
            background: rgba(250,204,21,.08);
            border-left: 3px solid var(--accent);
            border-radius: 0 12px 12px 0;
            padding: 20px 24px;
            margin: 30px 0;
        }
.doc-tip-box p {
            margin: 0;
            color: rgba(255,247,237,.8);
            font-size: .9rem;
            line-height: 1.6;
        }
.doc-tip-box i {
            color: var(--accent);
            margin-right: 8px;
        }
.doc-featured-img { height: 280px; }
.doc-featured-title { font-size: 1.5rem; }
.doc-section-title { font-size: 1.3rem; }
.doc-weekly-wrap { padding: 20px; }

/* --- 子页面追加 --- */
/* 确保本页卡片与深色主题一致 (仅覆盖需要的组件) */
        .movie-card, .card, .card-body, .list-group-item, .accordion-item {
            background: #241b14;
            border-color: #3b2d22;
            color: var(--text);
        }
.card-title, .card-text, .list-group-item, .accordion-button, .accordion-body {
            color: var(--text);
        }
.accordion-button:not(.collapsed) {
            background: rgba(249, 115, 22, 0.12);
            color: var(--main);
        }
.form-control, .form-select {
            background-color: rgba(0,0,0,0.35);
            border-color: #3b2d22;
            color: var(--text);
        }
.form-control::placeholder {
            color: rgba(255, 247, 237, 0.5);
        }
.form-control:focus, .form-select:focus {
            background-color: rgba(0,0,0,0.5);
            color: var(--text);
            border-color: var(--main);
            box-shadow: 0 0 0 0.2rem rgba(249,115,22,.15);
        }
.btn-outline-light {
            border-color: #4a3729;
            color: var(--text);
        }
.btn-outline-light:hover {
            background: var(--main);
            border-color: var(--main);
            color: #1a1410;
        }
/* 品牌名连续不可断 */
        .navbar-brand, .footer-brand {
            white-space: nowrap;
        }
/* 高亮当前页 */
        .nav-link.active {
            color: var(--main) !important;
            font-weight: 600;
        }
/* 分类筛选 chips */
        .genre-chip {
            cursor: pointer;
            transition: all .15s;
        }
.genre-chip.active {
            background: var(--main) !important;
            color: #1a1410 !important;
            font-weight: 600;
        }

/* --- 子页面追加 --- */
/* 本页专属微调 —— 风格与首页完全一致，仅补充少量细节 */
        .more-hero {
            background: linear-gradient(145deg, #2a1e16 0%, #1a1410 100%);
            border-bottom: 1px solid rgba(249,115,22,.2);
        }
.more-hero .hero-sub {
            max-width: 700px;
        }
.section-tag {
            display: inline-block;
            background: rgba(250,204,21,.12);
            color: var(--accent);
            font-size: .8rem;
            font-weight: 600;
            letter-spacing: .5px;
            padding: .25rem .9rem;
            border-radius: 30px;
            border: 1px solid rgba(250,204,21,.3);
        }
.topic-grid .card {
            background: rgba(30,20,15,.7);
            border: 1px solid rgba(255,255,255,.06);
            border-radius: 18px;
            transition: .25s ease;
        }
.topic-grid .card:hover {
            border-color: var(--main);
            background: rgba(45,30,22,.9);
            transform: translateY(-3px);
        }
.topic-grid .card-body {
            padding: 1.5rem 1.2rem;
        }
.topic-grid .card-title {
            color: var(--text);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: .5rem;
        }
.topic-grid .card-text {
            color: rgba(255,247,237,.75);
            font-size: .9rem;
        }
.list-item-custom {
            background: transparent;
            border-bottom: 1px solid rgba(255,255,255,.05);
            padding: .9rem .5rem;
            color: var(--text);
        }
.list-item-custom:last-child { border-bottom: none; }
.list-item-custom i {
            color: var(--main);
            width: 24px;
        }
.list-item-custom span {
            font-weight: 500;
        }
.mini-guide {
            background: rgba(249,115,22,.06);
            border-left: 4px solid var(--main);
            padding: 1rem 1.2rem;
            border-radius: 12px;
        }
.mini-guide p {
            margin-bottom: .35rem;
            color: rgba(255,247,237,.8);
        }
.mini-guide strong {
            color: var(--text);
            font-weight: 600;
        }

/* --- 子页面追加 --- */
/* 覆盖 Bootstrap 组件默认白底黑字 (若站点样式未覆盖) */
    .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
    .form-control, .form-select, .form-label, .input-group-text,
    .table, .list-group-item, .accordion-item, .accordion-button, .accordion-body,
    .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item,
    .nav-link, .navbar, .navbar-brand, .btn-light, .btn-outline-* {
      background: transparent;
      color: var(--text);
      border-color: rgba(249, 115, 22, 0.2);
    }
.navbar, .navbar-brand, .nav-link {
      background: transparent !important;
      color: var(--text) !important;
    }
.navbar-toggler {
      border: none;
    }
.navbar-toggler:focus {
      box-shadow: none;
    }
/* 本页专用细节 */
    .disclaimer-hero {
      background: radial-gradient(circle at 20% 20%, rgba(249,115,22,0.12), transparent 40%);
      border-bottom: 1px solid rgba(249,115,22,0.15);
    }
.legal-section {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(249, 115, 22, 0.15);
      border-radius: 20px;
      padding: 2rem;
      margin-bottom: 2rem;
      transition: transform .2s, border-color .2s;
    }
.legal-section:hover {
      border-color: rgba(250, 204, 21, 0.3);
      transform: translateY(-2px);
    }
.legal-section h2 {
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--accent);
      letter-spacing: -0.02em;
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
.legal-section h2 i {
      color: var(--main);
      font-size: 1.4rem;
    }
.legal-section p, .legal-section li {
      color: rgba(255, 247, 237, 0.85);
      line-height: 1.8;
      font-size: 1rem;
    }
.legal-section ul {
      padding-left: 1.4rem;
      list-style-type: none;
    }
.legal-section li {
      margin-bottom: 0.6rem;
      position: relative;
      padding-left: 1.8rem;
    }
.legal-section li::before {
      content: "\f058";
      font-family: "Font Awesome 6 Free";
      font-weight: 400;
      color: var(--main);
      position: absolute;
      left: 0;
      top: 0.1rem;
      opacity: 0.8;
    }
.back-close:hover {
      background: rgba(249, 115, 22, 0.1);
      border-color: var(--main);
      color: var(--accent);
    }
.footer-link {
      color: var(--text);
      opacity: 0.75;
      text-decoration: none;
      transition: opacity .2s;
    }
.footer-link:hover {
      opacity: 1;
      color: var(--accent);
    }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.accordion-header { background:transparent !important; }
