:root {
  --primary: #dc2626;
  --accent: #fb923c;
  --bg: #141013;
  --text: #fef2f2;
  --card-bg: #1e181e;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --shadow: 0 8px 32px rgba(220, 38, 38, 0.12);
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,.font-title {
  font-family: 'Inter', 'PingFang SC', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
/* 顶部导航 */
.navbar-custom {
  background: rgba(20,16,19,0.92);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar-brand-custom {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand-custom i {
  color: var(--accent);
  font-size: 1.8rem;
}
.nav-link-custom {
  color: rgba(254,242,242,0.85) !important;
  font-weight: 500;
  margin: 0 6px;
  padding: 6px 14px !important;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.92rem;
}
.nav-link-custom:hover {
  color: var(--accent) !important;
  background: rgba(251,146,60,0.1);
}
.navbar-toggler-custom {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  background: transparent;
}
.navbar-toggler-custom:focus { box-shadow:none; }
/* Hero 区域 */
.hero-section {
  position: relative;
  padding: 70px 0 50px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 160%;
  background: radial-gradient(circle at 30% 40%, rgba(220,38,38,0.25) 0%, transparent 60%), 
              radial-gradient(circle at 80% 70%, rgba(251,146,60,0.15) 0%, transparent 50%);
  animation: heroShift 16s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes heroShift {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.05); }
}
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(254,242,242,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(254,242,242,0.75);
  max-width: 600px;
  margin: 0 auto 30px;
}
/* 区块通用 */
.section-block {
  padding: 40px 0;
}
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 28px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 4px;
}
.section-more {
  margin-left: auto;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s;
}
.section-more:hover { color: var(--text); }
/* 分类胶囊 */
.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.category-pill {
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.category-pill:hover, .category-pill.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,38,38,0.3);
}
/* 卡片网格 */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 20px;
}
.movie-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.movie-card:hover {
  transform: scale(1.04);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(220,38,38,0.2);
}
.movie-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  background: #2a222a;
}
.movie-info {
  padding: 12px;
}
.movie-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(254,242,242,0.65);
}
.movie-rating {
  color: var(--accent);
  font-weight: 700;
  background: rgba(251,146,60,0.12);
  padding: 2px 8px;
  border-radius: 20px;
}
/* 榜单 */
.rank-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--border-radius-md);
  padding: 12px 16px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.rank-item:hover {
  background: rgba(220,38,38,0.08);
  border-color: rgba(220,38,38,0.2);
}
.rank-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rank-1 { background: linear-gradient(135deg, #ffd700, #ffb300); color: #3a2e00; }
.rank-2 { background: linear-gradient(135deg, #c0c0c0, #a8a8a8); color: #2a2a2a; }
.rank-3 { background: linear-gradient(135deg, #cd7f32, #b87333); color: #2a1a0a; }
.rank-other { background: rgba(255,255,255,0.08); color: var(--text); }
.rank-info { flex: 1; min-width: 0; }
.rank-title { font-weight: 700; font-size: 0.98rem; margin-bottom: 4px; }
.rank-desc { font-size: 0.8rem; color: rgba(254,242,242,0.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* 侧边栏布局 */
.content-layout {
  display: flex;
  gap: 30px;
}
.sidebar-filter {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  height: fit-content;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}
.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}
.sidebar-filter .category-pill {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.04);
}
.sidebar-filter .category-pill:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.main-content {
  flex: 1;
  min-width: 0;
}
/* 专题 */
.feature-card {
  background: linear-gradient(145deg, rgba(220,38,38,0.1), rgba(251,146,60,0.06));
  border-radius: var(--border-radius-lg);
  padding: 28px;
  border: 1px solid rgba(220,38,38,0.2);
  margin-bottom: 30px;
}
.feature-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.feature-desc { color: rgba(254,242,242,0.8); margin-bottom: 16px; }
.feature-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.feature-tag { background: rgba(251,146,60,0.15); color: var(--accent); padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
/* 步骤条 */
.steps-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 30px 0;
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255,255,255,0.06);
}
.step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
}
/* 友情链接 */
.friend-links {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 20px;
}
.friend-links h3 {
  font-size: 1rem;
  color: rgba(254,242,242,0.6);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
/* 页脚 */
.footer-custom {
  padding: 40px 0 20px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  color: rgba(254,242,242,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copyright {
  text-align: center;
  color: rgba(254,242,242,0.5);
  font-size: 0.85rem;
}
/* 弹窗 */
.detail-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.detail-overlay.show { opacity: 1; visibility: visible; }
.detail-panel {
  position: fixed;
  top: 0;
  right: -520px;
  width: 480px;
  max-width: 100%;
  height: 100%;
  background: var(--card-bg);
  z-index: 2001;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 32px;
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.detail-panel.show { right: 0; }
.detail-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
}
.detail-close:hover { background: var(--primary); transform: rotate(90deg); }
.detail-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
  background: #2a222a;
}
.detail-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.detail-meta span { color: rgba(254,242,242,0.6); }
.detail-meta strong { color: var(--text); }
.detail-plot {
  font-size: 0.9rem;
  color: rgba(254,242,242,0.8);
  line-height: 1.7;
  margin-bottom: 16px;
}
.detail-actors {
  font-size: 0.88rem;
  color: rgba(254,242,242,0.7);
}
.detail-rating-big {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 4px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
/* 响应式 */
@media (max-width: 992px) {
  .content-layout { flex-direction: column; }
  .sidebar-filter {
    width: 100%;
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
  }
  .sidebar-title { display: none; }
  .sidebar-filter .category-pill { margin-bottom: 0; white-space: nowrap; }
  .hero-title { font-size: 2.5rem; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 2.4rem; }
  .detail-panel { width: 100%; }
  .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* --- 子页面追加 --- */
/* 确保 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-color: var(--card-bg);
            color: var(--text);
            border-color: var(--primary);
        }
/* 微调按钮等细节 */
        .btn-outline-light {
            border-color: var(--primary);
            color: var(--text);
        }
.btn-outline-light:hover {
            background-color: var(--primary);
            color: #fff;
        }
/* 导航高亮（关于我们） */
        .nav-link-custom.active-link {
            color: var(--accent) !important;
            font-weight: 700;
        }
/* 关于页特有的一些样式 */
        .about-hero {
            background: linear-gradient(135deg, rgba(220,38,38,.15) 0%, rgba(251,146,60,.08) 100%);
            border-radius: var(--border-radius-lg);
            padding: 3rem 2rem;
            margin-bottom: 2.5rem;
        }
.about-section {
            margin-bottom: 3.5rem;
        }
.about-section h2 {
            font-weight: 800;
            color: var(--text);
            border-left: 6px solid var(--primary);
            padding-left: 1rem;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
        }
.about-section h3 {
            font-weight: 700;
            color: var(--accent);
            margin-top: 1.8rem;
            margin-bottom: 1rem;
        }
.about-text {
            color: rgba(254,242,242,.85);
            line-height: 1.9;
            font-size: 1.05rem;
        }
.about-highlight {
            background: var(--card-bg);
            border-radius: var(--border-radius-md);
            padding: 1.5rem;
            border: 1px solid rgba(220,38,38,.2);
            box-shadow: var(--shadow);
        }
.icon-list {
            list-style: none;
            padding-left: 0;
        }
.icon-list li {
            padding: .5rem 0;
            display: flex;
            align-items: flex-start;
            gap: .8rem;
            color: var(--text);
        }
.icon-list li i {
            color: var(--accent);
            font-size: 1.3rem;
            margin-top: 3px;
        }
.stat-box {
            background: var(--card-bg);
            border-radius: var(--border-radius-md);
            padding: 1.2rem;
            text-align: center;
            border: 1px solid rgba(220,38,38,.15);
        }
.stat-box .number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
        }
.stat-box .label {
            color: var(--text);
            opacity: .8;
        }
.about-hero {
                padding: 2rem 1.2rem;
            }
.about-section h2 {
                font-size: 1.4rem;
            }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .content-hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, rgba(20,16,19,.9) 0%, rgba(30,24,30,.85) 100%);
            position: relative;
            overflow: hidden;
        }
.content-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(220,38,38,.15) 0%, transparent 70%);
            border-radius: 50%;
        }
.content-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }
.content-hero h1 span {
            color: var(--primary);
        }
.content-hero p {
            color: rgba(254,242,242,.75);
            font-size: 1.1rem;
            max-width: 700px;
            line-height: 1.7;
        }
.more-section {
            padding: 60px 0;
        }
.more-section:nth-child(even) {
            background: rgba(30,24,30,.3);
        }
.section-heading {
            margin-bottom: 40px;
        }
.section-heading h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
.section-heading h2 i {
            color: var(--primary);
            margin-right: 10px;
        }
.section-heading p {
            color: rgba(254,242,242,.6);
            font-size: .95rem;
        }
.feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
.feature-card .icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(220,38,38,.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 18px;
        }
.feature-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 10px;
        }
.feature-card p {
            color: rgba(254,242,242,.6);
            font-size: .9rem;
            line-height: 1.6;
            margin: 0;
        }
.category-tag {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(220,38,38,.1);
            color: var(--accent);
            font-size: .85rem;
            font-weight: 500;
            margin: 0 8px 8px 0;
            border: 1px solid rgba(220,38,38,.2);
        }
.guide-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.guide-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,.05);
            display: flex;
            align-items: flex-start;
            color: rgba(254,242,242,.7);
            font-size: .95rem;
            line-height: 1.6;
        }
