:root {
  --primary: #10b981;
  --accent: #fbbf24;
  --bg-dark: #0a1410;
  --bg-card: #111e18;
  --bg-hover: #162820;
  --text-light: #ecfdf5;
  --text-muted: #6b8a7f;
  --border-light: rgba(16, 185, 129, 0.15);
  --shadow-custom: 0 8px 30px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  --font-serif: 'Noto Serif SC', 'Source Han Serif SC', '思源宋体', Georgia, serif;
  --font-sans: 'Inter', 'Noto Sans SC', 'Source Han Sans SC', '思源黑体', system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: var(--font-serif);
  font-weight: 700;
}
a { color: inherit; text-decoration: none; }
/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a1410; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::selection { background: var(--accent); color: #0a1410; }

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999; border-radius: 0 2px 2px 0; transition: width 0.1s ease;
}

/* Navbar */
.navbar {
  background: rgba(10, 20, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  transition: all 0.3s ease;
}
.navbar-brand {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary) !important;
  letter-spacing: 2px;
  display: flex; align-items: center; gap: 8px;
}
.navbar-brand i { color: var(--accent); }
.navbar-brand span { color: var(--text-light); }
.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 6px;
  padding: 8px 16px !important;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.nav-link:hover { color: var(--primary) !important; background: rgba(16, 185, 129, 0.1); }
.navbar-toggler { border: 1px solid var(--border-light); color: var(--text-light); }
.navbar-toggler:focus { box-shadow: none; }

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(16,185,129,0.1) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translateY(-30px) scale(0.9); opacity: 0.7; }
  100% { transform: translateY(30px) scale(1.1); opacity: 1; }
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  min-height: 60px;
}
.hero h1 .highlight { color: var(--primary); }
.hero h1 .highlight-accent { color: var(--accent); }
.hero .lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 30px;
}
.hero-stats { display: flex; gap: 40px; margin-top: 20px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2.5rem; font-weight: 900; color: var(--primary); font-family: var(--font-serif); }
.hero-stat .label { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 1px; }

/* Typing Cursor */
.typing-cursor { display: inline-block; width: 3px; background: var(--accent); animation: blink 0.8s infinite; }
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* Section */
.section { padding: 60px 0; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 30px;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  padding-left: 18px;
}
.section-title::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 28px;
  background: var(--primary);
  border-radius: 3px;
}
.section-subtitle { color: var(--text-muted); font-size: 0.95rem; }

/* Card */
.movie-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  height: 100%;
}
.movie-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-custom);
  border-color: var(--primary);
}
.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
}
.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-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(251, 191, 36, 0.3);
  z-index: 2;
}
.movie-rating {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  z-index: 2;
}
.movie-info { padding: 12px 14px 14px; }
.movie-title { font-size: 1rem; font-weight: 700; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.movie-meta { color: var(--text-muted); font-size: 0.8rem; }

/* Layout */
.content-layout { display: flex; gap: 30px; }
.sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky; top: 100px;
  height: fit-content;
  border: 1px solid var(--border-light);
}
.sidebar-title {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-title i { color: var(--primary); }
.filter-list { list-style: none; }
.filter-item { margin-bottom: 4px; }
.filter-link {
  display: block; padding: 10px 12px;
  border-radius: 6px;
  color: var(--text-muted);
  transition: all 0.25s ease;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}
.filter-link:hover { background: rgba(16, 185, 129, 0.1); color: var(--text-light); border-left-color: var(--primary); }
.filter-link.active { background: rgba(16, 185, 129, 0.15); color: var(--primary); border-left-color: var(--primary); font-weight: 600; }
.filter-link .count { float: right; font-size: 0.75rem; color: var(--text-muted); }
.masonry-content { flex: 1; }

/* Grid */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

/* Rank Badge */
.rank-badge {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #0a1410;
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
  z-index: 2;
}

/* Steps */
.steps-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.step-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.step-item:hover { border-color: var(--primary); transform: translateY(-4px); }
.step-num {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: #0a1410;
  margin-bottom: 15px;
}
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { color: var(--text-muted); font-size: 0.9rem; }

/* Guide */
.guide-box {
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(251,191,36,0.05));
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px;
}
.guide-box h4 { color: var(--primary); margin-bottom: 15px; font-size: 1.4rem; }
.guide-box p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 10px; }

