:root {
  --primary: #16a34a;
  --accent: #84cc16;
  --bg: #f7fee7;
  --text: #1a2e05;
  --primary-dark: #15803d;
  --shadow-heavy: 0 8px 24px rgba(22, 163, 74, 0.18), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-card: 0 6px 20px rgba(26, 46, 5, 0.12);
  --border-light: #d9f99d;
  --grid-line: rgba(22, 163, 74, 0.07);
}

* { box-sizing: border-box; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background-image: 
    radial-gradient(var(--grid-line) 1px, transparent 1px),
    radial-gradient(var(--grid-line) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px;
  background-position: 0 0, 16px 16px;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(145deg, rgba(132, 204, 22, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.font-serif-title {
  font-family: 'Noto Serif SC', 'Source Han Serif SC', 'SimSun', serif;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* 左侧固定侧栏 */
.left-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-right: 2px solid var(--border-light);
  padding: 2rem 1.5rem;
  z-index: 1040;
  overflow-y: auto;
  box-shadow: 2px 0 20px rgba(22, 163, 74, 0.08);
  transition: transform 0.3s ease;
}

.sidebar-brand {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2.5rem;
  font-family: 'Noto Serif SC', serif;
  text-shadow: 2px 2px 0 rgba(132, 204, 22, 0.2);
}

.sidebar-brand i {
  font-size: 1.6rem;
  color: var(--accent);
}

.sidebar-nav {
  list-style: none;
  padding: 0;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem 1.2rem;
  margin-bottom: 0.4rem;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid transparent;
}

.sidebar-nav .nav-link i {
  width: 24px;
  text-align: center;
  color: var(--primary);
}

.sidebar-nav .nav-link:hover {
  background: rgba(22, 163, 74, 0.08);
  border-color: var(--border-light);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08);
}

.sidebar-nav .nav-link.active {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-heavy);
}

.sidebar-nav .nav-link.active i {
  color: #fff;
}

.sidebar-stats {
  margin-top: 2rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, #f0fdf4, #ecfccb);
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

.sidebar-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* 主内容区 */
.main-wrapper {
  margin-left: 260px;
  padding: 0 2.5rem 4rem;
  position: relative;
  z-index: 1;
}

/* 顶部导航（移动端显示） */
.top-navbar {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--border-light);
  padding: 0.8rem 1.2rem;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.top-navbar .brand {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.4rem;
  text-decoration: none;
  font-family: 'Noto Serif SC', serif;
}

/* Hero 区域 */
.hero-section {
  padding: 3.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 2rem 0;
}

.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  background: linear-gradient(120deg, #16a34a 10%, #84cc16 50%, #16a34a 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #3f6212;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-forest {
  background: var(--primary);
  color: white;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
  transition: all 0.3s;
  text-decoration: none;
}

.btn-forest:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
  color: white;
}

.btn-outline-forest {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-outline-forest:hover {
  background: rgba(22, 163, 74, 0.1);
  transform: translateY(-2px);
}

/* 浮动装饰元素 */
.float-element {
  position: absolute;
  font-size: 3rem;
  opacity: 0.25;
  animation: floatY 6s ease-in-out infinite;
  pointer-events: none;
}

.float-element-1 { top: 10%; right: 15%; animation-delay: 0s; }
.float-element-2 { top: 60%; right: 8%; animation-delay: 1.2s; font-size: 2rem; }
.float-element-3 { top: 20%; right: 35%; animation-delay: 2s; font-size: 2.4rem; }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* 瀑布流卡片 */
.waterfall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem;
  padding: 1.5rem 0;
}

.comic-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeIn 0.6s forwards;
}

.comic-card:nth-child(1) { animation-delay: 0.05s; }
.comic-card:nth-child(2) { animation-delay: 0.15s; }
.comic-card:nth-child(3) { animation-delay: 0.25s; }
.comic-card:nth-child(4) { animation-delay: 0.35s; }
.comic-card:nth-child(5) { animation-delay: 0.45s; }
.comic-card:nth-child(6) { animation-delay: 0.55s; }
.comic-card:nth-child(7) { animation-delay: 0.65s; }
.comic-card:nth-child(8) { animation-delay: 0.75s; }

@keyframes cardFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.comic-card:hover {
  transform: scale(1.02) translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.2);
}

