:root {
  --primary: #06b6d4;
  --accent: #ec4899;
  --bg: #0c0a1a;
  --text: #e0f2fe;
  --card-bg: #151230;
  --gold: #fbbf24;
  --silver: #94a3b8;
  --bronze: #d97706;
}

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

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

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

/* 导航栏 */
.navbar {
  background: rgba(12, 10, 26, 0.95) !important;
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}
.navbar-brand i {
  background: none;
  -webkit-text-fill-color: var(--accent);
  margin-right: 8px;
}
.navbar .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  margin: 0 8px;
  padding: 8px 16px !important;
  border-radius: 30px;
  transition: all 0.3s;
}
.navbar .nav-link:hover {
  background: rgba(6, 182, 212, 0.15);
  color: var(--primary) !important;
  transform: translateY(-2px);
}
.navbar-toggler {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

/* Hero 区域 */
.hero-section {
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 20% 20%, rgba(6, 182, 212, 0.15), transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.15), transparent 50%);
  position: relative;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Courier New', monospace;
  line-height: 1.2;
}
.hero-stat .label {
  color: rgba(224, 242, 254, 0.7);
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(6, 182, 212, 0.3);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(224, 242, 254, 0.8);
  max-width: 600px;
  margin-bottom: 30px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 16px;
}
.btn-neon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: white;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}
.btn-neon:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.5);
  color: white;
}
.btn-outline-neon {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  transition: all 0.3s;
}
.btn-outline-neon:hover {
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary);
  transform: translateY(-2px);
}

/* 侧边栏 + 内容布局 */
.content-wrapper {
  padding: 40px 0;
}
.sidebar {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.sidebar h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
  border-bottom: 2px solid rgba(6, 182, 212, 0.3);
  padding-bottom: 10px;
}
.category-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--text);
  font-size: 0.9rem;
  margin: 4px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.category-tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

/* 区块标题 */
.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
.section-title i {
  color: var(--primary);
}

/* 影片卡片 */
.movie-card {
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.15);
  transition: all 0.4s;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 25px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}
.movie-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.movie-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
  border-color: var(--primary);
}
.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
}
.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.movie-card:hover .movie-poster img {
  transform: scale(1.08);
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: rgba(6, 182, 212, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.4s;
  opacity: 0;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}
.movie-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.movie-rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}
.movie-info {
  padding: 12px;
}
.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.8rem;
  color: rgba(224, 242, 254, 0.6);
}

/* 排行榜 */
.rank-list {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(236, 72, 153, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.3s;
  margin-bottom: 4px;
}
.rank-item:hover {
  background: rgba(6, 182, 212, 0.08);
}
.rank-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rank-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}
.rank-silver {
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(148, 163, 184, 0.4);
}
.rank-bronze {
  background: linear-gradient(135deg, #d97706, #92400e);
  color: white;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}
.rank-info {
  flex: 1;
}
.rank-title {
  font-weight: 600;
  font-size: 0.95rem;
}
.rank-score {
  color: var(--gold);
  font-size: 0.8rem;
}

/* 即将上线 */
.coming-item {
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s;
}
.coming-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
}

/* 精选片单 */
.pick-item {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--primary);
  margin-bottom: 16px;
  transition: all 0.3s;
}
.pick-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.15);
}
.pick-item .pick-title {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary);
}
.pick-item .pick-desc {
  font-size: 0.9rem;
  color: rgba(224, 242, 254, 0.8);
  font-weight: 300;
}

/* FAQ 手风琴 */
.accordion-item {
  background: var(--card-bg);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-header button {
  background: var(--card-bg);
  color: var(--text);
  font-weight: 600;
  padding: 16px 20px;
  width: 100%;
  text-align: left;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}
.accordion-header button:hover {
  color: var(--primary);
}
.accordion-body {
  padding: 0 20px 20px;
  color: rgba(224, 242, 254, 0.8);
  font-weight: 300;
  font-size: 0.9rem;
}

/* 友情链接 */
.friendly-links {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 24px;
  margin-top: 40px;
  border: 1px solid rgba(6, 182, 212, 0.15);
}
.friendly-links h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

/* 页脚 */
footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 0 20px;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-links a {
  color: rgba(224, 242, 254, 0.7);
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--primary);
}

