:root {
  --primary: #6d5dfc;
  --accent: #22d3ee;
  --bg-dark: #0f1020;
  --text-light: #e8eaf6;
  --card-radius: 20px;
  --card-shadow: 0 8px 32px rgba(109, 93, 252, 0.12);
  --gradient-card: linear-gradient(135deg, rgba(109,93,252,0.15) 0%, rgba(34,211,238,0.08) 100%);
  --font-title: 'Inter', 'Noto Serif SC', serif;
  --font-body: 'Inter', 'Noto Sans SC', sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-title); font-weight: 700; letter-spacing: 0.02em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* 导航 */
.navbar-custom {
  background: rgba(15,16,32,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(109,93,252,0.15);
  padding: 12px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-right: 30px;
}
.navbar-brand i { margin-right: 4px; -webkit-text-fill-color: initial; }
.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  padding: 8px 4px !important;
}
.nav-link::after {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}
.nav-link:hover::after { width:100%; }
.navbar-toggler { border-color: rgba(255,255,255,0.2); }
.navbar-toggler:focus { box-shadow: none; }

/* Hero 区域 */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('{随机图片}') center center / cover no-repeat fixed;
  background-attachment: fixed;
  padding: 80px 0;
  overflow: hidden;
}
.hero-section::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(135deg, rgba(15,16,32,0.7) 0%, rgba(109,93,252,0.3) 50%, rgba(15,16,32,0.8) 100%);
  z-index:1;
}
.hero-content {
  position: relative;
  z-index:2;
  text-align:center;
  max-width:800px;
  padding:0 20px;
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(34,211,238,0.3);
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: rgba(232,234,246,0.85);
}
.hero-buttons .btn-hero {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  margin: 0 8px;
  border: none;
  font-size: 1rem;
  transition: all 0.4s ease;
}
.btn-primary-hero {
  background: linear-gradient(135deg, var(--primary), #4a3fd0);
  color: white;
  position: relative;
  overflow: hidden;
}
.btn-primary-hero::after {
  content:'';
  position:absolute;
  top:0; left:-100%;
  width:100%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-primary-hero:hover::after { left:100%; }
.btn-outline-hero {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent) !important;
}
.btn-outline-hero:hover {
  background: rgba(34,211,238,0.15);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(34,211,238,0.3);
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(109,93,252,0.4);
}

/* 区块通用 */
.section-padding { padding: 70px 0; }
.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content:'';
  position:absolute;
  bottom:-8px;
  left:0;
  width:60%;
  height:3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}
.section-subtitle { color: rgba(232,234,246,0.7); margin-bottom: 35px; font-size: 0.95rem; }
.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 分类入口 */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.pill-item {
  background: rgba(109,93,252,0.1);
  border: 1px solid rgba(109,93,252,0.3);
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-light);
}
.pill-item:hover, .pill-item.active {
  background: linear-gradient(135deg, var(--primary), #4a3fd0);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109,93,252,0.3);
}

/* 影片卡片 */
.movie-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  background: var(--gradient-card);
  border: 1px solid rgba(109,93,252,0.12);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  cursor: pointer;
  height: 100%;
  box-shadow: var(--card-shadow);
}
.movie-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(109,93,252,0.25);
  border-color: rgba(34,211,238,0.3);
}
.movie-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #1a1b2e;
}
.movie-poster img {
  width:100%;
  height:100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.movie-card:hover .movie-poster img { transform: scale(1.08); }
.movie-overlay {
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(to top, rgba(15,16,32,0.9) 0%, rgba(15,16,32,0.2) 60%, transparent 100%);
  opacity:0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px;
}
.movie-card:hover .movie-overlay { opacity:1; }
.play-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(34,211,238,0.4);
  transform: scale(0.8);
  transition: transform 0.4s ease;
}
.movie-card:hover .play-btn { transform: scale(1); }
.movie-info {
  padding: 12px 12px 10px;
  background: rgba(20,21,38,0.9);
}
.movie-title {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.movie-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(232,234,246,0.6);
}
.movie-rating {
  color: var(--accent);
  font-weight: 600;
}
.movie-year { background: rgba(109,93,252,0.2); padding: 1px 8px; border-radius: 10px; font-size: 0.7rem; }