/* Rank List */
.rank-list-item {
  display: flex; align-items: center; gap: 15px;
  padding: 15px;
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.rank-list-item:hover { border-color: var(--primary); transform: translateX(6px); }
.rank-num { font-size: 1.8rem; font-weight: 900; color: var(--primary); width: 50px; text-align: center; font-family: var(--font-serif); }
.rank-poster { width: 60px; height: 80px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.rank-poster img { width: 100%; height: 100%; object-fit: cover; }
.rank-info { flex: 1; }
.rank-info .name { font-weight: 700; margin-bottom: 2px; }
.rank-info .meta { font-size: 0.8rem; color: var(--text-muted); }
.rank-score { color: var(--accent); font-weight: 800; font-size: 1.1rem; }

/* Footer */
.footer {
  background: #0d1a14;
  border-top: 1px solid var(--border-light);
  padding: 50px 0 20px;
  margin-top: 60px;
}
.footer h5 { color: var(--primary); margin-bottom: 15px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-bottom { border-top: 1px solid var(--border-light); padding-top: 20px; margin-top: 30px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* Friend Links */
.friend-links { padding: 40px 0; }
.friend-links .section-title { margin-bottom: 20px; }

/* Back to top */
#back-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #0a1410;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
  border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}
#back-top.show { opacity: 1; visibility: visible; }
#back-top:hover { transform: translateY(-5px); background: var(--accent); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-overlay .modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.modal-overlay .modal-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }
.modal-content {
  background: #0d1a14;
  border-radius: 16px;
  max-width: 600px; width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  position: relative;
  transform: scale(0.9);
  transition: all 0.4s ease;
}
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-poster { position: relative; }
.modal-poster img { width: 100%; height: 300px; object-fit: cover; border-radius: 16px 16px 0 0; }
.modal-poster::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: linear-gradient(to top, #0d1a14, transparent); }
.modal-body { padding: 20px 25px 30px; position: relative; margin-top: -60px; }
.modal-title { font-size: 2rem; font-weight: 900; margin-bottom: 10px; color: var(--text-light); }
.modal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; }
.modal-meta span {
  background: rgba(16,185,129,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}
.modal-score {
  position: absolute; right: 25px; top: -40px;
  background: linear-gradient(135deg, var(--accent), #f59e0b);
  color: #0a1410;
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(251,191,36,0.4);
}
.modal-score .num { font-size: 1.5rem; line-height: 1; }
.modal-score .label { font-size: 0.6rem; letter-spacing: 1px; }
.modal-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 15px; font-size: 0.95rem; }
.modal-cast { color: var(--text-muted); font-size: 0.9rem; }
.modal-cast strong { color: var(--text-light); }

/* Responsive */
@media (max-width: 992px) {
  .content-layout { flex-direction: column; }
  .sidebar { width: 100%; position: static; margin-bottom: 20px; }
  .hero h1 { font-size: 2.2rem; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 15px; }
}
@media (max-width: 768px) {
  .hero { padding: 50px 0 40px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 1.6rem; }
  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 1.8rem; }
  #back-top { bottom: 20px; right: 20px; }
}

/* --- 子页面追加 --- */
/* 本页专属小样式——仅补充页面特有元素，不覆盖全站 */
        .about-hero { padding: 6rem 0 3rem; position: relative; }
.about-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 20% 50%, rgba(16,185,129,.12), transparent 60%); pointer-events: none; }
.about-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.25; }
.about-hero .lead { max-width: 720px; margin: 1.2rem auto 0; }
.section-alt { background: var(--bg-hover); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; background: rgba(16,185,129,.12); color: var(--primary); border: 1px solid var(--border-light); flex-shrink: 0; }
.timeline-item { position: relative; padding-left: 2rem; margin-bottom: 2rem; }
.timeline-item::before { content:''; position:absolute; left: 6px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(16,185,129,.15); }
.timeline-item::after { content:''; position:absolute; left: 10px; top: 22px; bottom: -18px; width: 2px; background: var(--border-light); }
.timeline-item:last-child::after { display: none; }
.about-stats .stat { text-align: center; padding: 1.5rem .5rem; }
.about-stats .stat-num { font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.about-stats .stat-label { color: var(--text-muted); font-size: .9rem; margin-top: .5rem; letter-spacing: .05em; }
.quote-block { border-left: 3px solid var(--accent); padding: .8rem 1.5rem; background: rgba(251, 191, 36, .06); border-radius: 0 var(--radius) var(--radius) 0; }
.value-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.8rem 1.5rem; height: 100%; transition: transform .3s, border-color .3s, box-shadow .3s; }
.value-card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,.4); box-shadow: var(--shadow-custom); }
.value-card h3 { font-size: 1.1rem; margin-bottom: .7rem; }
.value-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.7; margin: 0; }
.join-cta { background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(251,191,36,.05)); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; }
.join-cta h3 { font-size: 1.6rem; }
.about-hero { padding: 4rem 0 2rem; }
.timeline-item { padding-left: 1.5rem; }

