:root {
  --primary: #10b981;
  --accent: #fbbf24;
  --bg: #0a1410;
  --text: #ecfdf5;
  --text-secondary: #a7f3d0;
  --border: rgba(16, 185, 129, 0.2);
  --card-bg: #112019;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Source Han Sans CN', '思源黑体', 'Noto Sans SC', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.serif-font { font-family: 'Source Han Serif CN', '思源宋体', 'Noto Serif SC', serif; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

/* Navbar */
.navbar-custom {
  background: rgba(10, 20, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
}
.navbar-brand i { margin-right: 8px; color: var(--accent); }
.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary) !important; }
.navbar-toggler { border-color: var(--border); }

/* Hero Section */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10,20,16,0.97) 0%, rgba(16,185,129,0.3) 50%, rgba(10,20,16,0.95) 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-title {
  font-family: 'Source Han Serif CN', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Section styling */
.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.section-title {
  font-family: 'Source Han Serif CN', serif;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  padding-left: 1.2rem;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--primary);
  border-radius: 2px;
}
.section-title i {
  color: var(--accent);
  margin-right: 0.5rem;
  font-size: 1.4rem;
}

/* Film card grid */
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.film-card {
  position: relative;
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.film-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}
.film-poster {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.film-card:hover .film-poster img { transform: scale(1.1); }
.film-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(251, 191, 36, 0.9);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 5;
}
.film-rating {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 5;
}
.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,16,0.95) 0%, transparent 60%);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s;
}
.film-card:hover .film-overlay { opacity: 1; }
.film-overlay h5 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.film-overlay p { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.film-overlay .film-meta { font-size: 0.75rem; color: var(--text-secondary); }
.film-info {
  padding: 0.8rem;
}
.film-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.film-info .year-type { font-size: 0.75rem; color: var(--text-secondary); }

/* Rank list */
.rank-list {
  list-style: none;
}
.rank-item {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  background: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid var(--border);
}
.rank-item:hover { background: #1a2e25; transform: translateX(5px); }
.rank-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-right: 1rem;
  min-width: 2.5rem;
  text-align: center;
}
.rank-item:first-child .rank-number { color: var(--accent); font-size: 2rem; }
.rank-item:nth-child(2) .rank-number { color: var(--accent); font-size: 1.8rem; }
.rank-item:nth-child(3) .rank-number { color: var(--accent); font-size: 1.6rem; }
.rank-poster {
  width: 50px;
  height: 70px;
  border-radius: 4px;
  object-fit: cover;
  margin-right: 1rem;
  flex-shrink: 0;
}
.rank-info { flex: 1; }
.rank-info h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.rank-info .rank-meta { font-size: 0.8rem; color: var(--text-secondary); }
.rank-score { font-weight: 700; color: var(--accent); font-size: 1.1rem; }

/* Comparison table */
.comparison-table {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.comparison-table th {
  background: rgba(16, 185, 129, 0.1);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { font-weight: 600; }
.comparison-table .fa-check { color: var(--primary); }
.comparison-table .fa-times { color: #ef4444; }

/* Numbered list */
.steps-list {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}
.steps-list li {
  counter-increment: step;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

/* Side drawer */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: #0f1a14;
  z-index: 1000;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}
.drawer-close:hover { color: var(--accent); }
.drawer-poster {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.drawer-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.drawer-info .meta-row {
  display: flex;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.drawer-info .meta-label {
  color: var(--primary);
  min-width: 80px;
  font-weight: 600;
}
.drawer-info .meta-value { color: var(--text); }
.drawer-plot {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-links a { font-size: 0.9rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--primary); }
.copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* Tips & FAQ */
.tips-section {
  background: rgba(16, 185, 129, 0.05);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--border);
}
.tips-section h3 {
  font-family: 'Source Han Serif CN', serif;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.tips-section ul { list-style: none; padding: 0; }
.tips-section ul li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.9rem;
}
.tips-section ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

/* Scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Mobile nav */
@media (max-width: 768px) {
  .navbar-collapse {
    background: var(--bg);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
  }
  .hero-title { font-size: 2rem; }
  .stat-number { font-size: 2.5rem; }
  .film-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
  .section { padding: 3rem 0; }
  .drawer { width: 100%; max-width: 100%; }
}

/* --- 子页面追加 --- */
/* 关于页专属补充样式 */
        .about-hero {
            background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, rgba(251,191,36,0.08) 50%, rgba(10,20,16,0.9) 100%);
            border-bottom: 1px solid var(--border);
            padding: 80px 0 60px;
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1rem;
        }
.about-hero .lead {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto;
        }
.about-section {
            padding: 70px 0;
        }
.about-section h2 {
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.8rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
.about-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
.about-section p, .about-section li {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.05rem;
        }
.about-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.about-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
.about-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
.about-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.8rem;
        }
.about-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
.stat-box {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
        }
.stat-box .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
        }
.stat-box .label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 5px;
        }
.timeline {
            position: relative;
            padding-left: 30px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }
.timeline-item {
            position: relative;
            margin-bottom: 25px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            border: 2px solid var(--bg);
        }
.timeline-item .time {
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
        }
.timeline-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin: 5px 0;
        }
.timeline-item p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }
.feature-list {
            list-style: none;
            padding: 0;
        }