/* 排行榜样式 */
.rank-list {
  background: rgba(255,255,255,0.03);
  border-radius: var(--card-radius);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(109,93,252,0.1);
}
.rank-item {
  display: flex;
  align-items: center;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 10px;
}
.rank-item:last-child { border-bottom: none; }
.rank-item:hover { background: rgba(109,93,252,0.1); transform: translateX(5px); }
.rank-number {
  width: 35px;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--primary);
  margin-right: 15px;
  text-align: center;
}
.rank-item:nth-child(1) .rank-number { color: var(--accent); font-size: 1.8rem; }
.rank-item:nth-child(2) .rank-number { color: var(--accent); font-size: 1.6rem; }
.rank-item:nth-child(3) .rank-number { color: var(--accent); font-size: 1.4rem; }
.rank-poster { width: 55px; height: 75px; border-radius: 10px; overflow: hidden; margin-right: 15px; flex-shrink: 0; }
.rank-poster img { width:100%; height:100%; object-fit: cover; }
.rank-info { flex:1; }
.rank-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; }
.rank-desc { font-size: 0.78rem; color: rgba(232,234,246,0.6); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 专题卡片 */
.topic-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease;
  cursor: pointer;
}
.topic-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(to top, rgba(15,16,32,0.9) 0%, transparent 70%);
  transition: all 0.4s ease;
}
.topic-card:hover { transform: scale(1.02); box-shadow: 0 15px 30px rgba(109,93,252,0.2); }
.topic-card-content { position: relative; z-index:1; }
.topic-card h4 { font-size: 1.1rem; margin-bottom: 5px; }
.topic-card p { font-size: 0.8rem; color: rgba(232,234,246,0.7); margin: 0; }

/* FAQ */
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(109,93,252,0.1);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.faq-item:hover { background: rgba(109,93,252,0.06); }
.faq-question {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
}
.faq-answer { color: rgba(232,234,246,0.8); font-size: 0.9rem; }

/* 友情链接 */
.friend-links {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(109,93,252,0.1);
  padding: 40px 0;
}
.friend-links-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: rgba(232,234,246,0.6);
}

/* 页脚 */
.footer {
  background: #0a0b18;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(109,93,252,0.15);
}
.footer-links a {
  color: rgba(232,234,246,0.6);
  margin: 0 12px;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }
.copyright { color: rgba(232,234,246,0.4); font-size: 0.85rem; margin-top: 20px; }

/* 弹窗 */
.movie-modal {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 2000;
  background: rgba(10,11,24,0.7);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.movie-modal.show { display: flex; }
.modal-card {
  background: #1a1b2e;
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(109,93,252,0.2);
  max-height: 90vh;
  position: relative;
}
.modal-poster {
  width: 40%;
  flex-shrink: 0;
  background: var(--gradient-card);
}
.modal-poster img { width:100%; height:100%; object-fit: cover; }
.modal-content {
  padding: 30px;
  flex:1;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}
.modal-close:hover { background: var(--primary); transform: rotate(90deg); }
.modal-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.modal-tags { margin-bottom: 15px; }
.modal-tag {
  display: inline-block;
  background: rgba(109,93,252,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-right: 8px;
  margin-bottom: 5px;
}
.modal-plot { font-size: 0.9rem; line-height: 1.8; color: rgba(232,234,246,0.8); margin-bottom: 15px; }
.modal-info-row { font-size: 0.85rem; margin-bottom: 5px; color: rgba(232,234,246,0.7); }
.modal-info-row span { color: var(--accent); font-weight: 600; }

/* 数字滚动动画 */
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-title);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item { text-align: center; padding: 20px; }
.stat-label { font-size: 0.9rem; color: rgba(232,234,246,0.6); margin-top: 5px; }

/* 步骤条 */
.steps-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0;
}
.step-item {
  flex:1;
  min-width: 200px;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(109,93,252,0.15);
  position: relative;
  text-align: center;
  transition: all 0.3s;
}
.step-item:hover { transform: translateY(-5px); border-color: var(--accent); }
.step-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 15px;
}
.step-title { font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 0.85rem; color: rgba(232,234,246,0.7); }

