:root {
  --primary: #10b981;
  --accent: #fbbf24;
  --bg-dark: #0a1410;
  --text-light: #ecfdf5;
  --card-bg: rgba(16, 185, 129, 0.08);
  --glass-bg: rgba(10, 20, 16, 0.8);
  --border-glow: rgba(16, 185, 129, 0.3);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --shadow-soft: 0 8px 30px rgba(0,0,0,0.3);
  --shadow-hover: 0 15px 40px rgba(16,185,129,0.25);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* 导航栏 */
.navbar-custom {
  background: rgba(10, 20, 16, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  padding: 12px 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(16,185,129,0.3);
}

.navbar-brand i { color: var(--accent); margin-right: 8px; }

.nav-link-custom {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 8px 18px !important;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-link-custom:hover {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: 1px solid var(--primary);
  background: transparent;
}

.navbar-toggler:focus { box-shadow: none; }

/* Hero 区 */
.hero-section {
  padding: 100px 0 80px;
  position: relative;
  background: 
    radial-gradient(circle at 20% 50%, rgba(16,185,129,0.1), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(251,191,36,0.08), transparent 40%);
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(236, 253, 245, 0.7);
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.btn-custom {
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 0 10px;
  display: inline-block;
  text-decoration: none;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), #0d9668);
  color: #fff;
  box-shadow: 0 8px 30px rgba(16,185,129,0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.4);
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-custom:hover {
  background: rgba(16,185,129,0.1);
  transform: translateY(-3px);
  color: var(--primary);
}

/* 区块通用 */
.section-padding { padding: 70px 0; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-subtitle {
  color: rgba(236,253,245,0.6);
  font-size: 1rem;
  font-weight: 300;
  margin-top: 15px;
}

/* 轮播 */
.carousel-custom {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
}

.carousel-caption {
  background: linear-gradient(to top, rgba(10,20,16,0.9), transparent);
  padding: 50px 30px 30px;
  text-align: left;
}

.carousel-caption h3 {
  font-size: 2.2rem;
  font-weight: 900;
}

.carousel-caption p { font-size: 1rem; opacity: 0.9; }

/* 影片卡片 */
.movie-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(16,185,129,0.1);
  height: 100%;
}

.movie-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--shadow-hover);
  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.6s ease;
}

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

.movie-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.8);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(251,191,36,0.3);
}

.movie-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,20,16,0.95), transparent);
  padding: 30px 20px 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.movie-card:hover .movie-overlay {
  opacity: 1;
  transform: translateY(0);
}

.movie-overlay h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.movie-overlay .rating {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Courier New', monospace;
}

.movie-info {
  padding: 15px;
}

.movie-info .movie-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-info .movie-meta {
  font-size: 0.85rem;
  color: rgba(236,253,245,0.5);
  font-family: 'Courier New', monospace;
}

/* 榜单 */
.rank-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.rank-item:hover {
  background: rgba(16,185,129,0.15);
  transform: translateX(10px);
  border-color: var(--primary);
}

.rank-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  width: 50px;
  font-family: 'Courier New', monospace;
}

.rank-title {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
}

.rank-rating {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

/* 分类标签 */
.category-chip {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--card-bg);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--text-light);
  font-weight: 500;
  margin: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.category-chip:hover,
.category-chip.active {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16,185,129,0.3);
}

/* 心情选片 */
.mood-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(16,185,129,0.1);
  height: 100%;
}

.mood-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.mood-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent);
}

.mood-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.mood-desc {
  font-size: 0.9rem;
  color: rgba(236,253,245,0.6);
}

/* 手风琴 */
.accordion-item {
  background: transparent;
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-md) !important;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  background: var(--card-bg);
  color: var(--text-light);
  font-weight: 600;
  padding: 20px 25px;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(16,185,129,0.15);
  color: var(--primary);
}

.accordion-button:focus { box-shadow: none; border-color: var(--primary); }

.accordion-body {
  background: rgba(10,20,16,0.5);
  color: rgba(236,253,245,0.8);
  line-height: 1.8;
  padding: 25px;
}

/* 精选片单 */
.curated-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.curated-item:hover {
  background: rgba(16,185,129,0.15);
  transform: translateX(8px);
}

