:root {
  --primary: #06b6d4;
  --accent: #ec4899;
  --bg: #0c0a1a;
  --text: #e0f2fe;
  --card-bg: #1a1530;
  --border-line: #2a2445;
  --shadow-color: rgba(6, 182, 212, 0.15);
  --font-title: "Noto Serif SC", "Source Han Serif SC", "思源宋体", serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", "思源黑体", "Inter", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, .font-title {
  font-family: var(--font-title);
  color: #ffffff;
}
a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent); }
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}
#back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #0c0a1a;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow-color);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
}
.navbar {
  background-color: rgba(12, 10, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-line);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}
.navbar-brand {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.7rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand i { color: var(--accent); font-size: 1.5rem; }
.navbar-brand:hover { color: var(--primary); }
.navbar-toggler { border-color: var(--border-line); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(224, 242, 254, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 0.95rem;
}
.navbar-nav .nav-link:hover {
  color: var(--primary);
  background-color: rgba(6, 182, 212, 0.08);
}
.navbar-nav .nav-link.active {
  color: var(--primary);
  font-weight: 700;
}
.hero-section {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
}
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
  min-height: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-sub {
  font-size: 1.3rem;
  color: var(--text);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto 40px;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-badge {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge i { color: var(--accent); }
.section-padding { padding: 80px 0; }
.section-header {
  margin-bottom: 45px;
}
.section-header .section-tag {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-block;
}
.section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.section-header p {
  color: var(--text);
  opacity: 0.7;
  max-width: 600px;
}
.layout-main {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 992px) {
  .layout-main { grid-template-columns: 1fr; }
}
.filter-sidebar {
  position: sticky;
  top: 100px;
  background: var(--card-bg);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--border-line);
}
.filter-sidebar h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-sidebar h4 i { color: var(--accent); }
.filter-group { margin-bottom: 24px; }
.filter-group label {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.7;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.filter-options { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-option {
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-line);
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text);
}
.filter-option:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #0c0a1a;
}
.filter-option.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #0c0a1a;
}
.movie-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  cursor: pointer;
  height: 100%;
}
.movie-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 20px var(--shadow-color);
  border-color: var(--primary);
}
.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #1a1530;
}
.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.movie-card:hover .movie-poster img {
  transform: scale(1.1);
}
.poster-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(12,10,26,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.movie-card:hover .poster-overlay {
  opacity: 1;
}
.overlay-info {
  color: var(--text);
  font-size: 0.8rem;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
.movie-card:hover .overlay-info {
  transform: translateY(0);
}
.overlay-info .actors {
  color: rgba(224,242,254,0.7);
  font-size: 0.75rem;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(236, 72, 153, 0.9);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.rating-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(6, 182, 212, 0.9);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}
.movie-info {
  padding: 14px;
}
.movie-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}
.movie-info .meta {
  font-size: 0.75rem;
  color: var(--text);
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stars {
  color: #fbbf24;
  font-size: 0.7rem;
}
.stars i { margin-right: 1px; }
.rank-section {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--border-line);
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rank-item:last-child { border-bottom: none; }
.rank-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  width: 45px;
  text-align: center;
  font-family: var(--font-title);
}
.rank-item img {
  width: 55px;
  height: 75px;
  object-fit: cover;
  border-radius: 4px;
}
.rank-info { flex: 1; }
.rank-info h6 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}
.rank-info .meta {
  font-size: 0.75rem;
  color: var(--text);
  opacity: 0.6;
}
.rank-info .hot-level {
  font-size: 0.7rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.trending-icon { color: var(--accent); }
.hot-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(236, 72, 153, 0.15);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
}
.faq-accordion .accordion-item {
  background: transparent;
  border: 1px solid var(--border-line);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: var(--card-bg);
  color: #fff;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 24px;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--card-bg);
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-body {
  background: var(--card-bg);
  color: var(--text);
  font-size: 0.9rem;
  padding: 0 24px 20px;
  opacity: 0.8;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2306b6d4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.theme-topic {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 30px;
}
.theme-topic h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.topic-reason {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 15px 20px;
  margin-top: 15px;
  border-left: 3px solid var(--accent);
}
.topic-reason p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}
.what-to-watch {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border-line);
  position: relative;
  overflow: hidden;
}
.what-to-watch::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(6,182,212,0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.what-to-watch h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.what-to-watch p {
  opacity: 0.7;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.what-to-watch .recommend-btn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #0c0a1a;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.what-to-watch .recommend-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}
.watch-recommendation {
  margin-top: 25px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: none;
  position: relative;
  z-index: 1;
  font-size: 1rem;
}
.watch-recommendation.show { display: block; }
.footer {
  background: #0a0818;
  border-top: 1px solid var(--border-line);
  padding: 50px 0 30px;
}
.footer h5 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #fff;
}
.footer a {
  display: block;
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.6;
}
.footer a:hover {
  opacity: 1;
  color: var(--primary);
}
.footer-brand {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
}
.footer-brand i { color: var(--accent); }
.copyright {
  border-top: 1px solid var(--border-line);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.6;
  text-align: center;
}
.friend-links {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-line);
  border-radius: 8px;
  padding: 30px;
  margin: 40px 0;
}
.friend-links h5 {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.friend-links h5 i { color: var(--primary); }
.friend-links .link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.movie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2000;
  background: rgba(12,10,26,0.92);
  backdrop-filter: blur(20px);
  overflow-y: auto;
}
.movie-modal .modal-backdrop-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(60px) brightness(0.3);
  z-index: -1;
}
.modal-content-wrapper {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(26,21,48,0.98);
  border-radius: 8px;
  border: 1px solid var(--border-line);
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.modal-close-btn {
  position: absolute;
  top: 15px; right: 15px;
  background: rgba(255,255,255,0.1);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.modal-close-btn:hover {
  background: var(--accent);
  transform: rotate(90deg);
}
.modal-poster {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.modal-meta .tag {
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.modal-rating {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(236, 72, 153, 0.2));
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}
.modal-rating .score {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.modal-rating .stars {
  font-size: 0.9rem;
  margin-left: 8px;
}
.modal-plot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-line);
}
.modal-plot p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.8;
}
.modal-plot .director {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 8px;
}
.modal-plot .actors {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.badge-new {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #0c0a1a;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  margin-left: 5px;
  vertical-align: middle;
}
.typing-cursor {
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@media (max-width: 768px) {
  .hero-section h1 { font-size: 2.2rem; }
  .section-padding { padding: 50px 0; }
  .modal-content-wrapper { margin: 20px; padding: 20px; }
}

/* --- 子页面追加 --- */
/* 关于页专属微调，不覆盖主样式 */
        .about-hero { padding-top: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-line); }
.about-hero h1 { font-family: var(--font-title); color: var(--text); }
.about-hero .lead { color: var(--text); opacity: .8; max-width: 800px; }
.feature-list { list-style: none; padding: 0; }
.feature-list li { margin-bottom: 1.2rem; padding-left: 1.8rem; position: relative; color: var(--text); }
.feature-list li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--primary); }
.about-card { background: var(--card-bg); border: 1px solid var(--border-line); border-radius: 12px; padding: 1.8rem; height: 100%; transition: transform .2s, box-shadow .2s; }
.about-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px var(--shadow-color); }
.about-card i { color: var(--accent); font-size: 2rem; margin-bottom: 1rem; }
.about-card h3 { font-size: 1.3rem; color: var(--text); font-weight: 600; margin-bottom: .75rem; }
.about-card p { color: var(--text); opacity: .8; font-size: .95rem; line-height: 1.6; }
.quote-block { border-left: 4px solid var(--accent); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: var(--text); }
.quote-block span { display: block; font-style: normal; font-weight: 500; margin-top: .5rem; color: var(--primary); }
/* 页面内导航高亮 */
        .navbar-nav .nav-link.active { color: var(--primary) !important; }
