:root {
  --primary: #f97316;
  --accent: #facc15;
  --bg: #1a1410;
  --text: #fff7ed;
  --text-muted: #d6c3b2;
  --card-bg: #2a211b;
  --card-bg-hover: #372b22;
  --border: #4a3a2e;
  --shadow: 0 10px 30px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.7);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
a { color: var(--primary); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--accent); }

/* Navbar */
.navbar-papaya {
  background: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(249, 115, 22, 0.3);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-papaya .navbar-brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-papaya .navbar-brand i {
  color: var(--primary);
  font-size: 1.8rem;
}
.navbar-papaya .nav-link {
  color: var(--text);
  font-weight: 600;
  margin: 0 6px;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all 0.25s;
}
.navbar-papaya .nav-link:hover {
  color: var(--primary);
  background: rgba(249, 115, 22, 0.1);
}
.navbar-papaya .nav-link.active {
  color: var(--primary);
  background: rgba(249, 115, 22, 0.15);
}
.navbar-toggler {
  border: 2px solid var(--primary);
  color: var(--primary);
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: linear-gradient(rgba(26,20,16,0.6), rgba(26,20,16,0.8)), url('{随机图片}');
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.7);
  transform: scale(1.02);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 30px;
}
.hero-content .badge-hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg);
  font-weight: 800;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}
.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 5px 30px rgba(0,0,0,0.8);
  margin-bottom: 20px;
}
.hero-content h1 span {
  color: var(--primary);
}
.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: 400;
}
.hero-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-papaya-primary {
  background: linear-gradient(135deg, var(--primary), #ea580c);
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 25px rgba(249,115,22,0.4);
  transition: all 0.3s;
  font-size: 1rem;
}
.btn-papaya-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249,115,22,0.6);
  color: #fff;
}
.btn-papaya-outline {
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,247,237,0.4);
  transition: all 0.3s;
}
.btn-papaya-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Section Titles */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  position: relative;
  padding-left: 18px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 10px;
}
.section-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}
.section-link:hover { color: var(--primary); }

/* Movie Cards */
.movie-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  height: 100%;
  cursor: pointer;
  position: relative;
}
.movie-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249,115,22,0.5);
}
.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, #2a211b, #3a2e25);
}
.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.movie-card:hover .movie-poster img {
  transform: scale(1.05);
}
.movie-rating-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--primary), #ea580c);
  color: #fff;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Courier New', monospace;
  box-shadow: 0 4px 12px rgba(249,115,22,0.3);
}
.movie-type-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(26,20,16,0.8);
  backdrop-filter: blur(4px);
  color: var(--accent);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  border: 1px solid rgba(250,204,21,0.3);
}
.movie-info {
  padding: 14px 16px;
}
.movie-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

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