/* 侧边详情弹窗 */
.detail-panel {
  position: fixed;
  top: 0;
  right: -480px;
  width: 460px;
  height: 100vh;
  background: var(--card-bg);
  z-index: 1050;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  border-left: 2px solid var(--primary);
}
.detail-panel.active {
  right: 0;
}
.detail-panel .detail-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
.detail-panel .detail-close:hover {
  background: var(--accent);
  transform: rotate(90deg);
}
.detail-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.detail-body {
  padding: 24px;
}
.detail-field {
  margin-bottom: 12px;
}
.detail-field .field-label {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.detail-field .field-value {
  font-weight: 400;
}
.detail-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1049;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.detail-overlay.active {
  opacity: 1;
  visibility: visible;
}

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

/* 响应式 */
@media (max-width: 992px) {
  .hero-title { font-size: 2.5rem; }
  .detail-panel { width: 100%; right: -100%; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .hero-stat .number { font-size: 2.5rem; }
}

/* --- 子页面追加 --- */
/* 本页专属样式，自动合并进站点CSS */
        .about-hero {
            padding: 80px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at top, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
        }
.about-hero .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
.about-hero .hero-subtitle {
            max-width: 700px;
            margin: 0 auto;
            color: var(--silver);
            font-size: 1.1rem;
            line-height: 1.8;
        }
.about-section {
            padding: 30px 0;
        }
.about-card {
            background: var(--card-bg);
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
.about-card:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(6, 182, 212, 0.1);
        }
.about-card h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.about-card h2 i {
            font-size: 1.3rem;
            color: var(--accent);
        }
.about-card p {
            color: var(--text);
            line-height: 1.9;
            margin-bottom: 15px;
            opacity: 0.9;
        }
.about-card ul {
            list-style: none;
            padding: 0;
        }
.about-card ul li {
            padding: 8px 0;
            color: var(--text);
            line-height: 1.7;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
.about-card ul li i {
            color: var(--primary);
            margin-top: 5px;
            font-size: 0.9rem;
        }
.feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
.feature-item {
            background: rgba(6, 182, 212, 0.05);
            border: 1px solid rgba(6, 182, 212, 0.15);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
        }
.feature-item i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
.feature-item h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 10px;
        }
.feature-item p {
            font-size: 0.9rem;
            color: var(--silver);
            line-height: 1.6;
        }
.highlight-text {
            color: var(--accent);
            font-weight: 600;
        }
.gold-text {
            color: var(--gold);
            font-weight: 600;
        }
.about-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
.about-stat {
            text-align: center;
        }
.about-stat .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
        }
.about-stat .label {
            color: var(--silver);
            font-size: 0.9rem;
            margin-top: 5px;
        }
.about-hero .hero-title { font-size: 2rem; }
.about-card { padding: 25px; }
.about-stats { gap: 25px; }

/* --- 子页面追加 --- */
.search-hero {
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(236, 72, 153, 0.05) 50%, rgba(12, 10, 26, 0.9) 100%);
      padding: 4rem 0 3rem;
      border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    }
.search-box {
      background: var(--card-bg);
      border: 1px solid rgba(6, 182, 212, 0.3);
      border-radius: 50px;
      padding: 0.3rem;
      display: flex;
      align-items: center;
      box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
    }
.search-box input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      color: var(--text);
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
    }
.search-box input::placeholder {
      color: rgba(224, 242, 254, 0.5);
    }
.search-box button {
      background: var(--primary);
      border: none;
      color: #fff;
      border-radius: 50px;
      padding: 0.8rem 2rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }
.search-box button:hover {
      background: var(--accent);
      box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    }