/* 页脚样式保持与首页一致，但需要覆盖bootstrap默认 */
        footer { background: #0a0815; border-top: 1px solid var(--border-line); padding: 2rem 0; margin-top: 3rem; }
.footer-links a { margin-right: 1.5rem; }
/* 覆盖bootstrap卡片/表单默认背景（虽未用卡片但保险） */
        .card, .card-body { background: var(--card-bg); color: var(--text); border-color: var(--border-line); }
.form-control { background: rgba(0,0,0,.35); color: var(--text); border-color: var(--border-line); }
.form-control::placeholder { color: rgba(255,255,255,.45); }

/* --- 子页面追加 --- */
/* 页面专属微调 —— 不破坏全站风格，仅用于声明页排版细节 */
    .disclaimer-hero {
      padding: 3.5rem 0 2rem 0;
      border-bottom: 1px solid var(--border-line);
    }
.disclaimer-title {
      font-family: var(--font-title);
      color: var(--primary);
      font-weight: 700;
      letter-spacing: 0.02em;
    }
.disclaimer-sub {
      color: var(--text);
      opacity: 0.8;
      font-size: 1.05rem;
    }
.section-block {
      background: var(--card-bg);
      border: 1px solid var(--border-line);
      border-radius: 16px;
      padding: 1.75rem 1.75rem;
      margin-bottom: 1.8rem;
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
      transition: border-color 0.2s;
    }
.section-block:hover {
      border-color: var(--primary);
    }
.section-block h2 {
      font-family: var(--font-title);
      font-size: 1.6rem;
      color: var(--primary);
      margin-bottom: 1rem;
      border-left: 4px solid var(--accent);
      padding-left: 1rem;
    }
.section-block h3 {
      font-family: var(--font-title);
      font-size: 1.25rem;
      color: var(--text);
      margin-top: 1.2rem;
      font-weight: 600;
    }
.section-block p, .section-block li {
      color: var(--text);
      line-height: 1.8;
      opacity: 0.9;
    }
.section-block ul {
      padding-left: 1.4rem;
    }
.section-block strong {
      color: var(--primary);
    }
.highlight-box {
      background: rgba(6, 182, 212, 0.08);
      border-left: 4px solid var(--primary);
      padding: 1rem 1.2rem;
      border-radius: 8px;
      margin: 1.2rem 0;
      font-size: 0.98rem;
    }
.meta-updated {
      display: inline-block;
      background: var(--primary);
      color: #0c0a1a;
      font-weight: 600;
      padding: 0.2rem 1rem;
      border-radius: 30px;
      font-size: 0.85rem;
      letter-spacing: 0.4px;
      margin-top: 0.5rem;
    }
.footer-links a:hover {
      opacity: 1;
      color: var(--primary);
      text-decoration: none;
    }

/* --- 子页面追加 --- */
.contact-hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(236, 72, 153, 0.05) 100%);
            border-bottom: 1px solid var(--border-line);
        }
