:root {
  --primary: #dc2626;
  --accent: #fb923c;
  --bg-dark: #141013;
  --text-light: #fef2f2;
  --border-color: rgba(254, 242, 242, 0.12);
  --card-bg: rgba(255, 255, 255, 0.03);
  --font-serif: 'Noto Serif SC', 'Source Han Serif SC', '思源宋体', serif;
  --font-sans: 'Noto Sans SC', 'Source Han Sans SC', '思源黑体', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@600;700;900&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .hero-title, .section-title, .card-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
}

a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* 顶部导航 */
.navbar-midnight {
  background: rgba(20, 16, 19, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.8rem 0;
  z-index: 1000;
}

.navbar-midnight .navbar-brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-midnight .navbar-brand i {
  color: var(--primary);
  font-size: 1.8rem;
}

.navbar-midnight .nav-link {
  color: rgba(254, 242, 242, 0.85);
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}

.navbar-midnight .nav-link:hover {
  color: var(--accent);
}

.navbar-midnight .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navbar-midnight .nav-link:hover::after {
  width: 60%;
}

.navbar-toggler {
  border-color: var(--border-color) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(254, 242, 242, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero 主视觉 */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20,16,19,0.7), rgba(20,16,19,0.9)), url('{随机图片}') center/cover no-repeat;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  padding: 4rem 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  letter-spacing: 4px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(254, 242, 242, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn-midnight {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.8rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-midnight:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  color: #fff;
}

/* 通用区块 */
.section-padding {
  padding: 5rem 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  position: relative;
}

.section-title i {
  color: var(--primary);
  margin-right: 12px;
}

.section-link {
  font-size: 0.9rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.section-link:hover {
  gap: 12px;
  color: var(--primary);
}

/* 影片卡片 */
.movie-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.movie-card:hover {
  transform: scale(1.03);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.movie-poster {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.08);
}

.movie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 16, 19, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .movie-overlay {
  opacity: 1;
}

.movie-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
}

.movie-card:hover .movie-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-info {
  padding: 1rem 0.8rem;
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
}

.movie-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-meta {
  font-size: 0.8rem;
  color: rgba(254, 242, 242, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.movie-rating {
  color: var(--accent);
  font-weight: 700;
}

.movie-tag {
  font-size: 0.7rem;
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

/* 横向滚动海报行 */
.scroll-row {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-dark);
}

.scroll-row::-webkit-scrollbar {
  height: 6px;
}

.scroll-row::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

.scroll-row::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.scroll-row .col-custom {
  flex: 0 0 200px;
  min-width: 200px;
}

/* 分类海报矩阵 */
.category-matrix .row {
  --bs-gutter-y: 1.5rem;
}

/* 热榜榜单 */
.rank-list {
  list-style: none;
  padding: 0;
}

.rank-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease;
  cursor: pointer;
  gap: 1rem;
}

.rank-item:hover {
  background: rgba(220, 38, 38, 0.08);
}

.rank-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  min-width: 45px;
  font-family: var(--font-serif);
}

.rank-item:nth-child(2) .rank-number {
  color: var(--accent);
}

.rank-item:nth-child(3) .rank-number {
  color: #fbbf24;
}

.rank-poster {
  width: 60px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.rank-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-info {
  flex: 1;
  min-width: 0;
}

.rank-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-desc {
  font-size: 0.8rem;
  color: rgba(254, 242, 242, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-stats {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

/* 时间线 */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.9rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--primary);
  transition: background 0.3s;
}

.timeline-item:hover::before {
  background: var(--primary);
}

.timeline-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.timeline-text {
  font-size: 0.95rem;
  color: rgba(254, 242, 242, 0.75);
  line-height: 1.8;
}

/* 标签页 */
.nav-tabs-midnight {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.nav-tabs-midnight .nav-link {
  border: none;
  background: transparent;
  color: rgba(254, 242, 242, 0.6);
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: 0;
  position: relative;
  transition: color 0.3s;
}

.nav-tabs-midnight .nav-link:hover {
  color: var(--accent);
}

.nav-tabs-midnight .nav-link.active {
  color: var(--primary);
  background: transparent;
}

.nav-tabs-midnight .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

/* 内容区块 */
.content-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.content-block h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.content-block p {
  color: rgba(254, 242, 242, 0.8);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* 友情链接 */
.friend-links {
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 0;
  background: rgba(255, 255, 255, 0.01);
}

.friend-links h5 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-serif);
}

.friend-links a {
  color: rgba(254, 242, 242, 0.7);
  margin-right: 1.5rem;
  font-size: 0.9rem;
}

.friend-links a:hover {
  color: var(--primary);
}

/* 页脚 */
.footer-midnight {
  background: #0d0a0d;
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 2rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.footer-brand i {
  color: var(--primary);
}

.footer-text {
  color: rgba(254, 242, 242, 0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 400px;
}

.footer-links a {
  display: block;
  color: rgba(254, 242, 242, 0.6);
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.copyright {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(254, 242, 242, 0.4);
  font-size: 0.85rem;
}

/* 侧边详情弹窗 */
.detail-sidebar {
  position: fixed;
  top: 0;
  right: -480px;
  width: 460px;
  max-width: 90vw;
  height: 100vh;
  background: #1d171c;
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid var(--border-color);
  overflow-y: auto;
  padding: 2rem;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.detail-sidebar.show {
  right: 0;
}

.detail-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.detail-sidebar-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.detail-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}

.detail-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.detail-poster {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 2/3;
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.detail-meta span {
  background: rgba(220, 38, 38, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--accent);
  border: 1px solid var(--primary);
}

.detail-rating {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.detail-section-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent);
  margin: 1.2rem 0 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.detail-plot {
  color: rgba(254, 242, 242, 0.75);
  line-height: 1.9;
  font-size: 0.95rem;
}

.detail-actors {
  color: rgba(254, 242, 242, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* 回到顶部 */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

/* 滚动进场动画 */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 标签页内容 */
.tab-content-midnight {
  padding: 1rem 0;
}

/* 分类矩阵卡片 */
.category-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-item:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 16, 19, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.category-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.category-count {
  font-size: 0.8rem;
  color: var(--accent);
}

/* 响应式 */
@media (max-width: 768px) {
  .hero-section {
    min-height: 55vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .scroll-row .col-custom {
    flex: 0 0 160px;
    min-width: 160px;
  }
  
  .detail-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* --- 子页面追加 --- */
.about-hero { padding: 120px 0 60px; background: linear-gradient(180deg, rgba(220,38,38,0.08) 0%, transparent 100%); }
.about-section { padding: 60px 0; }
.about-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 16px; padding: 32px; height: 100%; transition: transform 0.3s ease, border-color 0.3s ease; }
.about-card:hover { transform: translateY(-4px); border-color: rgba(220,38,38,0.4); }
.about-card .icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: rgba(220,38,38,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.about-card .icon-wrap i { color: var(--primary); font-size: 20px; }
.about-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--text-light); }
.about-card p { font-size: 14px; line-height: 1.8; color: rgba(254,242,242,0.75); margin-bottom: 0; }
.story-text { font-size: 15px; line-height: 2; color: rgba(254,242,242,0.85); }
.story-text strong { color: var(--primary); }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { padding: 8px 0; font-size: 14px; color: rgba(254,242,242,0.8); display: flex; align-items: center; gap: 10px; }
.feature-list li i { color: var(--primary); font-size: 14px; width: 18px; }
.about-stat { text-align: center; padding: 20px; }
.about-stat .num { font-size: 36px; font-weight: 700; color: var(--primary); line-height: 1; }
.about-stat .label { font-size: 13px; color: rgba(254,242,242,0.6); margin-top: 8px; }
.section-divider { border-top: 1px solid var(--border-color); margin: 0; }
.about-hero { padding: 80px 0 40px; }
.about-section { padding: 40px 0; }
.about-card { padding: 24px; }
.about-stat .num { font-size: 28px; }

/* --- 子页面追加 --- */
/* 页面专属补充样式 */
        .update-section { background: var(--bg-dark); }
.update-content-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; transition: transform .2s ease; }
.update-content-card:hover { transform: translateY(-3px); }
.update-icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.update-list { list-style: none; padding-left: 0; }
.update-list li { padding: .5rem 0; border-bottom: 1px solid var(--border-color); color: var(--text-light); }
.update-list li:last-child { border-bottom: none; }
.update-list li i { color: var(--accent); margin-right: .5rem; }
.update-tag { background: rgba(220, 38, 38, 0.15); color: var(--accent); border: 1px solid rgba(220, 38, 38, 0.3); padding: .25rem .75rem; border-radius: 20px; font-size: .85rem; margin-right: .5rem; display: inline-block; }
.update-badge { background: var(--primary); color: var(--text-light); padding: .3rem .8rem; border-radius: 20px; font-size: .8rem; font-weight: 500; }
.schedule-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.schedule-day { min-width: 60px; font-weight: 600; color: var(--accent); }
.schedule-desc { color: var(--text-light); }
.update-content-card { padding: 1.5rem; }
.schedule-row { flex-direction: column; align-items: flex-start; gap: .3rem; }

/* --- 子页面追加 --- */
/* 页面专属样式 */
    .top-hero {
      background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(20, 16, 19, 0.9) 100%), var(--bg-dark);
      padding: 80px 0 60px;
      border-bottom: 1px solid var(--border-color);
    }
.top-hero .hero-title {
      font-family: var(--font-serif);
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--text-light);
      margin-bottom: 16px;
    }
.top-hero .hero-subtitle {
      color: rgba(254, 242, 242, 0.75);
      font-size: 1.1rem;
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.8;
    }
.filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 32px;
    }
.filter-btn {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      color: var(--text-light);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }
.filter-btn:hover, .filter-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }
.top-section {
      padding: 60px 0;
    }
.top-section-title {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 8px;
      position: relative;
      padding-left: 16px;
    }
.top-section-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 24px;
      background: var(--primary);
      border-radius: 2px;
    }
.top-section-desc {
      color: rgba(254, 242, 242, 0.6);
      font-size: 0.95rem;
      margin-bottom: 32px;
      padding-left: 16px;
    }
.top-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 24px;
    }
.top-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
.top-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    }
.top-card-poster {
      position: relative;
      aspect-ratio: 2/3;
      overflow: hidden;
    }
.top-card-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
.top-card-poster .rating-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(220, 38, 38, 0.9);
      color: #fff;
      font-weight: 700;
      font-size: 0.85rem;
      padding: 4px 10px;
      border-radius: 6px;
      backdrop-filter: blur(4px);
    }
.top-card-body {
      padding: 12px;
    }
.top-card-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
.top-card-meta {
      font-size: 0.8rem;
      color: rgba(254, 242, 242, 0.5);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
.top-card-tag {
      background: rgba(251, 146, 60, 0.15);
      color: var(--accent);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
    }
.rank-highlight {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
      margin-top: 40px;
    }
.rank-highlight h3 {
      font-family: var(--font-serif);
      color: var(--text-light);
      font-size: 1.3rem;
      margin-bottom: 16px;
    }
.rank-highlight p {
      color: rgba(254, 242, 242, 0.7);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 12px;
    }
.top-hero .hero-title {
        font-size: 2rem;
      }
.top-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
      }
.filter-bar {
        gap: 8px;
      }
.filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
      }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .category-hero {
            background: linear-gradient(135deg, rgba(20,16,19,0.9) 0%, rgba(220,38,38,0.2) 100%);
            border-bottom: 1px solid var(--border-color);
            padding: 60px 0 40px;
        }