.filter-chip {
      display: inline-block;
      padding: 0.4rem 1.2rem;
      margin: 0.3rem;
      border-radius: 30px;
      background: rgba(6, 182, 212, 0.1);
      color: var(--text);
      border: 1px solid rgba(6, 182, 212, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.85rem;
    }
.filter-chip:hover, .filter-chip.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
.search-result-item {
      background: var(--card-bg);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(6, 182, 212, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
.search-result-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
    }
.result-poster {
      position: relative;
      padding-top: 140%;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(236, 72, 153, 0.2));
    }
.result-poster img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
.result-info {
      padding: 1rem;
    }
.result-info h5 {
      color: var(--text);
      font-weight: 600;
      margin-bottom: 0.4rem;
      font-size: 0.95rem;
    }
.result-info .result-meta {
      color: rgba(224, 242, 254, 0.6);
      font-size: 0.8rem;
      margin-bottom: 0.5rem;
    }
.result-info .result-rating {
      color: var(--gold);
      font-size: 0.85rem;
      font-weight: 600;
    }
.hot-tag {
      background: rgba(236, 72, 153, 0.2);
      color: var(--accent);
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 500;
    }
.search-tips {
      background: rgba(6, 182, 212, 0.05);
      border-left: 3px solid var(--primary);
      padding: 1.2rem 1.5rem;
      border-radius: 0 8px 8px 0;
      margin: 2rem 0;
    }
.popular-keyword {
      color: var(--text);
      text-decoration: none;
      margin: 0.3rem 0.6rem;
      display: inline-block;
      transition: color 0.3s;
    }
.popular-keyword:hover {
      color: var(--primary);
    }

/* --- 子页面追加 --- */
/* 确保所有组件背景透明或沿用站点变量，避免bootstrap默认白块 */
    .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
    .list-group-item, .accordion-item, .accordion-button, .accordion-body,
    .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item {
      background: transparent !important;
      color: var(--text) !important;
      border-color: rgba(255,255,255,0.1) !important;
    }
.form-control, .form-select {
      background: rgba(12, 10, 26, 0.6) !important;
      color: var(--text) !important;
      border-color: rgba(255,255,255,0.2) !important;
    }
.form-control::placeholder {
      color: rgba(224, 242, 254, 0.4) !important;
    }
/* 移除可能残留的白色卡片阴影 */
    .card {
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    }
/* 导航栏当前页高亮 */
    .nav-link.active {
      color: var(--primary) !important;
      text-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
    }
/* 目录锚点平滑滚动 */
    html {
      scroll-behavior: smooth;
    }
/* 让手风琴/卡片边框更贴合站点风格 */
    .accordion-button:not(.collapsed) {
      background: rgba(6, 182, 212, 0.15) !important;
      color: var(--primary) !important;
    }

/* --- 子页面追加 --- */
/* 本页专属样式 */
    .privacy-hero {
      padding: 100px 0 60px;
      text-align: center;
      position: relative;
    }
.privacy-hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15), transparent 60%),
                  radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.12), transparent 50%);
      z-index: 0;
    }
.privacy-hero .container { position: relative; z-index: 1; }
.privacy-hero h1 {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }
.privacy-hero p {
      color: rgba(224, 242, 254, 0.8);
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
    }
.privacy-content {
      background: var(--card-bg);
      border: 1px solid rgba(6, 182, 212, 0.15);
      border-radius: 16px;
      padding: 40px;
      margin-bottom: 30px;
    }
.privacy-content h2 {
      color: var(--primary);
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid rgba(6, 182, 212, 0.2);
    }
.privacy-content p {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 15px;
    }
.privacy-content ul {
      padding-left: 20px;
      margin-bottom: 15px;
    }
.privacy-content li {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 8px;
    }
.privacy-content strong {
      color: var(--accent);
      font-weight: 600;
    }
.privacy-content .highlight-box {
      background: rgba(6, 182, 212, 0.08);
      border-left: 4px solid var(--primary);
      padding: 20px;
      border-radius: 8px;
      margin: 20px 0;
    }
.privacy-updated {
      text-align: center;
      color: var(--silver);
      font-size: 0.9rem;
      margin-top: 20px;
    }
.privacy-hero { padding: 80px 0 40px; }
.privacy-hero h1 { font-size: 1.8rem; }
.privacy-content { padding: 25px 20px; }

/* --- 子页面追加 --- */
/* 覆盖 Bootstrap 默认白底黑字 —— 本页采用深色主题 */
    .card, .card-body, .card-header, .card-footer {
      background: var(--card-bg) !important;
      color: var(--text) !important;
      border-color: #2a2b4a !important;
    }
.form-label {
      color: var(--text) !important;
    }
/* 确保所有卡片/组件背景与站点一致 */
    .contact-card {
      background: var(--card-bg);
      border: 1px solid #2a2b4a;
      border-radius: 16px;
      padding: 2rem;
      transition: 0.2s;
    }
.contact-card:hover {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.3);
    }
.social-icon {
      color: var(--text);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid #2a2b4a;
      border-radius: 12px;
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
    }
.social-icon:hover {
      color: var(--primary);
      border-color: var(--primary);
    }
/* 列表组覆盖 */
    .list-group-item {
      background: var(--card-bg) !important;
      color: var(--text) !important;
      border-color: #2a2b4a !important;
    }