/* 响应式 */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .modal-card { flex-direction: column; max-height: 90vh; }
  .modal-poster { width: 100%; height: 200px; }
  .navbar-brand { font-size: 1.3rem; }
  .hero-section { background-attachment: scroll; }
  .movie-card { margin-bottom: 15px; }
}

/* 卡片网格行间距 */
.movie-row { margin-bottom: -15px; }
.movie-col { margin-bottom: 25px; }

/* 动画 */
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.8s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* 滚条美化 */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0b18; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--accent)); border-radius: 4px; }

/* --- 子页面追加 --- */
/* 本页专属小范围样式 */
    .about-hero {
      background: linear-gradient(135deg, rgba(109,93,252,0.25) 0%, rgba(34,211,238,0.12) 100%);
      border-radius: var(--card-radius);
      padding: 4rem 2rem;
      margin-bottom: 3rem;
      border: 1px solid rgba(109,93,252,0.2);
    }
.about-hero h1 {
      font-family: var(--font-title);
      font-weight: 800;
      color: var(--text-light);
      font-size: 2.6rem;
      line-height: 1.3;
    }
.about-hero p {
      color: rgba(232, 234, 246, 0.8);
      font-size: 1.1rem;
      max-width: 700px;
    }
.about-section-card {
      background: var(--gradient-card);
      border: 1px solid rgba(109,93,252,0.15);
      border-radius: var(--card-radius);
      padding: 2rem;
      margin-bottom: 1.5rem;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
.about-section-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--card-shadow);
    }
.about-section-card i {
      font-size: 2.2rem;
      color: var(--accent);
      margin-bottom: 1rem;
    }
.about-section-card h3 {
      font-family: var(--font-title);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 0.8rem;
    }
.about-section-card p {
      color: rgba(232, 234, 246, 0.75);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 0.5rem;
    }
.feature-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
    }
.feature-list li {
      padding: 0.4rem 0;
      color: rgba(232, 234, 246, 0.85);
      font-size: 0.95rem;
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
    }
.feature-list li i {
      color: var(--accent);
      font-size: 0.85rem;
      margin-top: 0.3rem;
    }
.quote-block {
      border-left: 4px solid var(--accent);
      padding: 1rem 1.5rem;
      background: rgba(34, 211, 238, 0.05);
      border-radius: 0 var(--card-radius) var(--card-radius) 0;
      margin: 2rem 0;
    }
.quote-block p {
      font-style: italic;
      color: rgba(232, 234, 246, 0.85);
      font-size: 1.05rem;
      margin-bottom: 0.3rem;
    }
.quote-block .quote-author {
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 600;
    }
.about-nav-link {
      display: inline-block;
      padding: 0.6rem 1.2rem;
      border: 1px solid rgba(109,93,252,0.3);
      border-radius: 50px;
      color: var(--text-light);
      font-size: 0.9rem;
      font-weight: 500;
      margin: 0.3rem 0.4rem 0.3rem 0;
      transition: all 0.3s ease;
      text-decoration: none;
      background: transparent;
    }
.about-nav-link:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      text-decoration: none;
    }
.about-nav-link i {
      margin-right: 0.3rem;
      font-size: 0.8rem;
    }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
    .disclaimer-section {
      background: var(--bg-dark);
      color: var(--text-light);
    }
.disclaimer-card {
      background: var(--gradient-card);
      border-radius: var(--card-radius);
      box-shadow: var(--card-shadow);
      padding: 2.5rem;
      margin-bottom: 2rem;
      border: 1px solid rgba(109, 93, 252, 0.15);
    }
.disclaimer-card h2 {
      font-family: var(--font-title);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
.disclaimer-card h2 i {
      color: var(--accent);
      font-size: 1.4rem;
    }
.disclaimer-card h3 {
      font-family: var(--font-title);
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--accent);
      margin: 1.8rem 0 0.8rem 0;
    }
.disclaimer-card p, .disclaimer-card li {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.9;
      color: var(--text-light);
      opacity: 0.92;
    }
.disclaimer-card ul, .disclaimer-card ol {
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
    }
.disclaimer-card li {
      margin-bottom: 0.6rem;
    }