.feature-list li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
        }
.feature-list li i {
            position: absolute;
            left: 0;
            top: 12px;
            color: var(--primary);
        }
.about-footer-note {
            border-top: 1px solid var(--border);
            margin-top: 40px;
            padding-top: 30px;
        }

/* --- 子页面追加 --- */
.today-hero {
      background: linear-gradient(135deg, var(--bg) 0%, #0d1f18 100%);
      padding: 60px 0 40px;
      border-bottom: 1px solid var(--border);
    }
.today-hero h1 {
      color: var(--primary);
      font-weight: 800;
    }
.today-hero p {
      color: var(--text-secondary);
    }
.section-tag {
      display: inline-block;
      background: rgba(16, 185, 129, 0.15);
      border: 1px solid var(--border);
      color: var(--primary);
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      margin-bottom: 12px;
    }
.update-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
.update-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }
.update-card h3 {
      color: var(--text);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }
.update-card p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-bottom: 12px;
    }
.update-meta {
      display: flex;
      gap: 16px;
      color: var(--text-secondary);
      font-size: 0.8rem;
    }
.update-meta i {
      color: var(--primary);
      margin-right: 4px;
    }
.category-badge {
      background: rgba(251, 191, 36, 0.15);
      color: var(--accent);
      padding: 2px 10px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 500;
    }
.time-badge {
      background: rgba(16, 185, 129, 0.1);
      color: var(--primary);
      padding: 2px 10px;
      border-radius: 12px;
      font-size: 0.75rem;
    }
.btn-outline-primary-custom {
      border: 1px solid var(--primary);
      color: var(--primary);
      background: transparent;
      padding: 8px 24px;
      border-radius: 8px;
      font-weight: 500;
      transition: all 0.2s;
    }
.btn-outline-primary-custom:hover {
      background: var(--primary);
      color: var(--bg);
    }
.btn-primary-custom {
      background: var(--primary);
      color: var(--bg);
      border: none;
      padding: 8px 24px;
      border-radius: 8px;
      font-weight: 500;
      transition: all 0.2s;
    }
.btn-primary-custom:hover {
      opacity: 0.9;
      color: var(--bg);
    }

/* --- 子页面追加 --- */
/* 本页专属补充样式（程序会自动合并进站点CSS） */
        .rank-header {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            border-bottom: 1px solid var(--border);
            padding-bottom: 12px;
            margin-bottom: 20px;
        }
.rank-header h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            margin: 0;
        }
.rank-header .rank-type-tag {
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 500;
        }
.rank-item:nth-child(-n+3) .rank-number {
            color: var(--accent);
        }
.rank-item-info {
            flex: 1;
            min-width: 0;
        }