/* Category Tabs */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.category-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s;
  cursor: pointer;
}
.category-pill:hover {
  background: rgba(249,115,22,0.15);
  border-color: var(--primary);
  color: var(--primary);
}
.category-pill.active {
  background: linear-gradient(135deg, var(--primary), #ea580c);
  border-color: transparent;
  color: #fff;
}

/* Ranking List */
.rank-list {
  list-style: none;
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: var(--card-bg);
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
  cursor: pointer;
}
.rank-item:hover {
  background: var(--card-bg-hover);
  border-color: rgba(249,115,22,0.3);
  transform: translateX(4px);
}
.rank-number {
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  min-width: 50px;
  text-align: center;
}
.rank-number.gold { color: #facc15; }
.rank-number.silver { color: #c0c0c0; }
.rank-number.bronze { color: #cd7f32; }
.rank-item-poster {
  width: 60px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.rank-item-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rank-item-info {
  flex: 1;
}
.rank-item-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.rank-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.rank-item-score {
  font-family: 'Courier New', monospace;
  font-weight: 800;
  color: var(--accent);
  font-size: 1.2rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: rgba(249,115,22,0.15);
  font-weight: 800;
  color: var(--text);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* FAQ */
.faq-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.04);
}
.faq-item h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}
.faq-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Feature Card */
.feature-card {
  background: linear-gradient(145deg, #2a211b, #241b16);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249,115,22,0.4);
  box-shadow: var(--shadow);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Movie Detail Modal */
.movie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,20,16,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.movie-modal-overlay.active {
  display: flex;
}
.modal-content-full {
  width: 90%;
  max-width: 500px;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(249,115,22,0.3);
  box-shadow: var(--shadow-lg);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.modal-header-bg {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.modal-header-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 60%;
  background: linear-gradient(transparent, var(--card-bg));
}
.modal-close-btn {
  position: absolute;
  top: 15px; right: 15px;
  background: rgba(26,20,16,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.modal-close-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}
.modal-body-padding {
  padding: 25px;
  margin-top: -50px;
  position: relative;
}
.modal-movie-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.modal-tag {
  background: rgba(249,115,22,0.15);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.modal-score {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 15px;
}
.modal-plot {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}
.modal-cast {
  font-size: 0.85rem;
  color: var(--text);
}
.modal-cast span {
  color: var(--text-muted);
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Friend Links */
.friend-links {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.05);
}
.friend-links h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 800;
}
.friend-links a {
  color: var(--text-muted);
  margin: 0 12px 8px 0;
  display: inline-block;
  font-size: 0.9rem;
}
.friend-links a:hover {
  color: var(--primary);
}

/* Footer */
.footer-papaya {
  background: #120e0b;
  border-top: 2px solid rgba(249,115,22,0.2);
  padding: 50px 0 30px;
  margin-top: 60px;
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
}
.footer-brand i {
  color: var(--primary);
}
.footer-links a {
  color: var(--text-muted);
  margin: 0 10px;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-banner {
    height: 60vh;
    min-height: 400px;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .poster-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
  }
  .rank-item {
    flex-wrap: wrap;
  }
  .rank-item-poster {
    width: 45px;
    height: 60px;
  }
  .comparison-table {
    font-size: 0.8rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 12px;
  }
}

/* --- 子页面追加 --- */
.about-hero {
            padding: 80px 0 60px;
            background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(250,204,21,0.08) 50%, transparent 100%);
            border-bottom: 1px solid var(--border);
        }
.about-section {
            padding: 50px 0;
            border-bottom: 1px solid rgba(74,58,46,0.4);
        }
.about-section:last-child {
            border-bottom: none;
        }
.about-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
.about-card:hover {
            background: var(--card-bg-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
.about-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            background: rgba(249,115,22,0.15);
            color: var(--primary);
            margin-bottom: 20px;
        }
.about-stats {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
        }
.stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }
.stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 8px;
        }
.value-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.value-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(74,58,46,0.4);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--text);
        }
.value-list li:last-child {
            border-bottom: none;
        }
.value-list i {
            color: var(--primary);
            margin-top: 4px;
        }
.about-hero {
                padding: 50px 0 40px;
            }
.about-section {
                padding: 35px 0;
            }
.about-card {
                padding: 20px;
            }

/* --- 子页面追加 --- */
/* 页面专属补充样式 */
    .faq-section { padding: 60px 0; }
.faq-hero { background: linear-gradient(135deg, rgba(249,115,22,0.15) 0%, rgba(250,204,21,0.08) 100%); border: 1px solid var(--border); border-radius: 16px; padding: 40px; margin-bottom: 40px; }
.faq-hero h1 { font-size: 2.2rem; font-weight: 800; color: var(--text); }
.faq-hero p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 0; }
.faq-item:hover { background: var(--card-bg-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.faq-item h3 { color: var(--primary); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.faq-item ul { color: var(--text-muted); font-size: 0.95rem; padding-left: 20px; margin-bottom: 0; }
.faq-item li { margin-bottom: 6px; }
.faq-category-title { color: var(--accent); font-size: 1.4rem; font-weight: 800; margin: 40px 0 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.faq-category-title i { margin-right: 10px; color: var(--primary); }
.faq-contact-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 30px; text-align: center; margin-top: 40px; }
.faq-contact-box h3 { color: var(--text); font-size: 1.3rem; font-weight: 700; }
.faq-contact-box p { color: var(--text-muted); }
.faq-contact-box .btn-papaya-primary { margin-top: 15px; }
.faq-list-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.faq-list-nav a { background: var(--card-bg); color: var(--text-muted); border: 1px solid var(--border); padding: 8px 16px; border-radius: 20px; font-size: 0.9rem; text-decoration: none; transition: all 0.3s; }
.faq-list-nav a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.faq-highlight { background: rgba(249,115,22,0.1); border-left: 3px solid var(--primary); padding: 12px 16px; border-radius: 0 8px 8px 0; margin-bottom: 16px; }
.faq-highlight p { color: var(--text); font-size: 0.95rem; margin: 0; }

/* --- 子页面追加 --- */
/* 隐私政策页面特定样式 —— 与首页视觉完全一致 */
    .privacy-hero {
      background: linear-gradient(145deg, rgba(249,115,22,0.12) 0%, rgba(250,204,21,0.03) 100%);
      border-bottom: 1px solid var(--border);
      padding: 3.5rem 0 2.5rem;
    }
.privacy-hero .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      color: var(--text);
    }
.privacy-hero .section-subtitle {
      color: var(--text-muted);
      max-width: 760px;
      font-size: 1.1rem;
    }
.privacy-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem 1.8rem;
      box-shadow: var(--shadow);
      transition: background 0.25s ease, transform 0.2s;
      height: 100%;
    }
.privacy-card:hover {
      background: var(--card-bg-hover);
      transform: translateY(-3px);
      border-color: rgba(249,115,22,0.5);
    }
.privacy-card h3 {
      color: var(--accent);
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
.privacy-card h3 i {
      color: var(--primary);
      font-size: 1.2rem;
      width: 1.8rem;
    }
.privacy-card p, .privacy-card li {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }
.privacy-list {
      list-style: none;
      padding-left: 0;
    }
.privacy-list li {
      padding: 0.35rem 0;
      display: flex;
      gap: 0.6rem;
      align-items: baseline;
    }
.privacy-list li i {
      color: var(--primary);
      font-size: 0.8rem;
      width: 1rem;
      margin-top: 0.3rem;
    }
.fine-print {
      font-size: 0.85rem;
      color: var(--text-muted);
      background: rgba(0,0,0,0.2);
      border-left: 3px solid var(--primary);
      padding: 1rem 1.2rem;
      border-radius: 0 12px 12px 0;
    }
.last-updated {
      color: var(--text-muted);
      font-size: 0.9rem;
      border-bottom: 1px dashed var(--border);
      padding-bottom: 1rem;
      margin-bottom: 2rem;
    }
/* 确保 Bootstrap 无白底渗透 */
    .accordion-body, .card, .card-body { background: transparent; color: var(--text); }
.nav-link:hover, .nav-link.active { color: var(--accent); }

/* --- 子页面追加 --- */
/* 保证所有卡片/表单等组件完全融入深色主题 (覆盖bootstrap默认白底) */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
        .form-control, .form-select, .list-group-item, .accordion-item, .accordion-button,
        .modal-content, .dropdown-menu, .dropdown-item {
            background: var(--card-bg);
            color: var(--text);
            border-color: var(--border);
        }
.card-title { color: var(--text); }
.card-text { color: var(--text-muted); }
.form-control::placeholder { color: rgba(255,255,255,.45); }
.accordion-button:not(.collapsed) {
            background: var(--card-bg-hover);
            color: var(--primary);
            box-shadow: none;
        }
.accordion-button::after {
            filter: invert(1);
        }
.nav-link.active-link {
            color: var(--primary) !important;
            font-weight: 600;
        }
.disclaimer-lead {
            background: rgba(249, 115, 22, 0.08);
            border-left: 4px solid var(--primary);
            padding: 1.25rem 1.5rem;
            border-radius: 0 12px 12px 0;
        }
.disclaimer-icon {
            color: var(--primary);
            width: 28px;
            text-align: center;
        }
.disclaimer-h2 {
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            color: var(--text);
        }
.disclaimer-h2 i {
            color: var(--primary);
            font-size: 1.4rem;
        }
.disclaimer-section {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
.disclaimer-list {
            list-style: none;
            padding-left: 0;
        }
.disclaimer-list li {
            padding: 0.5rem 0;
            color: var(--text-muted);
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
        }
.disclaimer-list li i {
            color: var(--primary);
            margin-top: 0.25rem;
        }
.footer-badge {
            background: rgba(250, 204, 21, 0.1);
            border: 1px solid var(--border);
            border-radius: 30px;
            padding: 0.25rem 1rem;
            font-size: 0.85rem;
            color: var(--accent);
            display: inline-block;
        }
.legal-meta {
            color: var(--text-muted);
            font-size: 0.9rem;
            border-bottom: 1px dashed var(--border);
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
/* 覆盖导航栏激活项 */
        .navbar-nav .nav-link.active {
            color: var(--primary) !important;
            font-weight: 600;
        }
/* 确保所有背景深色 */
        body {
            background: var(--bg);
            color: var(--text);
        }
.bg-dark-custom {
            background: var(--bg) !important;
        }