.category-hero h1 {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 15px;
        }
.category-hero p {
            color: rgba(254, 242, 242, 0.7);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
        }
.category-section {
            padding: 50px 0;
            border-bottom: 1px solid var(--border-color);
        }
.category-section:last-child {
            border-bottom: none;
        }
.category-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
        }
.category-header h2 {
            font-family: var(--font-serif);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-light);
            margin: 0;
        }
.category-header h2 i {
            color: var(--primary);
            margin-right: 10px;
        }
.category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }
.category-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 20px 15px;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }
.category-card:hover {
            background: rgba(220, 38, 38, 0.1);
            border-color: var(--primary);
            transform: translateY(-3px);
        }
.category-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 10px;
            display: block;
        }
.category-card span {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
        }
.category-card small {
            display: block;
            color: rgba(254, 242, 242, 0.5);
            font-size: 0.75rem;
            margin-top: 5px;
        }
.tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
.tag-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 6px 16px;
            color: var(--text-light);
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
.tag-item:hover {
            background: var(--primary);
            border-color: var(--primary);
        }
.hot-tag {
            background: rgba(220, 38, 38, 0.15);
            border-color: var(--primary);
        }
.hot-tag i {
            color: var(--accent);
            margin-right: 4px;
        }
.filter-group {
            display: inline-flex;
            align-items: center;
            margin-right: 25px;
            margin-bottom: 10px;
        }