.rank-item-title {
            font-weight: 600;
            color: var(--text);
            font-size: 1.05rem;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.rank-item-meta {
            color: var(--text-secondary);
            font-size: 0.85rem;
            opacity: 0.8;
        }
.rank-item-score {
            font-weight: 700;
            color: var(--accent);
            font-size: 1.1rem;
            white-space: nowrap;
        }
.top3-badge {
            display: inline-block;
            background: rgba(251,191,36,0.15);
            color: var(--accent);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 20px;
            margin-left: 8px;
            letter-spacing: 0.5px;
        }
.rank-note {
            background: rgba(16,185,129,0.06);
            border-left: 3px solid var(--primary);
            padding: 14px 18px;
            border-radius: 0 8px 8px 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 40px;
        }
.rank-note i {
            color: var(--primary);
            margin-right: 8px;
        }
.rank-item-score {
                font-size: 0.95rem;
            }
.rank-header h2 {
                font-size: 1.3rem;
            }

/* --- 子页面追加 --- */
/* 本页专属样式：分类导航页特有 */
        .category-hero {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(251, 191, 36, 0.08) 100%);
            padding: 60px 0 40px;
            border-bottom: 1px solid var(--border);
        }
.category-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            color: var(--text);
        }
.category-hero h1 span {
            color: var(--primary);
        }
.category-hero p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 720px;
            line-height: 1.8;
        }
.category-grid-section {
            padding: 50px 0 20px;
        }
.category-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
.category-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }
.category-card .icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 18px;
            background: rgba(16, 185, 129, 0.12);
            color: var(--primary);
        }
.category-card .icon-wrap.accent {
            background: rgba(251, 191, 36, 0.12);
            color: var(--accent);
        }
.category-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }
.category-card .count {
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 12px;
            display: block;
        }
.category-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }
.category-card .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
.category-card .tags span {
            font-size: 0.75rem;
            padding: 3px 10px;
            border-radius: 20px;
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid var(--border);
            color: var(--text-secondary);
        }
.category-card .go-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 6px;
            transition: gap 0.3s ease;
        }
.category-card .go-link:hover {
            gap: 12px;
            color: var(--accent);
        }
.section-divider {
            border-top: 1px solid var(--border);
            margin: 40px 0 0;
        }
.sub-section {
            padding: 40px 0;
        }
.sub-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
.sub-section h2 i {
            color: var(--primary);
            margin-right: 10px;
        }
.sub-section .sub-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 24px;
            line-height: 1.7;
        }
.mini-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 18px 20px;
            margin-bottom: 16px;
            transition: border-color 0.3s ease, transform 0.2s ease;
            height: 100%;
        }
.mini-card:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }
.mini-card .mini-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            background: rgba(16, 185, 129, 0.1);
            color: var(--primary);
            margin-bottom: 12px;
        }
.mini-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
        }
.mini-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 8px;
        }