.card-img-wrapper {
  height: 320px;
  background: linear-gradient(145deg, #dcfce7, #ecfccb);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.comic-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-img-wrapper .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(22, 163, 74, 0.9);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 1rem 1.2rem 1.2rem;
}

.card-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.card-meta {
  font-size: 0.85rem;
  color: #4d7c0f;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-rating i {
  color: #f59e0b;
  margin-right: 2px;
}

.card-episode {
  background: rgba(132, 204, 22, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.78rem;
}

/* 长文介绍区 */
.intro-section {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-heavy);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #3f6212;
  margin-bottom: 1.5rem;
}

.highlight-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Noto Serif SC', serif;
  line-height: 1.2;
}

/* 对比表格 */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  margin: 2rem 0;
}

.compare-table th {
  background: linear-gradient(135deg, var(--primary), #15803d);
  color: white;
  padding: 1.2rem;
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
  border-bottom: 3px solid var(--accent);
}

.compare-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #f0fdf4;
  text-align: center;
  font-weight: 500;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: rgba(132, 204, 22, 0.05);
}

.compare-check {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 900;
}

.compare-cross {
  color: #dc2626;
  font-size: 1.3rem;
  font-weight: 900;
}

/* 手风琴 */
.accordion-item {
  border: 1px solid var(--border-light) !important;
  margin-bottom: 0.8rem;
  border-radius: 12px !important;
  overflow: hidden;
  background: white;
}

.accordion-header {
  background: white;
}

.accordion-button {
  font-weight: 600;
  color: var(--text);
  background: white;
  padding: 1.2rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(132, 204, 22, 0.08);
  color: var(--primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent);
}

.accordion-body {
  padding: 1.2rem 1.5rem;
  line-height: 1.8;
  color: #3f6212;
  background: #fefce8;
}

/* 特色图标列表 */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #f0fdf4, #ecfccb);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 2px solid var(--border-light);
}

.feature-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: #4d7c0f;
  line-height: 1.6;
}

/* CTA 区块 */
.cta-section {
  background: linear-gradient(120deg, #16a34a, #15803d);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.3);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: pulseBg 4s ease-in-out infinite;
}

@keyframes pulseBg {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

.cta-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  position: relative;
}

.cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  position: relative;
}

.cta-btn {
  background: white;
  color: var(--primary);
  font-weight: 800;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: var(--primary-dark);
}

/* FAQ 区块 */
.faq-section {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  margin: 3rem 0;
}

/* 友情链接 */
.friend-links {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  margin: 3rem 0 1.5rem;
  text-align: center;
}

.friend-links-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.friend-links-content {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4d7c0f;
  font-size: 1rem;
}

/* 页脚 */
.footer {
  background: #1a2e05;
  color: #d9f99d;
  padding: 2.5rem 2rem 1.5rem;
  border-radius: 20px 20px 0 0;
  margin-top: 3rem;
}