.filter-group label {
            color: rgba(254, 242, 242, 0.6);
            font-size: 0.85rem;
            margin-right: 10px;
            white-space: nowrap;
        }
.filter-group .btn-group .btn {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-light);
            font-size: 0.85rem;
            padding: 4px 14px;
        }
.filter-group .btn-group .btn:hover,
        .filter-group .btn-group .btn.active {
            background: var(--primary);
            border-color: var(--primary);
        }
.count-info {
            color: rgba(254, 242, 242, 0.5);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
.count-info strong {
            color: var(--accent);
        }
.category-hero h1 { font-size: 1.8rem; }
.category-header h2 { font-size: 1.3rem; }
.category-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
.filter-group { display: block; margin-bottom: 15px; }
.filter-group label { display: block; margin-bottom: 5px; }

/* --- 子页面追加 --- */
/* 本页专属样式 —— 免责声明内容排版 */
    .disclaimer-hero {
      background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(20, 16, 19, 0.9) 60%), var(--bg-dark);
      padding: 80px 0 60px;
      border-bottom: 1px solid var(--border-color);
    }
.disclaimer-hero h1 {
      font-family: var(--font-sans);
      font-weight: 800;
      font-size: 2.4rem;
      color: var(--text-light);
      margin-bottom: 12px;
    }