.mini-card .mini-link {
            font-size: 0.82rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
.mini-card .mini-link:hover {
            color: var(--accent);
        }
.tip-box {
            background: rgba(251, 191, 36, 0.06);
            border: 1px solid rgba(251, 191, 36, 0.2);
            border-radius: 12px;
            padding: 18px 22px;
            margin-top: 30px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
.tip-box i {
            color: var(--accent);
            font-size: 1.2rem;
            margin-top: 2px;
        }
.tip-box p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
.tip-box p strong {
            color: var(--text);
        }
.category-hero h1 {
                font-size: 1.8rem;
            }
.category-hero {
                padding: 40px 0 30px;
            }

/* --- 子页面追加 --- */
/* 本页专属微调 */
    .movie-hero { padding: 80px 0 40px; background: linear-gradient(180deg, rgba(10,20,16,0.95) 0%, var(--bg) 100%); border-bottom: 1px solid var(--border); }
.movie-hero .hero-title { font-size: 2.6rem; font-weight: 800; margin-bottom: 12px; }
.movie-hero .hero-subtitle { color: var(--text-secondary); font-size: 1.1rem; max-width: 720px; margin: 0 auto; }
.movie-stats-row { display: flex; gap: 30px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.movie-stat-item { text-align: center; }
.movie-stat-item .stat-number { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.movie-stat-item .stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 4px; }
.category-tag-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 30px 0 10px; }
.category-tag { padding: 6px 16px; border: 1px solid var(--border); border-radius: 30px; font-size: 0.85rem; color: var(--text); background: rgba(16,185,129,0.06); transition: all .3s; }
.category-tag:hover { background: rgba(16,185,129,0.15); border-color: var(--primary); color: var(--text); }
.category-tag.active { background: var(--primary); color: #04100b; border-color: var(--primary); font-weight: 600; }
.feature-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: transform .3s, box-shadow .3s; }
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-item i { font-size: 1.6rem; color: var(--primary); margin-bottom: 12px; }
.feature-item h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.feature-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.ranking-tip { background: rgba(251,191,36,0.06); border-left: 3px solid var(--accent); padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 24px 0; font-size: 0.92rem; color: var(--text-secondary); }
.ranking-tip i { color: var(--accent); margin-right: 8px; }

/* --- 子页面追加 --- */
/* 页面级微调 - 仅针对本页特定布局 */
    .cat-hero {
      background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(10,20,16,0.9) 70%);
      border-bottom: 1px solid var(--border);
    }
.cat-badge {
      background: var(--accent);
      color: #0a1410;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.2rem 0.8rem;
      border-radius: 20px;
      display: inline-block;
      letter-spacing: 0.5px;
    }
.genre-chip {
      background: rgba(16,185,129,0.1);
      border: 1px solid var(--border);
      color: var(--text);
      padding: 0.4rem 1.2rem;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.2s;
      display: inline-block;
      margin: 0.25rem 0.15rem;
      cursor: default;
    }
.genre-chip:hover {
      background: rgba(16,185,129,0.25);
      border-color: var(--primary);
    }
.tv-sort-bar {
      border-bottom: 1px solid var(--border);
      padding-bottom: 1rem;
      margin-bottom: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }
.tv-sort-bar .sort-link {
      color: var(--text-secondary);
      font-weight: 500;
      padding: 0.3rem 1rem;
      border-radius: 30px;
      border: 1px solid transparent;
      text-decoration: none;
      font-size: 0.9rem;
    }
.tv-sort-bar .sort-link.active, .tv-sort-bar .sort-link:hover {
      color: var(--primary);
      border-color: var(--primary);
      background: rgba(16,185,129,0.05);
    }
.tv-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 1.5rem;
    }
.tv-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
      }
.tv-card-item {
      background: var(--card-bg);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform 0.2s, box-shadow 0.2s;
      height: 100%;
    }
.tv-card-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(16,185,129,0.4);
    }
.tv-poster {
      aspect-ratio: 2/3;
      background: #1a2e25;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: rgba(255,255,255,0.15);
    }
.tv-info {
      padding: 0.8rem;
    }
.tv-title {
      font-weight: 600;
      color: var(--text);
      font-size: 0.95rem;
      line-height: 1.4;
      margin-bottom: 0.2rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
.tv-meta {
      color: var(--text-secondary);
      font-size: 0.8rem;
      display: flex;
      justify-content: space-between;
    }
.tv-rating {
      color: var(--accent);
      font-weight: 600;
    }
.tv-badge {
      background: rgba(251,191,36,0.15);
      color: var(--accent);
      font-size: 0.7rem;
      padding: 0.1rem 0.5rem;
      border-radius: 12px;
      font-weight: 600;
    }
.section-subhead {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-secondary);
      margin-top: 0.2rem;
    }
.list-unstyled-cat {
      list-style: none;
      padding: 0;
      margin: 0;
    }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .show-hero {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(10, 20, 16, 0.9) 100%);
            padding: 80px 0 60px;
            border-bottom: 1px solid var(--border);
        }
.show-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }
.show-hero h1 span {
            color: var(--primary);
        }
.show-hero p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
.show-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
.show-stat-item {
            text-align: center;
        }
.show-stat-item .number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }
.show-stat-item .label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 4px;
        }
.category-tabs {
            padding: 30px 0 10px;
        }
.category-tabs .tab-btn {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            padding: 8px 20px;
            border-radius: 30px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
.category-tabs .tab-btn:hover,
        .category-tabs .tab-btn.active {
            background: var(--primary);
            color: var(--bg);
            border-color: var(--primary);
        }
.section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60%;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
.show-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 25px;
        }
.show-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
.show-card .show-poster {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }
.show-card .show-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
.show-card:hover .show-poster img {
            transform: scale(1.05);
        }
.show-card .show-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary);
            color: var(--bg);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
.show-card .show-rating {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: var(--accent);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
        }