.curated-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.curated-comment {
  color: rgba(236,253,245,0.7);
  font-size: 0.9rem;
  font-style: italic;
}

/* 页脚 */
.footer-section {
  background: rgba(10,20,16,0.95);
  padding: 50px 0 30px;
  border-top: 1px solid rgba(16,185,129,0.2);
}

.footer-links a {
  color: rgba(236,253,245,0.6);
  text-decoration: none;
  margin: 0 15px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: rgba(236,253,245,0.4);
  font-size: 0.85rem;
}

/* 侧滑弹窗 */
.side-drawer {
  position: fixed;
  top: 0;
  right: -500px;
  width: 450px;
  height: 100%;
  background: rgba(10,20,16,0.98);
  backdrop-filter: blur(20px);
  z-index: 10000;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  border-left: 1px solid rgba(16,185,129,0.2);
  overflow-y: auto;
}

.side-drawer.active { right: 0; }

.drawer-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.drawer-content { padding: 30px; }

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.drawer-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

.drawer-poster {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 25px;
}

.drawer-poster img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.drawer-info h3 {
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.drawer-info .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.drawer-info .info-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 12px;
}

.drawer-info .info-label {
  font-size: 0.8rem;
  color: rgba(236,253,245,0.5);
  margin-bottom: 5px;
}

.drawer-info .info-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.drawer-info .plot {
  line-height: 1.8;
  color: rgba(236,253,245,0.8);
  font-size: 0.95rem;
}

/* 动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 数据字体 */
.data-font { font-family: 'Courier New', monospace; }

/* 响应式 */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-section { padding: 80px 0 50px; }
  .carousel-item img { height: 300px; }
  .section-title { font-size: 2rem; }
  .side-drawer { width: 100%; right: -100%; }
  .btn-custom { padding: 12px 30px; font-size: 1rem; margin: 5px; }
  .nav-link-custom { padding: 8px 12px !important; }
}

/* 友情链接 */
.friend-links {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-top: 50px;
}

.friend-links h5 {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1rem;
}

.friend-links a {
  color: rgba(236,253,245,0.6);
  text-decoration: none;
  margin-right: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

/* 滚动条样式 */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* --- 子页面追加 --- */
/* 关于我们页面专属样式 */
        .about-hero {
            padding: 120px 0 60px;
            background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, rgba(10,20,16,0.9) 100%);
            border-bottom: 1px solid var(--border-glow);
        }
.about-hero .hero-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }
.about-hero .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
.about-section {
            padding: 80px 0;
        }
.about-section:nth-child(even) {
            background: rgba(16, 185, 129, 0.05);
        }
.about-card {
            background: var(--card-bg);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-lg);
            padding: 40px;
            height: 100%;
            transition: all 0.3s ease;
        }
.about-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }
.about-card .icon-wrap {
            width: 70px;
            height: 70px;
            background: rgba(16, 185, 129, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            border: 1px solid var(--border-glow);
        }
.about-card .icon-wrap i {
            font-size: 28px;
            color: var(--primary);
        }
.about-card h3 {
            color: var(--text-light);
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 18px;
        }
.about-card p {
            color: var(--text-light);
            opacity: 0.85;
            line-height: 1.8;
            font-size: 0.95rem;
        }
.about-stats {
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-xl);
            padding: 50px;
        }
.stat-item {
            text-align: center;
        }
.stat-item .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }
.stat-item .stat-label {
            color: var(--text-light);
            opacity: 0.8;
            font-size: 1rem;
        }
.timeline {
            position: relative;
            padding-left: 30px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
        }
.timeline-item {
            position: relative;
            padding: 20px 0 20px 30px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 28px;
            width: 16px;
            height: 16px;
            background: var(--primary);
            border-radius: 50%;
            border: 3px solid var(--bg-dark);
        }