.disclaimer-hero h1 i {
      color: var(--accent);
      margin-right: 10px;
    }
.disclaimer-hero .subtitle {
      color: rgba(254, 242, 242, 0.7);
      font-size: 1.05rem;
      max-width: 720px;
    }
.disclaimer-body {
      padding: 60px 0 80px;
    }
.disclaimer-section {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 36px 40px;
      margin-bottom: 30px;
      backdrop-filter: blur(8px);
      transition: border-color 0.3s;
    }
.disclaimer-section:hover {
      border-color: rgba(220, 38, 38, 0.4);
    }
.disclaimer-section h2 {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 1.45rem;
      color: var(--text-light);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
.disclaimer-section h2 i {
      color: var(--primary);
      font-size: 1.2rem;
    }
.disclaimer-section p,
    .disclaimer-section li {
      color: rgba(254, 242, 242, 0.82);
      line-height: 1.85;
      font-size: 0.98rem;
    }
.disclaimer-section ul {
      padding-left: 20px;
    }
.disclaimer-section li {
      margin-bottom: 8px;
    }
.disclaimer-section strong {
      color: var(--text-light);
    }
.disclaimer-section .highlight {
      color: var(--accent);
      font-weight: 600;
    }
.update-info {
      color: rgba(254, 242, 242, 0.5);
      font-size: 0.88rem;
      text-align: center;
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid var(--border-color);
    }
.disclaimer-hero { padding: 60px 0 40px; }
.disclaimer-hero h1 { font-size: 1.8rem; }
.disclaimer-section { padding: 24px 22px; }

/* --- 子页面追加 --- */
.privacy-section { padding: 4rem 0; }
.privacy-header { background: var(--bg-dark); padding: 3rem 0; border-bottom: 1px solid var(--border-color); }
.privacy-header h1 { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--text-light); margin-bottom: 1rem; }
.privacy-header p { color: rgba(254, 242, 242, 0.7); max-width: 700px; }
.privacy-content { max-width: 900px; margin: 0 auto; }
.privacy-content h2 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--primary); margin-bottom: 1.5rem; margin-top: 2.5rem; }
.privacy-content h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--accent); margin-bottom: 1rem; margin-top: 2rem; }
.privacy-content p { color: rgba(254, 242, 242, 0.8); line-height: 1.8; margin-bottom: 1rem; }
.privacy-content ul, .privacy-content ol { color: rgba(254, 242, 242, 0.8); line-height: 1.8; margin-bottom: 1rem; padding-left: 1.5rem; }
.privacy-content li { margin-bottom: 0.5rem; }
.privacy-content .highlight { background: var(--card-bg); border-left: 3px solid var(--primary); padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
.privacy-content .highlight p { margin-bottom: 0; }
.privacy-footer { background: var(--bg-dark); padding: 2rem 0; border-top: 1px solid var(--border-color); margin-top: 3rem; }
.privacy-footer p { color: rgba(254, 242, 242, 0.5); text-align: center; margin: 0; }
.privacy-header h1 { font-size: 2rem; }
.privacy-content h2 { font-size: 1.5rem; }
.privacy-content h3 { font-size: 1.2rem; }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(20,16,19,.95) 0%, rgba(220,38,38,.3) 100%), url(' {随机图片}
.movie-hero .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
.movie-hero .hero-subtitle {
            font-size: 1.2rem;
            opacity: .85;
            max-width: 700px;
            margin: 0 auto;
        }
.category-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            padding: 30px 0 10px;
        }