.guide-list li:last-child {
            border-bottom: none;
        }
.guide-list li i {
            color: var(--primary);
            margin-right: 12px;
            margin-top: 5px;
            font-size: .9rem;
        }
.guide-list li strong {
            color: var(--text);
            font-weight: 600;
        }
.stat-highlight {
            background: var(--card-bg);
            border-radius: var(--border-radius-md);
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(220,38,38,.1);
        }
.stat-highlight .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 4px;
        }
.stat-highlight .label {
            color: rgba(254,242,242,.6);
            font-size: .85rem;
        }
.nav-link-custom.active {
            color: var(--primary) !important;
            font-weight: 600;
        }
.content-card {
            background: var(--card-bg);
            border-radius: var(--border-radius-md);
            padding: 24px;
            border: 1px solid rgba(220,38,38,.08);
            margin-bottom: 20px;
        }
.content-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 14px;
        }
.content-card h3 i {
            color: var(--primary);
            margin-right: 8px;
        }
.content-card p {
            color: rgba(254,242,242,.65);
            font-size: .92rem;
            line-height: 1.7;
            margin-bottom: 10px;
        }

/* --- 子页面追加 --- */
/* 小范围本页专属样式 —— 强化深色氛围，与首页完全一致 */
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    }
.section-title-wrap .section-more {
      color: var(--accent);
      font-weight: 500;
      font-size: 1rem;
    }