.contact-card {
            background: var(--card-bg);
            border: 1px solid var(--border-line);
            border-radius: 16px;
            padding: 32px;
            height: 100%;
            transition: all 0.3s ease;
        }
.contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px var(--shadow-color);
            border-color: var(--primary);
        }
.contact-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
.contact-label {
            color: var(--text);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
.contact-value {
            color: rgba(224, 242, 254, 0.75);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.contact-value a {
            color: var(--primary);
            text-decoration: none;
        }
.contact-value a:hover {
            color: var(--accent);
        }
.form-wrapper {
            background: var(--card-bg);
            border: 1px solid var(--border-line);
            border-radius: 16px;
            padding: 32px;
        }
.form-wrapper label {
            color: var(--text);
            font-weight: 500;
            margin-bottom: 8px;
        }
.form-wrapper .form-control {
            background: rgba(0, 0, 0, 0.35);
            color: var(--text);
            border: 1px solid var(--border-line);
            border-radius: 8px;
            padding: 12px 16px;
            font-family: var(--font-body);
        }
.form-wrapper .form-control:focus {
            background: rgba(0, 0, 0, 0.45);
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.15);
            color: var(--text);
        }
.form-wrapper .form-control::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
.btn-submit {
            background: var(--primary);
            color: #0c0a1a;
            font-weight: 600;
            padding: 12px 36px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: var(--font-body);
        }
.btn-submit:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
        }
.faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-line);
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 16px;
        }
.faq-question {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 8px;
        }
.faq-answer {
            color: rgba(224, 242, 254, 0.75);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.section-title {
            color: var(--text);
            font-weight: 700;
            margin-bottom: 32px;
            position: relative;
            padding-bottom: 12px;
        }
.section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

/* --- 子页面追加 --- */
/* 隐私页特有：排版微调 + 覆盖Bootstrap卡片默认白底 */
    .privacy-container {
      max-width: 980px;
      margin: 0 auto;
    }
.privacy-card {
      background: var(--card-bg);
      border: 1px solid var(--border-line);
      border-radius: 18px;
      padding: 2rem 2.2rem;
      margin-bottom: 2rem;
      box-shadow: 0 12px 30px var(--shadow-color);
      transition: transform .2s ease;
    }
.privacy-card:hover {
      transform: translateY(-3px);
      border-color: var(--primary);
    }
.privacy-card h2 {
      font-family: var(--font-title);
      color: var(--primary);
      font-size: 1.7rem;
      font-weight: 600;
      margin-bottom: 1.2rem;
      letter-spacing: .5px;
      border-left: 4px solid var(--accent);
      padding-left: 16px;
    }
.privacy-card p, .privacy-card li {
      color: var(--text);
      font-size: 1rem;
      line-height: 1.8;
    }
.privacy-card ul {
      padding-left: 1.4rem;
    }
.privacy-card li {
      margin-bottom: .6rem;
    }
.privacy-card strong {
      color: var(--accent);
      font-weight: 600;
    }
.privacy-card .highlight-badge {
      display: inline-block;
      background: rgba(6, 182, 212, 0.15);
      color: var(--primary);
      padding: .3rem 1rem;
      border-radius: 30px;
      font-size: .9rem;
      border: 1px solid var(--primary);
      margin-bottom: 1rem;
    }
/* 覆盖 Bootstrap 卡片组件背景 (若使用 .card 则强制覆盖) */
    .card, .card-body {
      background: var(--card-bg);
      color: var(--text);
      border-color: var(--border-line);
    }
.list-group-item {
      background: var(--card-bg);
      color: var(--text);
      border-color: var(--border-line);
    }
/* 导航高亮当前页 */
    .navbar-nav .nav-link.active-privacy {
      color: var(--accent) !important;
      font-weight: 600;
      border-bottom: 2px solid var(--accent);
    }
/* 页脚链接样式微调 */
    .footer-link {
      color: var(--primary);
      text-decoration: none;
      margin: 0 8px;
    }
.footer-link:hover {
      color: var(--accent);
      text-decoration: underline;
    }
.privacy-header-meta {
      font-size: .95rem;
      color: rgba(224, 242, 254, .7);
      margin-bottom: 2.2rem;
      border-bottom: 1px solid var(--border-line);
      padding-bottom: 1rem;
    }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.form-select { background-color:rgba(0,0,0,.35) !important; color:#e0f2fe !important; border-color:rgba(255,255,255,.12) !important; }
.form-label { color:#e0f2fe !important; }
.accordion-header { background:transparent !important; }