.category-pill {
            padding: 8px 20px;
            border-radius: 30px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            font-size: .9rem;
            cursor: pointer;
            transition: all .3s ease;
            text-decoration: none;
        }
.category-pill:hover, .category-pill.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(220,38,38,.3);
        }
.movie-section-title {
            font-family: var(--font-serif);
            font-size: 2rem;
            font-weight: 700;
            margin: 50px 0 30px;
            padding-left: 18px;
            border-left: 4px solid var(--primary);
            color: var(--text-light);
        }
.featured-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            transition: transform .3s ease, box-shadow .3s ease;
            height: 100%;
        }
.featured-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(220,38,38,.2);
        }
.featured-poster {
            position: relative;
            padding-top: 140%;
            overflow: hidden;
        }
.featured-poster img {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
        }
.featured-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to top, rgba(20,16,19,.95) 0%, transparent 60%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity .3s ease;
        }
.featured-card:hover .featured-overlay {
            opacity: 1;
        }
.featured-info {
            width: 100%;
        }
.featured-info .movie-name {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-light);
        }
.featured-info .movie-meta {
            font-size: .85rem;
            color: rgba(254,242,242,.7);
            margin-bottom: 10px;
        }
.featured-info .movie-rating {
            color: var(--accent);
            font-weight: 700;
            font-size: 1rem;
        }
.movie-filter-bar {
            background: rgba(255,255,255,.03);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            margin: 40px 0;
        }
.filter-label {
            color: var(--text-light);
            font-size: .9rem;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }
.watch-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 25px;
            background: var(--primary);
            color: #fff;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all .3s ease;
        }
.watch-btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(220,38,38,.4);
            color: #fff;
        }
.movie-hero .hero-title {
                font-size: 2rem;
            }
.movie-hero .hero-subtitle {
                font-size: 1rem;
            }
.movie-section-title {
                font-size: 1.6rem;
            }