/* --- 子页面追加 --- */
.rank-hero { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%); padding: 80px 0 50px; border-bottom: 1px solid var(--border-light); }
.rank-hero h1 { font-size: 2.8rem; font-weight: 800; color: var(--text-light); margin-bottom: 15px; }
.rank-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 700px; }
.rank-section { padding: 50px 0; border-bottom: 1px solid var(--border-light); }
.rank-section-title { font-size: 1.6rem; font-weight: 700; color: var(--text-light); margin-bottom: 5px; }
.rank-section-sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px; }
.rank-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 18px; margin-bottom: 15px; transition: all 0.3s ease; display: flex; align-items: center; gap: 18px; }
.rank-card:hover { background: var(--bg-hover); transform: translateX(5px); box-shadow: var(--shadow-custom); }
.rank-num.top-1 { color: var(--accent); font-size: 2.2rem; }
.rank-num.top-2 { color: #c0a062; }
.rank-num.top-3 { color: #a0522d; }
.rank-name { font-weight: 600; color: var(--text-light); font-size: 1.05rem; margin-bottom: 3px; }
.rank-meta { color: var(--text-muted); font-size: 0.85rem; }
.rank-tag { display: inline-block; background: rgba(16, 185, 129, 0.1); color: var(--primary); padding: 2px 10px; border-radius: 12px; font-size: 0.75rem; margin-right: 5px; border: 1px solid var(--border-light); }
.rank-up { color: var(--primary); font-size: 0.8rem; margin-left: 5px; }
.rank-down { color: #ef4444; font-size: 0.8rem; margin-left: 5px; }
.rank-stable { color: var(--text-muted); font-size: 0.8rem; margin-left: 5px; }
.rank-pill { display: inline-block; background: rgba(16, 185, 129, 0.15); color: var(--primary); padding: 3px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 20px; border: 1px solid var(--border-light); }
.rank-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.rank-grid { grid-template-columns: 1fr 1fr; }
.rank-hero h1 { font-size: 2rem; }

/* --- 子页面追加 --- */
/* 所有组件均复用全局类名，此页额外覆盖个别Bootstrap组件配色以防白底 */
        .filter-item .filter-link.active {
            background: var(--primary);
            color: #0a1410;
        }
.movie-card .movie-badge--action {
            background: var(--accent);
            color: #0a1410;
        }
/* 覆盖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: var(--bg-card);
            color: var(--text-light);
            border-color: var(--border-light);
        }
.form-control::placeholder {
            color: rgba(236, 253, 245, 0.4);
        }
/* 移除bootstrap默认下划线 */
        .nav-link {
            color: var(--text-muted) !important;
        }
.nav-link.active, .nav-link:hover {
            color: var(--text-light) !important;
        }
/* 电影卡片hover效果沿用全局 */
        .movie-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-custom);
        }
.sidebar .filter-link:hover {
            color: var(--accent);
        }
/* 小标题品牌点缀 */
        .section-title span.brand-highlight {
            color: var(--accent);
        }
.hero-stats .hero-stat {
            border-left: 2px solid var(--primary);
        }

/* --- 子页面追加 --- */
/* 本页专属微调：爱情甜剧专题氛围 */
    .category-hero {
      background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(251,191,36,0.08) 100%);
      border-bottom: 1px solid var(--border-light);
    }
.category-hero .hero-stats {
      gap: 2rem;
    }
.romance-tag {
      background: rgba(251,191,36,0.15);
      color: var(--accent);
      border: 1px solid rgba(251,191,36,0.3);
      padding: 0.2rem 0.8rem;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.3px;
      display: inline-block;
    }
.filter-item.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
.sidebar .filter-list .filter-link {
      color: var(--text-muted);
    }
.sidebar .filter-list .filter-link:hover {
      color: var(--primary);
    }
/* 覆盖 Bootstrap 卡片默认白底（如果用到） */
    .card, .card-body {
      background: var(--bg-card);
      color: var(--text-light);
      border-color: var(--border-light);
    }
.card-title, .card-text {
      color: var(--text-light);
    }

/* --- 子页面追加 --- */
/* 科幻专题页专属微调：保持与首页视觉完全一致，仅补充极少量布局辅助 */
    .sci-fi-hero {
      background: linear-gradient(135deg, rgba(16,185,129,.08) 0%, rgba(251,191,36,.04) 100%);
      border-bottom: 1px solid var(--border-light);
    }
.sci-fi-shelf {
      margin-top: 2rem;
    }
.sci-fi-shelf .movie-card {
      transition: transform .2s ease, box-shadow .2s ease;
    }
.sci-fi-shelf .movie-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-custom);
    }
/* 让 Bootstrap 栅格在深色背景下无白块干扰 */
    .row > [class*="col-"] {
      background: transparent;
    }
.container, .row {
      --bs-gutter-x: 1.5rem;
    }
