:root {
  --primary: #f472b6;
  --accent: #fbbf24;
  --bg: #fff5f7;
  --text: #4a2530;
  --card-bg: #ffffff;
  --shadow: rgba(244, 114, 182, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "思源宋体", serif;
  --font-sans: "Noto Sans SC", "Source Han Sans SC", "思源黑体", Inter, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); font-weight: 700; color: var(--text); }

/* ====== 导航 ====== */
.navbar-custom {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(244,114,182,0.2);
  padding: 10px 0;
  box-shadow: 0 2px 12px var(--shadow);
  z-index: 999;
}
.navbar-brand {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--primary) !important;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand i { font-size: 1.8rem; color: var(--accent); }
.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  margin: 0 6px;
  padding: 6px 16px !important;
  border-radius: 50px;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.nav-link:hover { background: rgba(244,114,182,0.15); color: var(--primary) !important; }
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ====== Hero 轮播 ====== */
.hero-carousel { margin-top: 70px; }
.carousel-item { position: relative; height: 480px; overflow: hidden; }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.carousel-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(74,37,48,0.7) 0%, rgba(74,37,48,0.2) 100%);
  display: flex;
  align-items: center;
}
.hero-content { max-width: 600px; padding-left: 5%; }
.hero-content h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}
.hero-content p { color: #fce7f3; font-size: 1.1rem; margin-bottom: 20px; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-tag {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.3);
}
.carousel-indicators [data-bs-target] { background-color: var(--primary); width: 30px; height: 4px; border-radius: 4px; }