.footer-brand {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #d9f99d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  border-top: 1px solid rgba(217, 249, 157, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* 数字滚动动画 */
.stat-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* 响应式 */
@media (max-width: 992px) {
  .left-sidebar {
    transform: translateX(-100%);
    width: 240px;
  }
  
  .main-wrapper {
    margin-left: 0;
    padding: 0 1.5rem 3rem;
  }
  
  .top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .sidebar-toggle-btn {
    display: block;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1035;
  }
  
  .sidebar-overlay.active {
    display: block;
  }
  
  .left-sidebar.active {
    transform: translateX(0);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .waterfall-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .card-img-wrapper {
    height: 200px;
  }
  
  .compare-table th,
  .compare-table td {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .footer-links {
    gap: 1rem;
    font-size: 0.9rem;
  }
}

/* --- 子页面追加 --- */
/* 页面专属微调 — 保证与首页变量完全一致，仅补足about页特殊模块 */
        .about-hero {
            background: linear-gradient(135deg, rgba(22,163,74,0.08) 0%, rgba(132,204,22,0.04) 100%);
            border-bottom: 1px solid var(--border-light);
            padding: 3.5rem 0 2.5rem;
        }
.about-hero .hero-title {
            color: var(--text);
            font-weight: 800;
            letter-spacing: -0.02em;
        }
.about-section {
            padding: 3rem 0;
        }
.about-section + .about-section {
            border-top: 1px dashed var(--border-light);
        }
.section-badge {
            display: inline-block;
            background: rgba(22,163,74,0.12);
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 0.8rem;
            padding: 0.25rem 0.85rem;
            border-radius: 30px;
            margin-bottom: 1rem;
            border: 1px solid rgba(22,163,74,0.2);
            letter-spacing: 0.02em;
        }
.feature-point {
            display: flex;
            gap: 1rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(22,163,74,0.08);
        }
.feature-point i {
            font-size: 1.6rem;
            color: var(--primary);
            width: 2.4rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }
.feature-point h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.3rem;
        }
.feature-point p {
            color: #3f5a1a;
            font-size: 0.95rem;
            margin-bottom: 0;
            line-height: 1.6;
        }
.timeline-list {
            list-style: none;
            padding-left: 0;
        }
.timeline-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1.2rem;
            color: #2d4610;
        }
.timeline-list li::before {
            content: "●";
            position: absolute;
            left: 0.4rem;
            color: var(--primary);
            font-size: 1.1rem;
        }
.stat-label {
            font-size: 0.85rem;
            color: #4a6b20;
            font-weight: 500;
        }
.about-cta {
            background: var(--bg);
            border-radius: 24px;
            border: 1px solid var(--border-light);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-card);
        }
/* 确保bootstrap无干扰 */
        .about-section .row, .about-section .col-12 { --bs-gutter-x: 1.5rem; }
/* 避免bootstrap默认卡片白底 */
        .about-cta, .feature-point, .timeline-list li { background: transparent; }
.sidebar-brand, .sidebar-nav a { color: var(--text); }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .disclaimer-page {
            padding: 40px 0 60px;
        }
.disclaimer-hero {
            background: linear-gradient(135deg, rgba(22,163,74,0.08) 0%, rgba(132,204,22,0.12) 100%);
            border-radius: 16px;
            padding: 40px 32px;
            margin-bottom: 40px;
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }
.disclaimer-hero::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(22,163,74,0.06);
        }
.disclaimer-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
.disclaimer-hero p {
            color: var(--text);
            opacity: 0.75;
            font-size: 1.05rem;
            max-width: 720px;
            position: relative;
            z-index: 1;
        }
.disclaimer-section {
            background: rgba(255,255,255,0.7);
            border: 1px solid var(--border-light);
            border-radius: 14px;
            padding: 28px 32px;
            margin-bottom: 28px;
            box-shadow: var(--shadow-card);
            transition: transform 0.3s ease;
        }
.disclaimer-section:hover {
            transform: translateY(-2px);
        }
.disclaimer-section h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-section h2 i {
            color: var(--primary);
            font-size: 1.2rem;
        }
.disclaimer-section p, .disclaimer-section li {
            color: var(--text);
            opacity: 0.85;
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-section ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }
.disclaimer-section li {
            margin-bottom: 6px;
        }
.disclaimer-section strong {
            color: var(--primary-dark);
        }
.notice-box {
            background: rgba(22,163,74,0.06);
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 8px;
            margin: 16px 0;
        }
