:root {
  --primary: #4f46e5;
  --accent: #7c3aed;
  --bg: #f5f3ff;
  --text: #1e1b4b;
  --text-light: rgba(30, 27, 75, 0.7);
  --card-radius: 1.25rem;
  --shadow: 0 4px 20px rgba(79, 70, 229, 0.08);
  --mono-font: 'SF Mono', 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

/* 点阵背景 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(79, 70, 229, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* 细网格线背景（用于 Hero 和长文区块） */
.grid-overlay {
  position: relative;
}
.grid-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* 导航栏 */
.navbar {
  background: rgba(245, 243, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
  padding: 0.75rem 0;
  z-index: 100;
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--text) !important;
  letter-spacing: -0.02em;
}
.navbar-brand i {
  color: var(--primary);
  margin-right: 0.4rem;
  font-size: 1.4rem;
}
.navbar .nav-link {
  font-weight: 500;
  color: var(--text);
  opacity: 0.8;
  transition: all 0.2s ease;
  padding: 0.5rem 1rem !important;
  border-radius: 999px;
}
.navbar .nav-link:hover {
  opacity: 1;
  color: var(--primary);
  background: rgba(79, 70, 229, 0.06);
}
.navbar-toggler {
  border: none;
  color: var(--text);
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #1e1b4b;
  border-radius: 0 0 3rem 3rem;
  margin: 0.5rem 0.5rem 0;
  box-shadow: 0 8px 40px rgba(30, 27, 75, 0.3);
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
  max-width: 850px;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
}
.hero h1 .brand {
  color: #fff;
  position: relative;
  display: inline-block;
}
.hero h1 .brand::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 0.15em;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  z-index: -1;
}
.hero p.lead {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
  color: #fff;
}

/* 区块通用 */
.section {
  padding: 5rem 0;
  position: relative;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* 特色卡片 */
.feature-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(79, 70, 229, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.feature-card:hover {
  transform: scale(1.03);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.15);
}
.feature-card .icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  background: rgba(79, 70, 229, 0.08);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* 标签页 */
.tab-panel {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.08);
}
.tab-nav {
  display: flex;
  gap: 0.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(79, 70, 229, 0.08);
  flex-wrap: wrap;
}
.tab-btn {
  background: transparent;
  border: 1px solid rgba(79, 70, 229, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}
.tab-btn:hover {
  border-color: var(--primary);
  background: rgba(79, 70, 229, 0.05);
}
.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.tab-content {
  padding: 2rem;
}
.tab-item {
  display: none;
  animation: fadeIn 0.4s ease;
}
.tab-item.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.comic-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(79, 70, 229, 0.1);
}
.comic-item:last-child {
  border-bottom: none;
}
.comic-thumb {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  flex-shrink: 0;
}
.comic-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.comic-info p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}
.comic-score {
  font-family: var(--mono-font);
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}

/* 时间线 */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.3rem;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
}
.timeline-date {
  font-family: var(--mono-font);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  background: rgba(79, 70, 229, 0.08);
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 999px;
}
.timeline-content {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(79, 70, 229, 0.06);
}
.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.timeline-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* FAQ */
.faq-item {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(79, 70, 229, 0.08);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.faq-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 3rem;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 0 1rem;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.cta-btn {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  color: var(--accent);
}

/* 友情链接 */
.friend-links {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(79, 70, 229, 0.08);
  margin: 3rem 0 0;
}
.friend-links h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.friend-links .links {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 2;
}

/* 页脚 */
footer {
  background: #1e1b4b;
  color: rgba(255,255,255,0.8);
  padding: 3rem 0;
  margin-top: 5rem;
  border-radius: 3rem 3rem 0 0;
}
footer .brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}
footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: #fff;
}
footer .copyright {
  font-size: 0.9rem;
  opacity: 0.7;
  font-family: var(--mono-font);
}

/* 回到顶部 */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 100;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--accent);
}

/* 图片懒加载渐显 */
.lazy-img {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.lazy-img.loaded {
  opacity: 1;
}

/* 长文区块 */
.long-read {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid rgba(79, 70, 229, 0.08);
}
.long-read h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.long-read p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 2;
}
.long-read .highlight {
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  .hero {
    min-height: 70vh;
    border-radius: 0 0 2rem 2rem;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .long-read {
    padding: 2rem 1.5rem;
  }
  .tab-content {
    padding: 1.5rem;
  }
  .comic-item {
    flex-wrap: wrap;
  }
  .cta-section {
    border-radius: 2rem;
    padding: 3rem 1.5rem;
  }
}

/* --- 子页面追加 --- */
/* 关于我们页专属样式 */
        .about-hero {
            background: linear-gradient(135deg, rgba(79,70,229,0.08) 0%, rgba(124,58,237,0.08) 100%);
            border-bottom: 1px solid rgba(79,70,229,0.1);
            padding: 5rem 0 3.5rem;
            position: relative;
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1rem;
        }
.about-hero h1 span {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.about-hero p.lead {
            color: var(--text-light);
            font-size: 1.15rem;
            max-width: 720px;
            line-height: 1.8;
        }
.about-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            margin-top: 2.5rem;
        }
.stat-item {
            text-align: center;
        }
.stat-item .stat-num {
            font-family: var(--mono-font);
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }
.stat-item .stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 0.2rem;
        }