/* ====== 通用区块 ====== */
.section { padding: 40px 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 28px;
  background: var(--primary);
  border-radius: 6px;
}
.section-title i { color: var(--accent); font-size: 1.4rem; }
.section-more { color: var(--primary); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.section-more:hover { color: var(--text); text-decoration: underline; }

/* ====== 影片卡片 ====== */
.movie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.movie-card {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 3px 12px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  animation: fadeUp 0.6s ease both;
}
.movie-card:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(244,114,182,0.25); }
.movie-poster { position: relative; overflow: hidden; aspect-ratio: 2/3; background: #ffe4ef; }
.movie-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.movie-card:hover .movie-poster img { transform: scale(1.05); }
.movie-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 56px; height: 56px;
  background: rgba(244,114,182,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.movie-card:hover .movie-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.movie-info { padding: 10px 12px; }
.movie-title {
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.movie-meta { display: flex; justify-content: space-between; align-items: center; }
.movie-year { color: #999; font-size: 0.8rem; }
.movie-rating { color: var(--accent); font-weight: 700; font-size: 0.85rem; background: rgba(251,191,36,0.15); padding: 2px 8px; border-radius: 50px; }
.movie-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--primary);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 6px;
}

/* ====== 分类导航胶囊 ====== */
.category-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.category-pill {
  background: #fff;
  border: 1.5px solid #fce7f3;
  color: var(--text);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.category-pill:hover, .category-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ====== 排行榜 ====== */
.ranking-list { background: #fff; border-radius: var(--radius); padding: 16px; box-shadow: 0 3px 12px var(--shadow); }
.rank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  border-bottom: 1px solid #fdf2f8;
  cursor: pointer;
  transition: background 0.2s;
}
.rank-item:last-child { border-bottom: none; }
.rank-item:hover { background: #fff5f7; }
.rank-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.rank-badge.gold { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.rank-badge.silver { background: linear-gradient(135deg, #cbd5e1, #94a3b8); }
.rank-badge.bronze { background: linear-gradient(135deg, #d97706, #b45309); }
.rank-badge.normal { background: #fbcfe8; color: var(--primary); }
.rank-title { font-weight: 600; font-size: 0.95rem; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-score { color: var(--accent); font-weight: 700; font-size: 0.9rem; }

/* ====== 弹窗 ====== */
.movie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(74,37,48,0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.movie-modal-overlay.active { display: flex; }
.movie-modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text);
  transition: all 0.2s;
  z-index: 1;
}
.modal-close:hover { background: var(--primary); color: #fff; transform: rotate(90deg); }
.modal-body { display: flex; gap: 24px; padding: 30px; }
.modal-poster { width: 240px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; }
.modal-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-info { flex: 1; }
.modal-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }
.modal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.modal-tag { background: var(--bg); color: var(--primary); padding: 4px 14px; border-radius: 50px; font-size: 0.85rem; }
.modal-detail { margin-bottom: 10px; font-size: 0.95rem; color: #6b5563; }
.modal-detail strong { color: var(--text); }
.modal-plot { background: #fff5f7; padding: 14px; border-radius: var(--radius-sm); font-size: 0.95rem; line-height: 1.7; border-left: 4px solid var(--primary); }

/* ====== 专题 & FAQ ====== */
.theme-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 3px 12px var(--shadow);
  border: 2px solid #fce7f3;
  position: relative;
}
.theme-card h4 { font-size: 1.2rem; margin-bottom: 8px; }
.theme-card .theme-desc { color: #6b5563; font-size: 0.95rem; margin-bottom: 12px; }
.theme-reasons { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.theme-reason { background: var(--bg); padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; color: var(--primary); }
.theme-movies { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.theme-movie { flex-shrink: 0; width: 120px; text-align: center; cursor: pointer; }
.theme-movie img { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: 10px; margin-bottom: 6px; }
.theme-movie span { font-size: 0.85rem; font-weight: 500; }

.faq-accordion .accordion-item { border: none; border-bottom: 1px solid #fce7f3; background: transparent; }
.faq-accordion .accordion-button {
  background: transparent;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  padding: 16px 4px;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: transparent; }
.faq-accordion .accordion-button::after { background-image: none; content: '+'; font-size: 1.6rem; color: var(--primary); font-weight: 300; }
.faq-accordion .accordion-button:not(.collapsed)::after { content: '−'; }
.faq-accordion .accordion-body { color: #6b5563; font-size: 0.95rem; }

/* ====== 相关推荐 ====== */
.recommend-links { display: flex; flex-wrap: wrap; gap: 12px; }
.recommend-link {
  background: #fff;
  border: 2px solid #fce7f3;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  color: var(--text);
}
.recommend-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

/* ====== 页脚 & 友链 ====== */
.footer {
  background: #3d1f2a;
  color: #fce7f3;
  padding: 40px 0 20px;
  margin-top: 60px;
}
.footer a { color: #fbcfe8; text-decoration: none; }
.footer a:hover { color: var(--accent); }
.footer .brand { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 800; color: #fff; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 30px; padding-top: 16px; font-size: 0.85rem; color: #d4a0b3; }

/* ====== 滚动动画 ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.movie-grid .movie-card:nth-child(1) { animation-delay: 0.05s; }
.movie-grid .movie-card:nth-child(2) { animation-delay: 0.1s; }
.movie-grid .movie-card:nth-child(3) { animation-delay: 0.15s; }
.movie-grid .movie-card:nth-child(4) { animation-delay: 0.2s; }
.movie-grid .movie-card:nth-child(5) { animation-delay: 0.25s; }
.movie-grid .movie-card:nth-child(6) { animation-delay: 0.3s; }
.movie-grid .movie-card:nth-child(7) { animation-delay: 0.35s; }
.movie-grid .movie-card:nth-child(8) { animation-delay: 0.4s; }
.movie-grid .movie-card:nth-child(9) { animation-delay: 0.45s; }
.movie-grid .movie-card:nth-child(10) { animation-delay: 0.5s; }
.movie-grid .movie-card:nth-child(11) { animation-delay: 0.55s; }
.movie-grid .movie-card:nth-child(12) { animation-delay: 0.6s; }

/* 数字滚动 */
.stat-number { font-size: 2rem; font-weight: 800; color: var(--primary); }

@media (max-width: 768px) {
  .hero-carousel { margin-top: 60px; }
  .carousel-item { height: 350px; }
  .hero-content h2 { font-size: 2rem; }
  .modal-body { flex-direction: column; padding: 20px; }
  .modal-poster { width: 100%; max-width: 240px; margin: 0 auto; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
}

/* --- 子页面追加 --- */
/* 覆盖 Bootstrap 可能出现的白底黑字 */
    .card, .card-body { background: var(--card-bg); color: var(--text); border-color: rgba(244, 114, 182, 0.2); }
.list-group-item { background: transparent; color: var(--text); border-color: rgba(244, 114, 182, 0.1); }
.form-control { background: rgba(255, 255, 255, 0.7); color: var(--text); border-color: rgba(244, 114, 182, 0.3); }
.form-control::placeholder { color: rgba(74, 37, 48, 0.5); }
/* 关于页专属 */
    .about-hero { padding: 3rem 0 2rem; border-bottom: 1px dashed rgba(244, 114, 182, 0.3); }
.about-section { padding: 2.8rem 0; border-bottom: 1px solid rgba(244, 114, 182, 0.08); }
.about-section:last-of-type { border-bottom: none; }
.about-title { font-family: var(--font-serif); font-weight: 700; color: var(--text); }
.about-sub { color: var(--primary); font-weight: 600; letter-spacing: 0.02em; }
.feature-icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.stat-label { color: var(--text); opacity: 0.8; }
.text-muted-soft { color: rgba(74, 37, 48, 0.75); }
.principle-card { background: rgba(255, 255, 255, 0.6); border-radius: var(--radius); padding: 1.8rem; height: 100%; transition: transform 0.2s; border: 1px solid rgba(244, 114, 182, 0.15); }
.principle-card:hover { transform: translateY(-4px); }
.divider-heart { text-align: center; color: var(--primary); opacity: 0.4; margin: 1.5rem 0; }
.blockquote-custom { border-left: 4px solid var(--primary); padding: 1rem 1.5rem; background: rgba(244, 114, 182, 0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* --- 子页面追加 --- */
/* 页面专属补充样式 */
        .help-hero {
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(251, 191, 36, 0.1));
            border-radius: var(--radius-lg);
            padding: 3rem 2rem;
            margin: 2rem 0 3rem;
            text-align: center;
            border: 1px solid rgba(244, 114, 182, 0.2);
        }
.help-hero h1 {
            font-family: var(--font-serif);
            font-weight: 900;
            color: var(--text);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
.help-hero h1 .brand-highlight {
            color: var(--primary);
        }
.help-hero p {
            color: var(--text);
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
.help-section {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 8px 30px var(--shadow);
            border: 1px solid rgba(244, 114, 182, 0.1);
        }
.help-section h2 {
            font-family: var(--font-serif);
            font-weight: 800;
            color: var(--text);
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1rem;
            border-left: 4px solid var(--primary);
        }
.help-section h2 .step-num {
            color: var(--primary);
            margin-right: 0.3rem;
        }
.help-section h3 {
            font-family: var(--font-serif);
            font-weight: 700;
            color: var(--text);
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
        }
.help-section p, .help-section li {
            color: var(--text);
            opacity: 0.85;
            line-height: 1.9;
            font-size: 1rem;
        }
.help-section ul, .help-section ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
.help-section li {
            margin-bottom: 0.5rem;
        }
.step-card {
            background: rgba(244, 114, 182, 0.06);
            border-radius: var(--radius-sm);
            padding: 1.2rem 1.5rem;
            margin: 1rem 0;
            border-left: 3px solid var(--primary);
        }
.step-card strong {
            color: var(--primary);
            display: block;
            margin-bottom: 0.3rem;
            font-size: 1.05rem;
        }
.tip-box {
            background: rgba(251, 191, 36, 0.1);
            border-radius: var(--radius-sm);
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border-left: 3px solid var(--accent);
        }
.tip-box strong {
            color: var(--accent);
            display: block;
            margin-bottom: 0.3rem;
        }
.faq-item {
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid rgba(244, 114, 182, 0.15);
        }
.faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
.faq-item h4 {
            color: var(--text);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
.faq-item h4 i {
            color: var(--primary);
        }
.faq-item p {
            margin-bottom: 0;
            padding-left: 2rem;
        }
.badge-custom {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.5rem;
        }
.help-hero { padding: 2rem 1rem; }
.help-hero h1 { font-size: 1.8rem; }
.help-section { padding: 1.5rem; }
.help-section h2 { font-size: 1.3rem; }

/* --- 子页面追加 --- */
/* 本页专属样式 */
    .update-hero {
      background: linear-gradient(135deg, rgba(244, 114, 182, 0.12), rgba(251, 191, 36, 0.08));
      border-radius: var(--radius-lg);
      padding: 3rem 2rem;
      margin-bottom: 2.5rem;
      border: 1px solid rgba(244, 114, 182, 0.18);
    }
.update-hero h1 {
      color: var(--primary);
      font-weight: 800;
      font-size: 2.2rem;
      margin-bottom: 0.8rem;
    }
.update-hero p {
      color: var(--text);
      opacity: 0.85;
      font-size: 1.05rem;
      max-width: 720px;
      line-height: 1.8;
    }
.update-section {
      margin-bottom: 3rem;
    }
.update-section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      padding-bottom: 0.8rem;
      border-bottom: 2px solid rgba(244, 114, 182, 0.2);
    }
.update-section-header h2 {
      color: var(--primary);
      font-weight: 700;
      font-size: 1.5rem;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
.update-section-header h2 i {
      color: var(--accent);
    }
.update-section-header .badge-new {
      background: var(--accent);
      color: #fff;
      font-size: 0.75rem;
      padding: 0.2rem 0.6rem;
      border-radius: 20px;
      font-weight: 600;
    }
.update-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 1.2rem 1.4rem;
      margin-bottom: 1rem;
      border: 1px solid rgba(244, 114, 182, 0.12);
      box-shadow: 0 4px 16px var(--shadow);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
.update-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(244, 114, 182, 0.18);
    }
.update-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
      background: rgba(244, 114, 182, 0.12);
      color: var(--primary);
    }
.update-card-content {
      flex: 1;
    }
.update-card-title {
      font-weight: 600;
      color: var(--text);
      font-size: 1rem;
      margin-bottom: 0.2rem;
    }
.update-card-desc {
      color: var(--text);
      opacity: 0.7;
      font-size: 0.88rem;
      line-height: 1.5;
    }
.update-card-time {
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 500;
      white-space: nowrap;
      background: rgba(244, 114, 182, 0.08);
      padding: 0.2rem 0.6rem;
      border-radius: 20px;
    }
.update-highlight {
      background: linear-gradient(145deg, rgba(251, 191, 36, 0.08), rgba(244, 114, 182, 0.06));
      border: 1px solid rgba(251, 191, 36, 0.25);
    }
.update-highlight .update-card-icon {
      background: rgba(251, 191, 36, 0.15);
      color: var(--accent);
    }
.update-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
.update-list li {
      position: relative;
      padding-left: 1.8rem;
      margin-bottom: 0.8rem;
      color: var(--text);
      opacity: 0.85;
      line-height: 1.6;
      font-size: 0.95rem;
    }
.update-list li::before {
      content: '\f105';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--primary);
    }
.update-list li strong {
      color: var(--primary);
      font-weight: 600;
    }
.schedule-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(244, 114, 182, 0.15);
    }
.schedule-table th {
      background: rgba(244, 114, 182, 0.1);
      color: var(--primary);
      font-weight: 600;
      padding: 0.9rem 1.2rem;
      text-align: left;
      font-size: 0.9rem;
      border-bottom: 1px solid rgba(244, 114, 182, 0.15);
    }
.schedule-table td {
      padding: 0.8rem 1.2rem;
      color: var(--text);
      font-size: 0.9rem;
      border-bottom: 1px solid rgba(244, 114, 182, 0.08);
      background: var(--card-bg);
    }
.schedule-table tr:last-child td {
      border-bottom: none;
    }
.schedule-table td:first-child {
      font-weight: 500;
      color: var(--primary);
      white-space: nowrap;
    }
.tag-chip {
      display: inline-block;
      background: rgba(244, 114, 182, 0.1);
      color: var(--primary);
      padding: 0.15rem 0.6rem;
      border-radius: 16px;
      font-size: 0.75rem;
      font-weight: 500;
      margin-right: 0.3rem;
    }
.update-hero {
        padding: 2rem 1.2rem;
      }
.update-hero h1 {
        font-size: 1.6rem;
      }
.update-card {
        flex-wrap: wrap;
        padding: 1rem;
      }
.update-card-time {
        margin-left: 3.8rem;
      }
.schedule-table {
        font-size: 0.8rem;
      }
.schedule-table th,
      .schedule-table td {
        padding: 0.6rem 0.8rem;
      }

/* --- 子页面追加 --- */
.page-header {
            background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(251, 191, 36, 0.08));
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(244, 114, 182, 0.15);
        }
.page-header h1 {
            font-family: var(--font-serif);
            color: var(--text);
            font-weight: 700;
            font-size: 2.4rem;
            margin-bottom: 12px;
        }
.page-header p {
            color: rgba(74, 37, 48, 0.7);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
        }
.score-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin: 30px 0 40px;
        }
.score-filter .filter-btn {
            padding: 8px 20px;
            border-radius: 50px;
            background: var(--card-bg);
            border: 1px solid rgba(244, 114, 182, 0.25);
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }
.score-filter .filter-btn:hover,
        .score-filter .filter-btn.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
.section-intro {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 4px 20px var(--shadow);
        }
.section-intro h2 {
            font-family: var(--font-serif);
            color: var(--text);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
.section-intro p {
            color: rgba(74, 37, 48, 0.8);
            line-height: 1.8;
            margin-bottom: 10px;
        }
.section-intro .highlight {
            color: var(--primary);
            font-weight: 600;
        }
.quality-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            margin-left: 8px;
        }
.movie-card .movie-rating {
            color: var(--accent);
            font-weight: 700;
        }
.top-note {
            background: rgba(251, 191, 36, 0.1);
            border-left: 4px solid var(--accent);
            padding: 15px 20px;
            border-radius: 8px;
            margin: 30px 0;
            color: var(--text);
            font-size: 0.95rem;
        }

/* --- 子页面追加 --- */
/* 完整榜单页专属样式 */
        .ranking-hero {
            background: linear-gradient(135deg, #fff5f7 0%, #fce7f3 50%, #fdf2f8 100%);
            padding: 60px 0 40px;
            border-bottom: 2px solid rgba(244, 114, 182, 0.15);
        }
.ranking-hero .section-title {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }
.ranking-hero .lead-text {
            color: #8a5560;
            font-size: 1.05rem;
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.7;
        }
.ranking-tabs {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 30px 0 10px;
        }
.ranking-tabs .tab-btn {
            padding: 8px 22px;
            border-radius: 30px;
            background: #fff;
            border: 2px solid rgba(244, 114, 182, 0.25);
            color: #4a2530;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
.ranking-tabs .tab-btn:hover,
        .ranking-tabs .tab-btn.active {
            background: #f472b6;
            border-color: #f472b6;
            color: #fff;
        }
.ranking-card {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 16px 20px;
            margin-bottom: 14px;
            box-shadow: 0 4px 20px var(--shadow);
            border: 1px solid rgba(244, 114, 182, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.ranking-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(244, 114, 182, 0.2);
        }
.ranking-num {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f472b6;
            min-width: 50px;
            text-align: center;
            font-family: var(--font-sans);
        }
.ranking-num.top-1 {
            color: #fbbf24;
            font-size: 2rem;
        }
.ranking-num.top-2 {
            color: #b8b8b8;
            font-size: 1.8rem;
        }
.ranking-num.top-3 {
            color: #cd7f32;
            font-size: 1.8rem;
        }
.ranking-poster {
            width: 80px;
            height: 110px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: #fce7f3;
        }
.ranking-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.ranking-info {
            flex: 1;
            min-width: 0;
        }
.ranking-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.ranking-meta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: #8a5560;
        }
.ranking-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
.ranking-meta i {
            color: #f472b6;
            font-size: 0.8rem;
        }
.ranking-score {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fbbf24;
            margin-left: auto;
            text-align: center;
            min-width: 55px;
        }
.ranking-type {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(244, 114, 182, 0.12);
            color: #f472b6;
            margin-right: 6px;
        }
.ranking-desc {
            font-size: 0.82rem;
            color: #8a5560;
            margin-top: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
.pagination-wrap {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }
.pagination-wrap a {
            padding: 8px 16px;
            border-radius: 8px;
            background: #fff;
            color: #4a2530;
            border: 1px solid rgba(244, 114, 182, 0.25);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
.pagination-wrap a:hover,
        .pagination-wrap a.active {
            background: #f472b6;
            color: #fff;
            border-color: #f472b6;
        }
.ranking-note {
            background: rgba(244, 114, 182, 0.08);
            border-radius: var(--radius);
            padding: 20px 25px;
            margin: 40px 0 0;
            border-left: 4px solid #f472b6;
        }
.ranking-note h3 {
            font-size: 1.1rem;
            color: #f472b6;
            margin-bottom: 10px;
            font-weight: 700;
        }
.ranking-note p {
            color: #6b3a4a;
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 5px;
        }
.ranking-card {
                flex-wrap: wrap;
                padding: 14px;
            }
.ranking-poster {
                width: 70px;
                height: 100px;
            }
.ranking-title {
                font-size: 1rem;
            }
.ranking-score {
                font-size: 1rem;
                min-width: 45px;
            }
.ranking-num {
                font-size: 1.3rem;
                min-width: 35px;
            }

/* --- 子页面追加 --- */
/* 本页专属样式,已与站点风格统一 */
    .top250-hero {
      background: linear-gradient(135deg, rgba(244,114,182,0.08) 0%, rgba(251,191,36,0.06) 100%);
      border: 1px solid rgba(244,114,182,0.15);
      border-radius: var(--radius-lg);
      padding: 48px 32px;
      margin: 32px 0;
      text-align: center;
    }
.top250-hero h1 {
      font-family: var(--font-serif);
      font-weight: 800;
      color: var(--text);
      font-size: 2.2rem;
      margin-bottom: 16px;
    }
.top250-hero h1 span {
      color: var(--primary);
    }
.top250-hero p {
      color: var(--text);
      opacity: 0.75;
      max-width: 640px;
      margin: 0 auto;
      font-size: 1.05rem;
      line-height: 1.8;
    }
.rank-number {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary);
      min-width: 60px;
      text-align: center;
    }
.rank-number .trophy {
      color: var(--accent);
      font-size: 1.3rem;
      display: block;
    }
.rank-info {
      flex: 1;
      padding: 0 16px;
    }
.rank-info h3 {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 6px 0;
    }
.rank-info .meta {
      font-size: 0.85rem;
      color: var(--text);
      opacity: 0.6;
      margin: 0;
    }
.rank-info .desc {
      font-size: 0.9rem;
      color: var(--text);
      opacity: 0.75;
      margin-top: 6px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
.rank-score small {
      display: block;
      font-size: 0.7rem;
      font-weight: 400;
      opacity: 0.85;
    }
.rank-tag {
      display: inline-block;
      background: rgba(251,191,36,0.15);
      color: #a16207;
      border-radius: 20px;
      padding: 2px 12px;
      font-size: 0.75rem;
      font-weight: 500;
      margin-right: 6px;
      margin-top: 4px;
    }
.pagination-area {
      margin-top: 40px;
      text-align: center;
    }
.pagination-area .btn-page {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--card-bg);
      color: var(--text);
      border: 1px solid rgba(244,114,182,0.2);
      border-radius: 30px;
      padding: 10px 24px;
      font-weight: 600;
      transition: all 0.2s ease;
      text-decoration: none;
    }
.pagination-area .btn-page:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
.list-desc {
      background: rgba(244,114,182,0.06);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin-bottom: 32px;
      border-left: 4px solid var(--primary);
    }
.list-desc h2 {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }
.list-desc h2 i {
      color: var(--primary);
      margin-right: 8px;
    }
.list-desc p {
      color: var(--text);
      opacity: 0.7;
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0;
    }
.note-box {
      background: rgba(251,191,36,0.08);
      border: 1px dashed rgba(251,191,36,0.4);
      border-radius: var(--radius-sm);
      padding: 12px 18px;
      margin-top: 24px;
      font-size: 0.85rem;
      color: var(--text);
      opacity: 0.7;
      display: flex;
      align-items: center;
      gap: 10px;
    }
.note-box i {
      color: var(--accent);
    }
.top250-hero h1 { font-size: 1.6rem; }
.rank-number { min-width: 45px; font-size: 1.2rem; }
.rank-info { padding: 0 10px; }

/* --- 子页面追加 --- */
.privacy-hero {
      padding: 60px 0 30px;
      background: linear-gradient(135deg, var(--bg) 0%, rgba(244, 114, 182, 0.08) 100%);
    }
.privacy-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }
.privacy-title {
      font-family: var(--font-sans);
      font-weight: 800;
      font-size: 2.2rem;
      color: var(--text);
      margin-bottom: 10px;
      text-align: center;
    }
.privacy-subtitle {
      text-align: center;
      color: rgba(74, 37, 48, 0.7);
      font-size: 1rem;
      margin-bottom: 40px;
    }
.privacy-section {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      padding: 35px 40px;
      margin-bottom: 25px;
      box-shadow: 0 8px 30px var(--shadow);
    }
.privacy-section h2 {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--primary);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
.privacy-section h2 i {
      color: var(--accent);
      font-size: 1.2rem;
    }
.privacy-section p {
      font-family: var(--font-sans);
      font-size: 0.95rem;
      line-height: 1.8;
      color: rgba(74, 37, 48, 0.85);
      margin-bottom: 16px;
    }
.privacy-section ul {
      padding-left: 20px;
      margin-bottom: 16px;
    }
.privacy-section li {
      font-family: var(--font-sans);
      font-size: 0.95rem;
      line-height: 1.8;
      color: rgba(74, 37, 48, 0.85);
      margin-bottom: 8px;
    }
.privacy-highlight {
      background: rgba(244, 114, 182, 0.06);
      border-left: 4px solid var(--primary);
      padding: 18px 20px;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      margin: 20px 0;
    }
.privacy-highlight p {
      margin-bottom: 0;
    }
.privacy-date {
      text-align: center;
      color: rgba(74, 37, 48, 0.5);
      font-size: 0.85rem;
      margin-top: 30px;
      font-family: var(--font-sans);
    }
.privacy-section {
        padding: 25px 20px;
      }
.privacy-title {
        font-size: 1.6rem;
      }

/* --- 子页面追加 --- */
/* 本页专属样式 —— 免责声明页 */
        .disclaimer-hero {
            background: linear-gradient(135deg, rgba(244,114,182,.08) 0%, rgba(251,191,36,.06) 100%);
            border-bottom: 1px solid rgba(244,114,182,.15);
            padding: 3rem 0 2rem;
        }
.disclaimer-hero h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: .75rem;
        }
.disclaimer-hero p {
            color: rgba(74,37,48,.72);
            font-size: 1.05rem;
            max-width: 720px;
        }
.disclaimer-section {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 2rem 2.2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 6px 24px var(--shadow);
            border: 1px solid rgba(244,114,182,.1);
        }
.disclaimer-section h2 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: .6rem;
        }
.disclaimer-section h2 i {
            font-size: 1.1rem;
            color: var(--accent);
        }
.disclaimer-section p {
            color: var(--text);
            line-height: 1.85;
            margin-bottom: 1rem;
            font-size: .98rem;
        }
.disclaimer-section ul {
            padding-left: 1.2rem;
            color: var(--text);
            line-height: 1.8;
        }
.disclaimer-section ul li {
            margin-bottom: .45rem;
            font-size: .95rem;
        }
.disclaimer-section ul li strong {
            color: var(--primary);
            font-weight: 600;
        }
.disclaimer-alert {
            background: rgba(251,191,36,.1);
            border-left: 4px solid var(--accent);
            border-radius: var(--radius-sm);
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
        }
.disclaimer-alert p {
            margin-bottom: 0;
            font-size: .95rem;
            color: var(--text);
        }
.disclaimer-alert i {
            color: var(--accent);
            margin-right: .5rem;
        }
.disclaimer-footer-note {
            text-align: center;
            margin-top: 2rem;
            padding: 1rem 0 0;
            border-top: 1px solid rgba(244,114,182,.15);
            color: rgba(74,37,48,.6);
            font-size: .9rem;
        }
.disclaimer-hero { padding: 2.2rem 0 1.5rem; }
.disclaimer-hero h1 { font-size: 1.7rem; }
.disclaimer-section { padding: 1.5rem 1.2rem; }

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