.guide-card, .info-card, .list-card {
      background-color: var(--card-bg);
      border-radius: var(--border-radius-md);
      padding: 28px;
      height: 100%;
      border: 1px solid rgba(251, 146, 60, 0.1);
      transition: all 0.2s ease;
      box-shadow: var(--shadow);
    }
.guide-card:hover, .info-card:hover, .list-card:hover {
      transform: translateY(-4px);
      border-color: rgba(251, 146, 60, 0.4);
      box-shadow: 0 12px 40px rgba(220, 38, 38, 0.2);
    }
.guide-card h3, .info-card h3, .list-card h3 {
      color: var(--accent);
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
.guide-card p, .info-card p, .list-card p, .list-card li {
      color: rgba(254, 242, 242, 0.75);
      line-height: 1.7;
      font-size: 0.98rem;
    }
.list-card ul {
      padding-left: 20px;
    }
.list-card li {
      margin-bottom: 10px;
    }
.list-card li::marker {
      color: var(--accent);
    }
.badge-custom {
      background-color: rgba(220, 38, 38, 0.2);
      color: var(--accent);
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 30px;
      font-size: 0.8rem;
      border: 1px solid rgba(220, 38, 38, 0.3);
    }
.footer-bottom {
      border-top: 1px solid rgba(251, 146, 60, 0.1);
      padding-top: 24px;
      color: rgba(254, 242, 242, 0.4);
      font-size: 0.85rem;
    }
.list-inline-item {
      margin-right: 0.5rem;
    }
.btn-more {
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 500;
      transition: 0.2s;
    }
.btn-more:hover {
      background: var(--accent);
      color: #141013;
    }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(220,38,38,.25) 0%, rgba(20,16,19,.9) 100%), url(' {随机图片}
.variety-section {
            padding: 60px 0;
        }
.variety-card {
            background: var(--card-bg);
            border: 1px solid rgba(255,255,255,.06);
            border-radius: var(--border-radius-md);
            padding: 30px;
            height: 100%;
            transition: transform .3s ease, box-shadow .3s ease;
        }
.variety-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }
.variety-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(220,38,38,.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 18px;
        }
.variety-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.variety-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,.05);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
.variety-list li:last-child {
            border-bottom: none;
        }
.variety-list li i {
            color: var(--primary);
            margin-top: 4px;
            font-size: 14px;
            min-width: 16px;
        }