.notice-box p {
            margin: 0;
            font-size: 0.92rem;
        }
.update-time {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 8px;
        }
.disclaimer-hero {
                padding: 28px 20px;
            }
.disclaimer-hero h1 {
                font-size: 1.6rem;
            }
.disclaimer-section {
                padding: 20px;
            }

/* --- 子页面追加 --- */
/* 本页专属小范围补充样式，仅用于增强“查看全部”页的列表感与间距 */
    .all-list-section {
      padding: 3rem 0;
    }
.all-list-heading {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      border-left: 6px solid var(--primary);
      padding-left: 1rem;
      margin-bottom: 2rem;
      color: var(--text);
    }
.all-list-heading i {
      color: var(--primary);
      margin-right: 0.5rem;
    }
.comic-grid-item {
      margin-bottom: 2rem;
    }
.badge-tag {
      background: var(--accent);
      color: var(--text);
      font-weight: 600;
      font-size: 0.75rem;
      padding: 0.25rem 0.8rem;
      border-radius: 30px;
      display: inline-block;
      letter-spacing: 0.02em;
      border: 1px solid var(--border-light);
    }
.section-subnote {
      color: var(--text);
      opacity: 0.8;
      font-size: 0.95rem;
      margin-top: -1rem;
      margin-bottom: 2.5rem;
    }
.filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 2.5rem;
      align-items: center;
    }
.filter-chip {
      background: var(--bg);
      border: 1px solid var(--border-light);
      color: var(--text);
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      font-weight: 500;
      font-size: 0.9rem;
      transition: all 0.2s;
      cursor: default;
    }
.filter-chip i {
      color: var(--primary);
      margin-right: 0.4rem;
    }
.filter-chip.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }
.filter-chip.active i {
      color: white;
    }
hr.divider-light {
      border-top: 1px solid var(--border-light);
      opacity: 0.5;
      margin: 2.5rem 0;
    }
.all-list-card .comic-card {
      height: 100%;
      transition: transform 0.15s ease, box-shadow 0.2s ease;
    }
.all-list-card .comic-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-heavy);
    }
.pagination-links {
      display: flex;
      justify-content: center;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-top: 2.5rem;
    }
.pagination-links .page-link-custom {
      min-width: 44px;
      padding: 0.5rem 1rem;
      background: var(--bg);
      border: 1px solid var(--border-light);
      border-radius: 30px;
      font-weight: 600;
      color: var(--text);
      text-align: center;
      transition: background 0.15s;
    }
.pagination-links .page-link-custom:hover {
      background: var(--accent);
      color: var(--text);
      border-color: var(--accent);
    }

/* --- 子页面追加 --- */
/* 覆盖 bootstrap 潜在白底 */
    .card, .card-body, .form-control, .accordion-item, .accordion-button, .accordion-body, .list-group-item {
      background: var(--card-bg, rgba(255,255,255,0.85));
      color: var(--text);
      border-color: var(--border-light);
    }
.privacy-hero {
      background: var(--bg);
      padding: 3rem 0 1.5rem;
      border-bottom: 1px solid var(--border-light);
    }
.privacy-hero .hero-title {
      color: var(--primary-dark);
    }
.privacy-section {
      background: var(--bg);
      border: 1px solid var(--border-light);
      border-radius: 20px;
      padding: 2rem 1.8rem;
      margin-bottom: 2rem;
      box-shadow: var(--shadow-card);
    }
.privacy-section h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1.2rem;
      border-left: 5px solid var(--primary);
      padding-left: 1rem;
    }
.privacy-section h3 {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--text);
      margin-top: 1.8rem;
      margin-bottom: 0.8rem;
    }
.privacy-section p, .privacy-section li {
      color: var(--text);
      line-height: 1.8;
    }
.privacy-section ul {
      padding-left: 1.4rem;
    }
.privacy-section a {
      color: var(--primary);
      font-weight: 500;
    }