.show-card .show-info {
            padding: 15px;
        }
.show-card .show-info h3 {
            color: var(--text);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 6px;
        }
.show-card .show-info p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-bottom: 8px;
        }
.show-card .show-info .show-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-secondary);
            font-size: 0.8rem;
        }
.show-card .show-info .show-meta i {
            color: var(--primary);
            margin-right: 4px;
        }
.featured-list {
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
        }
.featured-list .list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }
.featured-list .list-header h3 {
            color: var(--text);
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0;
        }
.featured-list .list-header a {
            color: var(--primary);
            text-decoration: none;
            font-size: 0.9rem;
        }
.featured-list .list-header a:hover {
            color: var(--accent);
        }
.show-rank-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(16, 185, 129, 0.1);
        }
.show-rank-item:last-child {
            border-bottom: none;
        }
.show-rank-item .rank-num {
            width: 40px;
            text-align: center;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
        }
.show-rank-item .rank-info {
            flex: 1;
            padding: 0 10px;
        }
.show-rank-item .rank-info h4 {
            color: var(--text);
            font-size: 0.95rem;
            font-weight: 600;
            margin: 0;
        }
.show-rank-item .rank-info span {
            color: var(--text-secondary);
            font-size: 0.8rem;
        }
.show-rank-item .rank-tag {
            background: rgba(251, 191, 36, 0.15);
            color: var(--accent);
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
        }
.update-timeline {
            position: relative;
            padding-left: 30px;
        }
.update-timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }
.update-item {
            position: relative;
            margin-bottom: 25px;
        }
.update-item::before {
            content: '';
            position: absolute;
            left: -25px;
            top: 5px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary);
        }
.update-item .update-date {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 4px;
        }
.update-item h4 {
            color: var(--text);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
.update-item p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin: 0;
        }
.notice-box {
            background: rgba(251, 191, 36, 0.08);
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin: 40px 0;
        }
.notice-box h4 {
            color: var(--accent);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
.notice-box p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin: 0;
        }
.show-hero h1 {
                font-size: 2rem;
            }
.show-stats {
                gap: 20px;
            }
.show-stat-item .number {
                font-size: 1.5rem;
            }

/* --- 子页面追加 --- */
background: linear-gradient(135deg, rgba(16,185,129,0.25) 0%, rgba(10,20,16,0.9) 60%), url(' {随机图片}
.anime-hero .hero-title { color: var(--primary); }
.anime-hero .hero-subtitle { color: var(--text-secondary); max-width: 720px; }
.anime-tag { display: inline-block; padding: 4px 14px; border: 1px solid var(--border); border-radius: 20px; font-size: 13px; color: var(--text-secondary); background: rgba(16,185,129,0.08); transition: all .3s ease; margin-right: 10px; margin-bottom: 10px; }
.anime-tag:hover { background: rgba(16,185,129,0.2); color: var(--text); border-color: var(--primary); transform: translateY(-2px); }
.anime-section-title { font-size: 1.6rem; font-weight: 700; color: var(--text); margin: 40px 0 20px; display: flex; align-items: center; gap: 10px; }
.anime-section-title::before { content: ''; display: inline-block; width: 4px; height: 24px; background: var(--accent); border-radius: 2px; }
.featured-banner { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin: 30px 0; display: flex; gap: 20px; align-items: center; }
.featured-banner i { font-size: 28px; color: var(--accent); }
.featured-banner p { margin: 0; color: var(--text-secondary); font-size: 14px; }
.page-title-wrap { text-align: center; padding: 50px 0 20px; }
.page-title-wrap h1 { font-size: 2.4rem; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.page-title-wrap p { color: var(--text-secondary); font-size: 16px; max-width: 700px; margin: 0 auto; }
.genre-section { margin-bottom: 40px; }
.genre-section .section-header { margin-bottom: 15px; }
.genre-section .section-header h2 { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.genre-section .section-header p { color: var(--text-secondary); font-size: 14px; }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.card { background:rgba(255,255,255,.04) !important; color:#ecfdf5 !important; border-color:rgba(255,255,255,.12) !important; }
.card-body { background:transparent !important; color:#ecfdf5 !important; }