.disclaimer-card .highlight-box {
      background: rgba(109, 93, 252, 0.1);
      border-left: 4px solid var(--primary);
      padding: 1.2rem 1.5rem;
      border-radius: 0 var(--card-radius) var(--card-radius) 0;
      margin: 1.5rem 0;
    }
.disclaimer-card .highlight-box p {
      margin: 0;
    }
.disclaimer-card a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px dashed rgba(34, 211, 238, 0.4);
      transition: all 0.3s ease;
    }
.disclaimer-card a:hover {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }
.section-header {
      margin-bottom: 3rem;
    }
.section-header .section-title {
      font-family: var(--font-title);
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      margin-bottom: 1rem;
    }
.section-header .section-subtitle {
      font-family: var(--font-body);
      font-size: 1.1rem;
      color: rgba(232, 234, 246, 0.7);
      max-width: 700px;
      margin: 0 auto;
    }
.last-updated {
      text-align: center;
      color: rgba(232, 234, 246, 0.5);
      font-size: 0.9rem;
      margin-top: 2rem;
    }
.disclaimer-card {
        padding: 1.8rem;
      }
.disclaimer-card h2 {
        font-size: 1.5rem;
      }
.section-header .section-title {
        font-size: 2rem;
      }

/* --- 子页面追加 --- */
.privacy-section {
      background: rgba(255, 255, 255, 0.02);
      border-radius: var(--card-radius);
      padding: 2rem 2.5rem;
      margin-bottom: 2rem;
      border-left: 4px solid var(--primary);
      box-shadow: var(--card-shadow);
      backdrop-filter: blur(8px);
    }
.privacy-section h2 {
      color: var(--primary);
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 1.6rem;
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
.privacy-section h2 i {
      color: var(--accent);
      font-size: 1.3rem;
    }
.privacy-section p {
      color: var(--text-light);
      line-height: 1.9;
      margin-bottom: 1rem;
      font-size: 0.98rem;
      opacity: 0.92;
    }
.privacy-section ul {
      padding-left: 1.5rem;
      margin-bottom: 1rem;
    }
.privacy-section ul li {
      color: var(--text-light);
      line-height: 1.9;
      margin-bottom: 0.4rem;
      font-size: 0.96rem;
      opacity: 0.92;
    }
.privacy-section strong {
      color: var(--accent);
      font-weight: 600;
    }
.privacy-hero {
      background: var(--gradient-card);
      border-radius: var(--card-radius);
      padding: 3rem 2.5rem;
      margin-bottom: 3rem;
      text-align: center;
      border: 1px solid rgba(109, 93, 252, 0.2);
    }
.privacy-hero h1 {
      font-family: var(--font-title);
      font-weight: 800;
      font-size: 2.4rem;
      color: var(--text-light);
      margin-bottom: 1rem;
    }
.privacy-hero .text-gradient {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
.privacy-hero p {
      color: var(--text-light);
      font-size: 1.05rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.85;
    }
.privacy-updated {
      display: inline-block;
      background: rgba(109, 93, 252, 0.15);
      color: var(--accent);
      padding: 0.4rem 1.2rem;
      border-radius: 30px;
      font-size: 0.85rem;
      margin-top: 1rem;
      border: 1px solid rgba(109, 93, 252, 0.3);
    }
.privacy-nav {
      position: sticky;
      top: 80px;
      z-index: 10;
      background: rgba(15, 16, 32, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 1rem 1.2rem;
      border: 1px solid rgba(109, 93, 252, 0.2);
      margin-bottom: 2rem;
    }
.privacy-nav a {
      color: var(--text-light);
      text-decoration: none;
      font-size: 0.9rem;
      padding: 0.3rem 0.8rem;
      border-radius: 6px;
      transition: all 0.3s ease;
      display: inline-block;
      margin: 0.2rem 0;
    }
.privacy-nav a:hover {
      color: var(--accent);
      background: rgba(109, 93, 252, 0.1);
    }
.privacy-section {
        padding: 1.5rem 1.2rem;
      }
.privacy-hero {
        padding: 2rem 1.2rem;
      }
.privacy-hero h1 {
        font-size: 1.8rem;
      }