.timeline-item .timeline-date {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
.timeline-item h4 {
            color: var(--text-light);
            font-size: 1.15rem;
            margin-bottom: 10px;
        }
.timeline-item p {
            color: var(--text-light);
            opacity: 0.85;
            line-height: 1.7;
            font-size: 0.95rem;
        }
.feature-list {
            list-style: none;
            padding: 0;
        }
.feature-list li {
            padding: 12px 0;
            color: var(--text-light);
            opacity: 0.9;
            border-bottom: 1px solid rgba(16, 185, 129, 0.1);
            display: flex;
            align-items: center;
        }
.feature-list li i {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.1rem;
        }
.feature-list li:last-child {
            border-bottom: none;
        }
.about-hero {
                padding: 90px 0 40px;
            }
.about-hero .hero-title {
                font-size: 2.2rem;
            }
.about-section {
                padding: 50px 0;
            }
.about-card {
                padding: 25px;
                margin-bottom: 20px;
            }
.about-stats {
                padding: 30px 20px;
            }
.stat-item {
                margin-bottom: 25px;
            }

/* --- 子页面追加 --- */
.disclaimer-hero {
            background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(16,185,129,0.15) 100%);
            border-bottom: 1px solid var(--border-glow);
        }
.disclaimer-card {
            background: var(--card-bg);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            transition: box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            box-shadow: var(--shadow-hover);
        }
.disclaimer-card h2 {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
.disclaimer-card h2 i {
            color: var(--accent);
            font-size: 1.3rem;
        }
.disclaimer-card p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
            font-weight: 300;
        }
.disclaimer-card ul {
            color: var(--text-light);
            line-height: 1.8;
            padding-left: 1.5rem;
            font-weight: 300;
        }
.disclaimer-card ul li {
            margin-bottom: 0.5rem;
        }
.disclaimer-highlight {
            background: rgba(251, 191, 36, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1rem 1.5rem;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: 1.5rem 0;
        }
.disclaimer-highlight p {
            margin-bottom: 0;
            color: var(--accent);
            font-weight: 500;
        }
.disclaimer-date {
            color: rgba(236, 253, 245, 0.6);
            font-size: 0.9rem;
            margin-top: 2rem;
            text-align: right;
            font-style: italic;
        }
.disclaimer-card {
                padding: 1.5rem;
            }
.disclaimer-card h2 {
                font-size: 1.3rem;
            }

/* --- 子页面追加 --- */
/* 本页专属样式——补充隐私政策页特有的布局与细节 */
    .privacy-hero {
      padding: 120px 0 80px;
      background: linear-gradient(180deg, rgba(10,20,16,0.3) 0%, var(--bg-dark) 100%);
    }
.privacy-hero .hero-title {
      font-size: 2.8rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
.privacy-hero .hero-subtitle {
      font-size: 1.15rem;
      color: rgba(236, 253, 245, 0.7);
      max-width: 640px;
      margin: 0 auto;
    }
.privacy-content {
      padding: 40px 0 80px;
    }
.privacy-section {
      background: var(--card-bg);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      margin-bottom: 32px;
      transition: box-shadow 0.3s ease;
    }
.privacy-section:hover {
      box-shadow: var(--shadow-hover);
    }
.privacy-section h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
.privacy-section h2 i {
      font-size: 1.3rem;
      color: var(--accent);
    }
.privacy-section h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-light);
      margin: 20px 0 12px;
    }
.privacy-section p {
      color: rgba(236, 253, 245, 0.8);
      line-height: 1.8;
      margin-bottom: 14px;
    }
.privacy-section ul, .privacy-section ol {
      color: rgba(236, 253, 245, 0.8);
      padding-left: 1.5rem;
      margin-bottom: 14px;
    }
.privacy-section li {
      margin-bottom: 8px;
      line-height: 1.7;
    }
.privacy-section strong {
      color: var(--accent);
    }
.privacy-updated {
      text-align: center;
      color: rgba(236, 253, 245, 0.5);
      font-size: 0.9rem;
      margin-top: 30px;
      padding: 20px;
      border-top: 1px solid var(--border-glow);
    }
.privacy-hero { padding: 100px 0 50px; }
.privacy-hero .hero-title { font-size: 2rem; }
.privacy-section { padding: 24px; }

/* --- 子页面追加 --- */
/* 覆盖Bootstrap组件默认白底——本站卡片风格 */
    .rank-card, .film-card, .list-group-custom {
      background: var(--card-bg);
      color: var(--text-light);
      border: 1px solid var(--border-glow);
      border-radius: var(--radius-md);
      transition: transform .2s, box-shadow .2s;
    }