/* 覆盖 Bootstrap 可能带来的白底组件（本页几乎不用 .card，但防御性写入） */
    .card, .card-body, .card-header, .card-footer {
      background: var(--bg-card) !important;
      color: var(--text-light) !important;
      border-color: var(--border-light) !important;
    }

/* --- 子页面追加 --- */
.suspense-hero {
            background: linear-gradient(135deg, #0a1410 0%, #111e18 50%, #1a2e24 100%);
            border-bottom: 1px solid var(--border-light);
            padding: 60px 0 40px;
        }
.suspense-hero h1 {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 15px;
        }
.suspense-hero p {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.7;
        }
.section-header-custom {
            border-left: 4px solid var(--primary);
            padding-left: 15px;
            margin: 40px 0 25px;
        }
.section-header-custom h2 {
            font-family: var(--font-serif);
            color: var(--text-light);
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
.section-header-custom p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 0;
        }
.suspense-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 20px;
            transition: all 0.3s ease;
            height: 100%;
        }
.suspense-card:hover {
            background: var(--bg-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow-custom);
        }
.suspense-card .movie-poster {
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 15px;
            position: relative;
            aspect-ratio: 2/3;
        }
.suspense-card .movie-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.suspense-card .movie-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent);
            color: #0a1410;
            font-weight: 700;
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 20px;
        }
.suspense-card .movie-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 8px;
        }
.suspense-card .movie-meta {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-bottom: 10px;
        }
.suspense-card .movie-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 12px;
        }
.suspense-card .rating {
            color: var(--accent);
            font-weight: 600;
        }
.suspense-card .rating i {
            color: var(--accent);
            margin-right: 4px;
        }
.suspense-tip {
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 20px;
            margin: 30px 0;
        }
.suspense-tip h3 {
            color: var(--text-light);
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-family: var(--font-serif);
        }
.suspense-tip p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 8px;
        }
.suspense-tip i {
            color: var(--primary);
            margin-right: 8px;
        }
.viewing-guide {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 25px;
            margin-top: 30px;
        }
.viewing-guide h3 {
            color: var(--text-light);
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-family: var(--font-serif);
        }
.viewing-guide .guide-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
.viewing-guide .guide-item i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 12px;
            margin-top: 4px;
        }
.viewing-guide .guide-item p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }
.viewing-guide .guide-item strong {
            color: var(--text-light);
        }
.filter-badge {
            background: rgba(16, 185, 129, 0.15);
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-right: 8px;
            margin-bottom: 8px;
            display: inline-block;
        }
.filter-badge i {
            margin-right: 5px;
        }

/* --- 子页面追加 --- */
/* 补充覆盖bootstrap组件，保证配色一致 */
        .card, .card-body {
            background: var(--bg-card);
            color: var(--text-light);
            border-color: var(--border-light);
        }
.form-control, .form-select {
            background: rgba(0,0,0,0.35);
            color: var(--text-light);
            border-color: var(--border-light);
        }
.list-group-item {
            background: var(--bg-card);
            color: var(--text-light);
            border-color: var(--border-light);
        }
.accordion-item, .accordion-button, .accordion-body {
            background: var(--bg-card);
            color: var(--text-light);
            border-color: var(--border-light);
        }
.accordion-button:not(.collapsed) {
            background: var(--bg-hover);
            color: var(--text-light);
        }
.btn-light {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
.btn-outline-secondary {
            border-color: var(--border-light);
            color: var(--text-light);
        }
.btn-outline-secondary:hover {
            background: var(--bg-hover);
            color: var(--text-light);
        }
/* 加强标题字体 */
        .section-title, .sidebar-title, h1, h2, h3, h4 {
            font-family: var(--font-serif);
        }
/* 自定义小细节 */
        .legal-highlight {
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
            background: rgba(251, 191, 36, 0.05);
            border-radius: 0 var(--radius) var(--radius) 0;
        }

/* --- 子页面追加 --- */
/* 本页仅覆盖极少数 Bootstrap 组件配色，其余复用站点样式 */
        .card, .card-body, .list-group-item, .accordion-item, .accordion-button, .accordion-body {
            background: var(--bg-card);
            color: var(--text-light);
            border-color: var(--border-light);
        }
.form-label {
            color: var(--text-muted);
        }
/* 自定义小标题修饰 */
        .guide-section-title {
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
.guide-sub {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
.step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: #04110b;
            border-radius: 50%;
            font-weight: 800;
            font-size: 0.9rem;
            margin-right: 8px;
        }
.faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 1.2rem 1.5rem;
            margin-bottom: 1rem;
        }
.faq-q {
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 0.4rem;
        }
.faq-a {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
.help-icon {
            color: var(--accent);
            margin-right: 8px;
        }
.table-helper {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1rem;
        }
.table-helper table {
            color: var(--text-light);
        }
.table-helper td, .table-helper th {
            border-color: var(--border-light);
        }