.privacy-footer {
      background: var(--bg);
      border-top: 1px solid var(--border-light);
    }
.badge-leaf {
      background: var(--primary);
      color: #fff;
      font-weight: 500;
      padding: 0.2em 1em;
      border-radius: 30px;
      font-size: 0.8rem;
      display: inline-block;
      margin-bottom: 1rem;
    }
.sidebar-nav .nav-link.active-privacy {
      background: var(--primary);
      color: #fff !important;
      border-radius: 30px;
    }
/* 确保卡片内白底完全覆盖 */
    .card, .card-body { background: var(--bg); }
.top-navbar .nav-link { color: var(--text); }
.top-navbar .nav-link:hover { color: var(--primary); }

/* --- 子页面追加 --- */
/* 本页仅补充榜单特有的小样式，所有变量沿用首页 */
        .rank-header {
            background: var(--primary);
            color: #fff;
            border-radius: 18px 18px 0 0;
            padding: 1.2rem 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            letter-spacing: 0.5px;
            border-bottom: 3px solid var(--accent);
        }
.rank-header i {
            color: var(--accent);
            font-size: 1.3rem;
        }
.rank-body {
            background: rgba(255,255,255,0.45);
            backdrop-filter: blur(6px);
            border: 1px solid var(--border-light);
            border-top: none;
            border-radius: 0 0 18px 18px;
            padding: 1.8rem 1.5rem;
            box-shadow: var(--shadow-card);
        }
.rank-item {
            display: flex;
            align-items: center;
            padding: 1rem 0.8rem;
            border-bottom: 1px dashed var(--border-light);
            transition: background 0.2s;
        }
.rank-item:hover {
            background: rgba(132, 204, 22, 0.08);
        }
.rank-num {
            font-size: 1.8rem;
            font-weight: 900;
            width: 3.4rem;
            text-align: center;
            color: var(--primary-dark);
            font-family: 'Inter', sans-serif;
        }
.rank-num.top1 { color: #eab308; }
.rank-num.top2 { color: #94a3b8; }
.rank-num.top3 { color: #b45309; }
.rank-info {
            flex: 1;
            padding: 0 1rem;
        }
.rank-title {
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text);
            line-height: 1.4;
        }
.rank-tag {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-size: 0.7rem;
            border-radius: 30px;
            padding: 2px 10px;
            margin-left: 8px;
            vertical-align: middle;
            letter-spacing: 0.3px;
        }
.rank-meta {
            font-size: 0.85rem;
            color: #4d6a2c;
            margin-top: 4px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
.rank-meta i {
            color: var(--primary);
            width: 16px;
        }
.rank-score {
            font-weight: 800;
            color: var(--primary-dark);
            background: rgba(22,163,74,0.1);
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.9rem;
            white-space: nowrap;
        }
.rank-item:last-of-type {
            border-bottom: none;
        }
.badge-trend {
            background: var(--accent);
            color: #1a2e05;
            font-weight: 600;
            font-size: 0.75rem;
            border-radius: 30px;
            padding: 2px 10px;
            margin-left: 6px;
        }
.section-subhead {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text);
            border-left: 8px solid var(--primary);
            padding-left: 1rem;
            margin: 2.5rem 0 1.2rem 0;
            letter-spacing: -0.3px;
        }
.section-subhead i {
            color: var(--primary);
            margin-right: 8px;
        }
.list-card {
            background: rgba(255,255,255,0.3);
            backdrop-filter: blur(4px);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: var(--shadow-card);
        }
.rank-num { width: 2.5rem; font-size: 1.4rem; }
.rank-title { font-size: 1rem; }
.rank-header { padding: 1rem 1.2rem; }
.rank-body { padding: 1rem 0.8rem; }

/* --- 子页面追加 --- */
/* 本页专属补充样式(会合并进站点CSS) */
        .contact-hero {
            padding: 3.5rem 0 2rem;
            position: relative;
            overflow: hidden;
        }
.contact-hero .hero-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            color: var(--text);
            margin-bottom: 0.75rem;
        }
.contact-hero .hero-subtitle {
            color: var(--primary-dark);
            font-size: 1.15rem;
            font-weight: 500;
        }
.contact-section {
            padding: 2.5rem 0;
            position: relative;
        }
.contact-section + .contact-section {
            border-top: 1px solid var(--border-light);
        }
.contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
.contact-card {
            background: var(--bg);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 1.75rem 1.5rem;
            box-shadow: var(--shadow-card);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            position: relative;
        }
.contact-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-heavy);
        }
