:root {
  --primary: #10b981;
  --accent: #fbbf24;
  --bg-dark: #0a1410;
  --text-light: #ecfdf5;
  --card-bg: #13231b;
  --card-bg-hover: #1a3327;
  --border-subtle: rgba(16, 185, 129, 0.15);
  --shadow-light: 0 8px 30px rgba(0, 0, 0, 0.4);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* 导航栏 */
.navbar-custom {
  background: rgba(10, 20, 16, 0.85);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}
.navbar-custom.scrolled {
  background: rgba(10, 20, 16, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text-light) !important;
  letter-spacing: -0.5px;
}
.navbar-brand .icon { color: var(--accent); margin-right: 6px; }
.navbar-custom .nav-link {
  color: rgba(236, 253, 245, 0.8) !important;
  font-weight: 500;
  margin: 0 8px;
  padding: 6px 14px !important;
  border-radius: 50px;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.navbar-custom .nav-link:hover {
  color: var(--primary) !important;
  background: rgba(16, 185, 129, 0.1);
}
.navbar-toggler { border: none; color: var(--text-light); }
.navbar-toggler:focus { box-shadow: none; }

/* Hero 关键词云 */
.hero-section {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section .sub-title {
  font-size: 1.2rem;
  color: rgba(236, 253, 245, 0.7);
  margin-bottom: 30px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.tag-cloud .tag {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: default;
  animation: floatTag 3s ease-in-out infinite;
}
.tag-cloud .tag:nth-child(2n) { animation-delay: 0.5s; }
.tag-cloud .tag:nth-child(3n) { animation-delay: 1s; }
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* 区块标题 */
.section-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  margin-top: 20px;
}
.section-title {
  font-size: 1.7rem;
  font-weight: 800;
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 4px;
}
.section-more { color: rgba(236, 253, 245, 0.6); font-size: 0.9rem; transition: color 0.2s; }
.section-more:hover { color: var(--primary); }

/* 横向滚动区 */
.hscroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 15px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-dark);
}
.hscroll::-webkit-scrollbar { height: 4px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.hscroll .poster-card { flex: 0 0 auto; width: 180px; }

/* 海报卡片 */
.poster-card {
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(16, 185, 129, 0.08);
}
.poster-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}
.poster-card .poster-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #1a2a20;
}
.poster-card .poster-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.poster-card:hover .poster-img img { transform: scale(1.05); }
.poster-card .play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.poster-card:hover .play-overlay { opacity: 1; }
.play-overlay .play-btn {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
  transition: transform 0.3s;
}
.poster-card:hover .play-btn { transform: scale(1.1); }
.poster-card .info {
  padding: 12px;
}
.poster-card .title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.poster-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(236, 253, 245, 0.6);
}
.poster-card .rating {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}
.poster-card .badge-year {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* 排行榜 */
.rank-list {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-subtle);
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.06);
  transition: background 0.2s;
  cursor: pointer;
  border-radius: 10px;
}
.rank-item:last-child { border-bottom: none; }
.rank-item:hover { background: rgba(16, 185, 129, 0.06); }
.rank-num {
  font-size: 1.6rem;
  font-weight: 900;
  width: 45px;
  text-align: center;
  font-style: italic;
  color: rgba(236, 253, 245, 0.3);
}
.rank-num.gold { color: #fbbf24; text-shadow: 0 0 20px rgba(251, 191, 36, 0.4); }
.rank-num.silver { color: #cbd5e1; }
.rank-num.bronze { color: #d97706; }
.rank-info { flex: 1; }
.rank-info .r-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.rank-info .r-meta { font-size: 0.8rem; color: rgba(236, 253, 245, 0.5); }
.rank-score {
  font-weight: 800;
  color: var(--accent);
  font-size: 1.1rem;
  background: rgba(251, 191, 36, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}
.rank-thumb {
  width: 50px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a2a20;
  flex-shrink: 0;
}
.rank-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* 分类筛选 */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.category-tabs .cat-btn {
  padding: 8px 18px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(236, 253, 245, 0.8);
  transition: all 0.2s;
  cursor: pointer;
}
.category-tabs .cat-btn:hover, .category-tabs .cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* 时间线 */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  padding-left: 55px;
  margin-bottom: 25px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--bg-dark);
  border: 3px solid var(--primary);
  border-radius: 50%;
}
.timeline-item .tl-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}
.timeline-item .tl-desc {
  font-size: 0.9rem;
  color: rgba(236, 253, 245, 0.7);
  margin-top: 5px;
}

/* 弹窗 */
.movie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.movie-modal.show { display: flex; }
.modal-card {
  background: #11231b;
  border-radius: 20px;
  max-width: 720px;
  width: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  max-height: 90vh;
}
.modal-card .modal-close {
  position: absolute;
  top: 15px; right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.modal-card .modal-close:hover { background: rgba(255, 255, 255, 0.25); }
.modal-left {
  width: 45%;
  min-width: 200px;
}
.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-right {
  padding: 30px 25px;
  flex: 1;
  overflow-y: auto;
}
.modal-right .m-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  padding-right: 30px;
}
.modal-right .m-info {
  font-size: 0.85rem;
  color: rgba(236, 253, 245, 0.6);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.modal-right .m-info .label {
  color: var(--primary);
  font-weight: 600;
}
.modal-right .m-rating {
  display: inline-block;
  background: rgba(251, 191, 36, 0.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.modal-right .m-plot {
  font-size: 0.9rem;
  color: rgba(236, 253, 245, 0.8);
  line-height: 1.8;
  margin-top: 15px;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  padding-top: 15px;
}

/* 专题与片单 */
.feature-section {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(251, 191, 36, 0.04));
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 40px;
}
.feature-section h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.feature-section .lead-text {
  font-size: 0.95rem;
  color: rgba(236, 253, 245, 0.75);
  margin-bottom: 20px;
}
.recommend-item {
  padding: 15px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.05);
  margin-bottom: 10px;
  border-left: 3px solid var(--primary);
  transition: background 0.2s;
}
.recommend-item:hover { background: rgba(16, 185, 129, 0.1); }
.recommend-item .r-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.recommend-item .r-reason {
  font-size: 0.85rem;
  color: rgba(236, 253, 245, 0.7);
}

/* FAQ */
.faq-section {
  margin-top: 40px;
}
.faq-item {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 12px;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(16, 185, 129, 0.4); }
.faq-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-item h4 i { color: var(--primary); }
.faq-item p {
  font-size: 0.9rem;
  color: rgba(236, 253, 245, 0.7);
  padding-left: 28px;
}

/* 页脚 */
.footer-section {
  background: rgba(10, 20, 16, 0.8);
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 30px;
  margin-top: 60px;
}
.footer-brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 10px;
}
.footer-desc {
  color: rgba(236, 253, 245, 0.6);
  font-size: 0.9rem;
  max-width: 350px;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-links a {
  color: rgba(236, 253, 245, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-copyright {
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(236, 253, 245, 0.5);
  text-align: center;
}

/* 友情链接 */
.friend-links {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 25px;
  margin-top: 40px;
  border: 1px solid var(--border-subtle);
}
.friend-links h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 滚动渐显 */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 通用 */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
@media (max-width: 576px) {
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-section h1 { font-size: 2rem; }
  .modal-card { flex-direction: column; max-height: 85vh; overflow-y: auto; }
  .modal-left { width: 100%; min-width: auto; }
  .modal-left img { height: 200px; }
  .rank-thumb { width: 40px; height: 56px; }
}

/* --- 子页面追加 --- */
/* Any page-specific overrides can go here */
        .about-hero { padding: 80px 0 40px; }
.about-section { padding: 50px 0; border-bottom: 1px solid var(--border-subtle); }
.about-section:last-child { border-bottom: none; }
.about-content { max-width: 850px; }
.about-content h2 { color: var(--primary); font-weight: 700; margin-bottom: 1.2rem; font-size: 1.6rem; }
.about-content p { color: var(--text-light); line-height: 1.9; margin-bottom: 1.2rem; font-size: 1rem; opacity: 0.92; }
.about-content .highlight { color: var(--accent); font-weight: 600; }
.value-card { background: var(--card-bg); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 28px; margin-bottom: 20px; transition: all 0.3s ease; }
.value-card:hover { background: var(--card-bg-hover); transform: translateY(-3px); }
.value-card .icon-circle { width: 48px; height: 48px; border-radius: 50%; background: rgba(16, 185, 129, 0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-card .icon-circle i { color: var(--primary); font-size: 1.3rem; }
.value-card h3 { color: var(--text-light); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.value-card p { color: rgba(236, 253, 245, 0.8); font-size: 0.92rem; line-height: 1.7; margin-bottom: 0; }
.stats-row { display: flex; flex-wrap: wrap; gap: 30px; margin: 40px 0; }
.stat-item { text-align: center; flex: 1; min-width: 140px; }
.stat-item .stat-number { font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-item .stat-label { color: rgba(236, 253, 245, 0.6); font-size: 0.9rem; margin-top: 8px; }
.timeline-item .timeline-date { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.timeline-item .timeline-title { color: var(--text-light); font-weight: 600; margin-top: 4px; }
.timeline-item .timeline-desc { color: rgba(236, 253, 245, 0.7); font-size: 0.9rem; line-height: 1.6; margin-top: 6px; }

/* --- 子页面追加 --- */
.disclaimer-page {
            padding: 60px 0;
            min-height: calc(100vh - 300px);
        }
.disclaimer-hero {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.02) 50%, transparent 100%);
            padding: 40px 0 20px;
            border-bottom: 1px solid var(--border-subtle);
        }
.disclaimer-hero h1 {
            color: var(--primary);
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 12px;
        }
.disclaimer-hero p {
            color: rgba(236, 253, 245, 0.7);
            font-size: 1rem;
            max-width: 800px;
        }
.disclaimer-section {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
.disclaimer-section:hover {
            background: var(--card-bg-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-light);
        }
.disclaimer-section h2 {
            color: var(--primary);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.disclaimer-section h2 i {
            color: var(--accent);
            font-size: 1.2rem;
        }
.disclaimer-section p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 12px;
        }
.disclaimer-section ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-section li {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
.disclaimer-section strong {
            color: var(--accent);
            font-weight: 600;
        }
.highlight-box {
            background: rgba(16, 185, 129, 0.08);
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
.highlight-box p {
            margin-bottom: 0;
            color: rgba(236, 253, 245, 0.85);
        }
.last-updated {
            color: rgba(236, 253, 245, 0.5);
            font-size: 0.85rem;
            margin-top: 30px;
            text-align: right;
        }
.disclaimer-page {
                padding: 30px 0;
            }
.disclaimer-hero h1 {
                font-size: 1.6rem;
            }
.disclaimer-section {
                padding: 20px;
            }
.disclaimer-section h2 {
                font-size: 1.2rem;
            }

/* --- 子页面追加 --- */
/* 隐私政策页专用微调 */
    .privacy-hero {
      background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, rgba(0,0,0,0.4) 100%);
      border-bottom: 1px solid var(--border-subtle);
      padding: 70px 0 50px;
      text-align: center;
    }
.privacy-hero h1 {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--text-light);
      margin-bottom: 12px;
    }
.privacy-hero p {
      color: rgba(236,253,245,0.75);
      font-size: 1.05rem;
      max-width: 640px;
      margin: 0 auto;
    }
.privacy-section {
      background: var(--card-bg);
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      padding: 32px 36px;
      margin-bottom: 30px;
      box-shadow: var(--shadow-light);
      transition: background .3s ease;
    }
.privacy-section:hover {
      background: var(--card-bg-hover);
    }
.privacy-section h2 {
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
.privacy-section h2 i {
      font-size: 1.3rem;
      color: var(--accent);
    }
.privacy-section p, .privacy-section li {
      color: rgba(236,253,245,0.85);
      line-height: 1.85;
      font-size: 0.98rem;
    }
.privacy-section ul {
      padding-left: 20px;
      margin-bottom: 12px;
    }
.privacy-section li {
      margin-bottom: 8px;
    }
.privacy-section strong {
      color: var(--accent);
      font-weight: 600;
    }
.privacy-updated {
      text-align: center;
      color: rgba(236,253,245,0.5);
      font-size: 0.9rem;
      margin-top: 40px;
      letter-spacing: .5px;
    }
.privacy-hero { padding: 50px 0 36px; }
.privacy-hero h1 { font-size: 1.8rem; }
.privacy-section { padding: 24px 20px; }

/* --- 子页面追加 --- */
/* 本页专属微调 — 仅补充指南页特有元素，其余复用站点全局样式 */
    .guide-hero { padding: 4rem 0 2.5rem; background: linear-gradient(145deg, rgba(16,185,129,0.08) 0%, rgba(10,20,16,0.2) 100%); border-bottom: 1px solid var(--border-subtle); }
.guide-step-card { background: var(--card-bg); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 1.75rem 1.5rem; height: 100%; transition: .25s ease; }
.guide-step-card:hover { background: var(--card-bg-hover); transform: translateY(-3px); }
.step-number { font-size: 2.2rem; font-weight: 800; color: var(--accent); opacity: .8; line-height: 1; }
.guide-section-title { font-size: 1.75rem; font-weight: 700; color: var(--text-light); margin-bottom: 2rem; border-left: 5px solid var(--primary); padding-left: 1rem; }
.guide-list-item { background: transparent; border-bottom: 1px solid var(--border-subtle); padding: .75rem 0; color: var(--text-light); }
.guide-list-item i { color: var(--primary); margin-right: 10px; }
.faq-question { font-weight: 600; color: var(--text-light); margin-bottom: .5rem; }
.faq-question i { color: var(--accent); margin-right: 8px; }
.faq-answer { color: rgba(236,253,245,0.8); font-size: .95rem; }
.tag-badge { background: rgba(16,185,129,0.12); color: var(--primary); border-radius: 30px; padding: .25rem .8rem; font-size: .8rem; font-weight: 500; border: 1px solid rgba(16,185,129,0.25); }
.guide-toc { background: var(--card-bg); border-radius: 20px; padding: 1.5rem; border: 1px solid var(--border-subtle); }
.guide-toc a { color: var(--text-light); text-decoration: none; display: block; padding: .3rem 0; transition: .2s; }
.guide-toc a:hover { color: var(--primary); padding-left: 5px; }
.table { --bs-table-bg: transparent; color: var(--text-light); border-color: var(--border-subtle); }
.table > :not(caption) > * > * { background-color: rgba(0,0,0,0.2); color: var(--text-light); border-bottom-color: var(--border-subtle); }

/* --- 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; }