.rank-card:hover, .film-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
.rank-card .rank-title, .film-card .film-title {
      color: var(--text-light);
      font-weight: 600;
    }
.rank-card .rank-rating, .film-card .film-rating {
      color: var(--accent);
      font-weight: 700;
    }
.rank-card .rank-meta, .film-card .film-meta {
      color: rgba(236, 253, 245, 0.7);
      font-size: 0.9rem;
    }
/* 小标签 */
    .badge-custom {
      background: rgba(251, 191, 36, 0.15);
      color: var(--accent);
      border: 1px solid rgba(251, 191, 36, 0.3);
      border-radius: 30px;
      padding: 2px 10px;
      font-size: 0.75rem;
    }
/* 排行榜数字 */
    .rank-number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      opacity: 0.8;
      min-width: 50px;
    }
/* 覆盖bootstrap .list-group-item 默认白底 */
    .list-group-item {
      background: transparent !important;
      color: var(--text-light) !important;
      border-color: var(--border-glow) !important;
    }
/* 分类标签等 */
    .genre-chip {
      background: rgba(16,185,129,0.1);
      color: var(--text-light);
      border: 1px solid var(--border-glow);
      border-radius: 50px;
      padding: 5px 16px;
      font-size: 0.9rem;
      transition: all .2s;
    }
.genre-chip:hover {
      background: rgba(16,185,129,0.25);
      border-color: var(--primary);
    }
/* 分隔线 */
    .divider-glow {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
    }
/* 本页小标题统一微调 */
    .section-header .section-title {
      font-weight: 800;
      letter-spacing: -0.02em;
    }

/* --- 子页面追加 --- */
.tv-page-hero {
      background: linear-gradient(135deg, rgba(16,185,129,0.2) 0%, rgba(10,20,16,0.9) 70%);
      border-bottom: 1px solid var(--border-glow);
    }
.tv-section-tag {
      display: inline-block;
      background: var(--card-bg);
      border: 1px solid var(--border-glow);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 14px;
      font-weight: 500;
      color: var(--primary);
      margin-bottom: 15px;
      letter-spacing: 0.5px;
    }
.tv-feature-card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-glow);
      transition: all 0.3s ease;
      overflow: hidden;
    }
.tv-feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary);
    }
.tv-feature-poster {
      height: 300px;
      object-fit: cover;
      width: 100%;
      display: block;
    }
.tv-feature-body {
      padding: 20px;
    }
.tv-badge-new {
      background: var(--accent);
      color: #0a1410;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 10px;
    }
.tv-badge-hot {
      background: var(--primary);
      color: #0a1410;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 10px;
    }
.tv-list-card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-glow);
      transition: all 0.3s ease;
      padding: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 12px;
    }
.tv-list-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-soft);
      transform: translateX(5px);
    }
.tv-list-rank {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary);
      min-width: 40px;
      text-align: center;
      font-style: italic;
    }
.tv-list-info {
      flex: 1;
    }
.tv-list-title {
      font-weight: 600;
      color: var(--text-light);
      font-size: 16px;
      margin-bottom: 4px;
    }
.tv-list-meta {
      font-size: 13px;
      color: rgba(236,253,245,0.6);
    }
.tv-update-status {
      display: inline-block;
      background: rgba(16,185,129,0.15);
      border: 1px solid rgba(16,185,129,0.3);
      color: var(--primary);
      border-radius: 15px;
      padding: 2px 10px;
      font-size: 12px;
      font-weight: 500;
    }
.tv-collection-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
    }
.tv-grid-card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-glow);
      overflow: hidden;
      transition: all 0.3s ease;
    }
.tv-grid-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
.tv-grid-poster {
      height: 180px;
      width: 100%;
      object-fit: cover;
      display: block;
    }
.tv-grid-body {
      padding: 15px;
    }
.tv-grid-title {
      font-weight: 600;
      color: var(--text-light);
      font-size: 15px;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
.tv-grid-meta {
      font-size: 13px;
      color: rgba(236,253,245,0.55);
    }
.tv-watch-btn {
      background: var(--primary);
      color: #0a1410;
      border: none;
      border-radius: 8px;
      padding: 8px 20px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }
.tv-watch-btn:hover {
      background: var(--accent);
      color: #0a1410;
      transform: scale(1.03);
    }

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