.contact-card .card-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            display: inline-block;
            background: rgba(22, 163, 74, 0.08);
            width: 56px;
            height: 56px;
            line-height: 56px;
            text-align: center;
            border-radius: 12px;
        }
.contact-card h3 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 0.6rem;
        }
.contact-card p {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }
.contact-card a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            word-break: break-all;
        }
.contact-card a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
.faq-item {
            background: var(--bg);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-card);
        }
.faq-item h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.4rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
.faq-item h3 i {
            color: var(--primary);
            font-size: 0.9rem;
        }
.faq-item p {
            color: var(--text);
            font-size: 0.93rem;
            line-height: 1.65;
            margin-bottom: 0;
        }
.contact-note {
            background: rgba(22, 163, 74, 0.06);
            border-left: 4px solid var(--primary);
            border-radius: 0 12px 12px 0;
            padding: 1.25rem 1.5rem;
            margin: 2rem 0 0;
        }
.contact-note p {
            margin-bottom: 0.3rem;
            color: var(--text);
            font-size: 0.95rem;
        }
.contact-note p:last-child {
            margin-bottom: 0;
        }
.contact-grid {
                grid-template-columns: 1fr;
            }

/* --- 子页面追加 --- */
/* 网站地图专属样式 */
        .sitemap-page { padding: 2rem 0 4rem; }
.sitemap-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: 1.5rem; padding: 3rem 2rem; margin-bottom: 3rem; position: relative; overflow: hidden; }
.sitemap-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.sitemap-hero::after { content: ''; position: absolute; bottom: -60%; left: -10%; width: 300px; height: 300px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.sitemap-hero-content { position: relative; z-index: 1; color: #fff; }
.sitemap-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.sitemap-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 700px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.sitemap-card { background: var(--card-bg, #fff); border-radius: 1rem; padding: 1.8rem; box-shadow: var(--shadow-card); border: 1px solid var(--border-light); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.sitemap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-heavy); }
.sitemap-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.sitemap-card-header i { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--primary); color: #fff; font-size: 1.2rem; }
.sitemap-card-header h2 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0; }
.sitemap-card ul { list-style: none; padding: 0; margin: 0; }
.sitemap-card ul li { padding: 0.5rem 0; border-bottom: 1px dashed var(--border-light); }
.sitemap-card ul li:last-child { border-bottom: none; }
.sitemap-card ul li a { color: var(--text); text-decoration: none; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.sitemap-card ul li a:hover { color: var(--primary); }
.sitemap-card ul li a i { font-size: 0.7rem; color: var(--primary); }
.sitemap-note { margin-top: 3rem; padding: 1.5rem; background: rgba(22, 163, 74, 0.08); border-radius: 1rem; border-left: 4px solid var(--primary); }
.sitemap-note p { margin: 0; color: var(--text); font-size: 0.95rem; }
.breadcrumb-custom { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text); margin-bottom: 2rem; flex-wrap: wrap; }
.breadcrumb-custom a { color: var(--primary); text-decoration: none; }
.breadcrumb-custom i { font-size: 0.7rem; color: var(--primary); }
.sitemap-hero { padding: 2rem 1.5rem; }
.sitemap-hero h1 { font-size: 1.8rem; }
.sitemap-grid { grid-template-columns: 1fr; }