.about-section {
            padding: 4rem 0;
        }
.about-section .section-title {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text);
        }
.about-section .section-title i {
            color: var(--primary);
            margin-right: 0.5rem;
        }
.about-section .section-subtitle {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
.about-feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.about-feature-list li {
            padding: 0.75rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: var(--text);
            font-size: 0.98rem;
            line-height: 1.7;
            border-bottom: 1px dashed rgba(79,70,229,0.1);
        }
.about-feature-list li:last-child {
            border-bottom: none;
        }
.about-feature-list li i {
            color: var(--primary);
            margin-top: 0.35rem;
            flex-shrink: 0;
        }
.about-card {
            background: #fff;
            border-radius: var(--card-radius);
            box-shadow: var(--shadow);
            padding: 2rem;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(79,70,229,0.06);
        }
.about-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(79,70,229,0.12);
        }
.about-card .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
.about-card .card-icon i {
            color: #fff;
            font-size: 1.2rem;
        }
.about-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.75rem;
        }
.about-card p {
            font-size: 0.92rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 0;
        }
.timeline-content h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.4rem;
        }
.about-cta {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: var(--card-radius);
            padding: 3rem 2.5rem;
            text-align: center;
            color: #fff;
            margin-top: 3rem;
        }
.about-cta h2 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
        }
.about-cta p {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
.about-cta .btn-light-custom {
            display: inline-block;
            background: #fff;
            color: var(--primary);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
.about-cta .btn-light-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
.about-hero h1 {
                font-size: 2rem;
            }
.about-stats {
                gap: 1.5rem;
            }
.stat-item .stat-num {
                font-size: 1.5rem;
            }

/* --- 子页面追加 --- */
/* 隐私政策页面专属样式 */
        .privacy-section {
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(79, 70, 229, 0.1);
        }
.privacy-section:last-child {
            border-bottom: none;
        }
.privacy-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1.25rem;
            padding-left: 1rem;
            border-left: 4px solid var(--primary);
            line-height: 1.4;
        }
.privacy-section p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
.privacy-section ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
.privacy-section li {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
.privacy-section li strong {
            color: var(--text);
            font-weight: 600;
        }
.privacy-section .highlight-box {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.08));
            border: 1px solid rgba(79, 70, 229, 0.15);
            border-radius: var(--card-radius);
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
.privacy-section .highlight-box p {
            margin-bottom: 0.5rem;
        }
.privacy-section .highlight-box p:last-child {
            margin-bottom: 0;
        }
.privacy-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 1rem;
            background: rgba(79, 70, 229, 0.1);
            color: var(--primary);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
.privacy-badge i {
            font-size: 0.75rem;
        }
.last-updated {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            background: rgba(124, 58, 237, 0.08);
            border: 1px solid rgba(124, 58, 237, 0.2);
            border-radius: 50px;
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }
.privacy-hero {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(124, 58, 237, 0.05));
            border-radius: var(--card-radius);
            padding: 3rem 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
.privacy-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
.privacy-hero h1 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
.privacy-hero p {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.8;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }
.privacy-hero {
                padding: 2rem 1.25rem;
            }
.privacy-hero h1 {
                font-size: 1.5rem;
            }
.privacy-section h2 {
                font-size: 1.25rem;
            }

/* --- 子页面追加 --- */
/* 本页专属少量样式,自动合并进站点CSS */
        .legal-section {
            background: var(--bg);
            border: 1px solid rgba(79, 70, 229, 0.08);
            border-radius: var(--card-radius);
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
.legal-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
.legal-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
.legal-section p, .legal-section li {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 0.98rem;
        }
.legal-section ul {
            padding-left: 1.2rem;
            margin: 1rem 0;
        }
.legal-section li {
            margin-bottom: 0.6rem;
        }
.legal-section strong {
            color: var(--text);
            font-weight: 600;
        }
.legal-alert {
            background: rgba(79, 70, 229, 0.05);
            border-left: 4px solid var(--primary);
            padding: 1.2rem 1.5rem;
            border-radius: 0 1rem 1rem 0;
            margin: 1.5rem 0;
        }
.legal-alert p {
            margin: 0;
            color: var(--text);
        }
.legal-date {
            font-family: var(--mono-font);
            font-size: 0.9rem;
            color: var(--primary);
            margin-top: 0.5rem;
        }
.highlight-text {
            background: rgba(124, 58, 237, 0.08);
            padding: 0.2rem 0.5rem;
            border-radius: 0.4rem;
            font-weight: 500;
            color: var(--accent);
        }
.table-of-contents {
            background: rgba(79, 70, 229, 0.04);
            border-radius: var(--card-radius);
            padding: 1.5rem 2rem;
            margin-bottom: 2.5rem;
        }
.table-of-contents a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
.table-of-contents a:hover {
            color: var(--accent);
        }
.table-of-contents li {
            margin-bottom: 0.4rem;
        }
.legal-section {
                padding: 1.5rem;
            }