.timeline {
            position: relative;
            padding-left: 30px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), rgba(220,38,38,.1));
        }
.timeline-item {
            position: relative;
            padding: 16px 0;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 24px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 12px rgba(220,38,38,.6);
        }
.feature-compare {
            background: var(--card-bg);
            border-radius: var(--border-radius-md);
            padding: 30px;
            border: 1px solid rgba(255,255,255,.06);
        }
.feature-compare h4 {
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 20px;
        }
.feature-compare ul {
            list-style: none;
            padding: 0;
        }
.feature-compare ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,.05);
            display: flex;
            align-items: center;
            gap: 10px;
        }
.feature-compare ul li:last-child {
            border-bottom: none;
        }
.feature-compare ul li i.fa-check {
            color: #22c55e;
        }
.feature-compare ul li i.fa-times {
            color: #ef4444;
        }
.faq-item {
            background: var(--card-bg);
            border-radius: var(--border-radius-md);
            padding: 24px 28px;
            margin-bottom: 16px;
            border: 1px solid rgba(255,255,255,.06);
        }
.faq-item h5 {
            color: var(--text);
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.faq-item h5 i {
            color: var(--primary);
        }
.faq-item p {
            color: rgba(254,242,242,.8);
            margin: 0;
            line-height: 1.7;
        }
.variety-cta {
            background: linear-gradient(135deg, rgba(220,38,38,.2), rgba(251,146,60,.1));
            border: 1px solid rgba(220,38,38,.2);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            text-align: center;
        }
.variety-hero {
                padding: 70px 0 50px;
            }
.variety-section {
                padding: 40px 0;
            }
.variety-card {
                padding: 20px;
            }

/* --- 子页面追加 --- */
/* 星空影院 动画子页 专属小样式 (合并进全局) */
    .anime-hero-tag {
      background: rgba(220, 38, 38, 0.2);
      backdrop-filter: blur(4px);
      border-left: 4px solid var(--accent);
    }
.studio-card {
      background: var(--card-bg);
      border: 1px solid rgba(220, 38, 38, 0.2);
      border-radius: var(--border-radius-md);
      transition: transform .2s ease, box-shadow .2s;
    }
.studio-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }
.season-badge {
      background: rgba(251, 146, 60, 0.15);
      color: var(--accent);
      border-radius: 30px;
      padding: .25rem .75rem;
      font-size: .8rem;
      font-weight: 600;
    }
.anime-list-group {
      background: transparent;
    }
.anime-list-group .list-group-item {
      background: rgba(30, 24, 30, 0.6);
      border: 1px solid rgba(220, 38, 38, 0.15);
      border-radius: 12px !important;
      margin-bottom: 10px;
      color: var(--text);
    }
.anime-list-group .list-group-item i {
      color: var(--accent);
    }

/* --- 子页面追加 --- */
/* 本页专属:纪录片专题样式 */
        .doc-hero {
            background: linear-gradient(135deg, rgba(20,16,19,.92) 0%, rgba(30,24,30,.85) 100%), url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            padding: 110px 0 60px;
            border-bottom: 1px solid rgba(220,38,38,.2);
        }
.doc-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
.doc-hero h1 span {
            color: var(--accent);
        }
.doc-hero p {
            font-size: 1.1rem;
            opacity: .85;
            max-width: 720px;
            margin: 0 auto;
        }
.doc-section {
            padding: 60px 0;
        }
.doc-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
.doc-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
.doc-card {
            background: var(--card-bg);
            border: 1px solid rgba(220,38,38,.15);
            border-radius: var(--border-radius-md);
            padding: 28px;
            height: 100%;
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
        }
.doc-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }
.doc-card .icon {
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 16px;
        }
.doc-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
        }
.doc-card p {
            font-size: .95rem;
            color: rgba(254,242,242,.7);
            line-height: 1.7;
            margin-bottom: 0;
        }
.featured-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
        }
.featured-item {
            background: rgba(30,24,30,.7);
            border: 1px solid rgba(220,38,38,.1);
            border-radius: var(--border-radius-md);
            overflow: hidden;
            transition: all .3s ease;
            cursor: pointer;
        }
.featured-item:hover {
            border-color: var(--primary);
            transform: scale(1.02);
        }
.featured-item .poster {
            height: 160px;
            background: linear-gradient(135deg, rgba(220,38,38,.2), rgba(251,146,60,.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }
.featured-item .info {
            padding: 16px 18px;
        }
.featured-item .info h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 6px;
        }
.featured-item .info p {
            font-size: .85rem;
            color: rgba(254,242,242,.6);
            margin-bottom: 8px;
        }
.rating-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(220,38,38,.15);
            color: var(--accent);
            border-radius: 20px;
            padding: 3px 12px;
            font-size: .8rem;
            font-weight: 600;
        }
.tip-box {
            background: rgba(220,38,38,.08);
            border-left: 4px solid var(--primary);
            border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
            padding: 20px 24px;
            margin-top: 40px;
        }
.tip-box p {
            margin-bottom: 0;
            font-size: .95rem;
            color: rgba(254,242,242,.8);
        }
.doc-hero h1 { font-size: 2rem; }
.doc-hero { padding: 90px 0 40px; }
.doc-section { padding: 40px 0; }

/* --- 子页面追加 --- */
background: linear-gradient(145deg, rgba(20,16,19,0.9), rgba(30,24,30,0.7)), url(' {随机图片}
.disclaimer-title {
            color: var(--accent);
            font-weight: 800;
            letter-spacing: 0.5px;
        }
.section-block-custom {
            background: var(--card-bg);
            border-radius: var(--border-radius-md);
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: transform 0.2s ease;
        }
.section-block-custom:hover {
            transform: translateY(-3px);
            border-left-color: var(--accent);
        }
.section-block-custom h2, .section-block-custom h3 {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
.section-block-custom p, .section-block-custom li {
            color: rgba(254,242,242,0.88);
            line-height: 1.7;
            font-size: 0.95rem;
        }
.section-block-custom ul {
            padding-left: 1.2rem;
            list-style-type: disc;
        }
.section-block-custom li {
            margin-bottom: 0.4rem;
        }
.text-muted-custom {
            color: rgba(254,242,242,0.6) !important;
            font-size: 0.9rem;
        }
.highlight-strong {
            color: var(--primary);
            font-weight: 600;
        }
hr.divider-custom {
            border: 0;
            height: 1px;
            background: linear-gradient(to right, rgba(220,38,38,0.5), rgba(251,146,60,0.2), transparent);
            margin: 2rem 0;
        }
.section-block-custom {
                padding: 1.5rem 1.2rem;
            }

/* --- 子页面追加 --- */
/* 隐私政策专属样式 */
        .privacy-hero {
            background: linear-gradient(135deg, rgba(20,16,19,.95), rgba(30,24,30,.85));
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(220,38,38,.15);
        }
.privacy-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
        }
.privacy-hero h1 span {
            color: var(--primary);
        }
.privacy-hero .subtitle {
            color: rgba(254,242,242,.7);
            font-size: 1.05rem;
            max-width: 700px;
        }
.privacy-content {
            padding: 50px 0;
        }
.privacy-block {
            background: var(--card-bg);
            border-radius: var(--border-radius-md);
            padding: 32px;
            margin-bottom: 24px;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow);
        }
.privacy-block h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.privacy-block h2 i {
            color: var(--primary);
            font-size: 1.2rem;
        }
.privacy-block p {
            color: rgba(254,242,242,.75);
            line-height: 1.8;
            margin-bottom: 14px;
            font-size: .95rem;
        }
.privacy-block ul {
            padding-left: 20px;
            margin-bottom: 14px;
        }
.privacy-block ul li {
            color: rgba(254,242,242,.75);
            line-height: 1.8;
            font-size: .95rem;
            margin-bottom: 6px;
            position: relative;
        }
.privacy-block ul li::before {
            content: "▸";
            color: var(--primary);
            position: absolute;
            left: -16px;
        }
.privacy-block .highlight-box {
            background: rgba(220,38,38,.08);
            border-radius: 12px;
            padding: 16px 20px;
            margin: 16px 0;
            border: 1px solid rgba(220,38,38,.2);
        }
.privacy-block .highlight-box p {
            margin-bottom: 0;
            color: var(--text);
        }
.privacy-block .highlight-box p i {
            color: var(--primary);
            margin-right: 8px;
        }
.last-updated {
            display: inline-block;
            background: rgba(220,38,38,.1);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: .85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
.contact-privacy {
            background: linear-gradient(135deg, rgba(220,38,38,.12), rgba(251,146,60,.08));
            border-left: 4px solid var(--accent);
        }
.contact-privacy h2 i {
            color: var(--accent);
        }
.privacy-hero h1 {
                font-size: 1.8rem;
            }
.privacy-block {
                padding: 24px 20px;
            }

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