:root {
  --primary: #059669;
  --accent: #14b8a6;
  --bg: #f0fdfa;
  --text: #134e4a;
  --text-light: #5b8b86;
  --card-bg: #ffffff;
  --shadow-1: 0 4px 6px rgba(5, 150, 105, 0.07), 0 10px 30px rgba(5, 150, 105, 0.06);
  --shadow-2: 0 8px 16px rgba(5, 150, 105, 0.10), 0 20px 50px rgba(5, 150, 105, 0.08);
  --shadow-3: 0 12px 24px rgba(5, 150, 105, 0.12), 0 30px 60px rgba(5, 150, 105, 0.10);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

/* 导航栏 */
.navbar-custom {
  background: rgba(240, 253, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid rgba(5, 150, 105, 0.08);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-custom.scrolled {
  background: rgba(240, 253, 250, 0.92);
  backdrop-filter: blur(30px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(5, 150, 105, 0.08);
}

.navbar-custom .navbar-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-custom .navbar-brand i {
  color: var(--primary);
  font-size: 1.6rem;
}

.navbar-custom .nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px !important;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-custom .nav-link:hover {
  color: var(--primary);
  background: rgba(5, 150, 105, 0.06);
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-custom .nav-link:hover::after {
  width: 60%;
}

/* Hero 区域 */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(20, 184, 166, 0.10));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('{随机图片}');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.9);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(19, 78, 74, 0.3), rgba(19, 78, 74, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(5, 150, 105, 0.4);
  color: #ffffff;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* 便当网格布局 */
.bento-section {
  padding: 80px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-item {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 150, 105, 0.06);
}

.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3);
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-span-4 { grid-column: span 4; }
.bento-span-6 { grid-column: span 6; }
.bento-span-8 { grid-column: span 8; }
.bento-span-12 { grid-column: span 12; }

.bento-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25);
}

.bento-item h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.bento-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.bento-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 100px;
}

.stat-value {
  font-family: 'SF Mono', 'Courier New', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* 长文介绍区块 */
.article-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg), #e8f9f4);
}

.article-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.article-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
}

.article-lead {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 30px;
}

.article-body {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.9;
}

/* 手风琴 */
.accordion-custom {
  margin-top: 40px;
}

.accordion-custom .accordion-item {
  background: var(--card-bg);
  border: 1px solid rgba(5, 150, 105, 0.08);
  border-radius: var(--radius-md) !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.05);
}

.accordion-custom .accordion-button {
  padding: 20px 28px;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: rgba(5, 150, 105, 0.05);
  color: var(--primary);
  box-shadow: none;
}

.accordion-custom .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-custom .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-custom .accordion-body {
  padding: 0 28px 24px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* FAQ 区域 */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.faq-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

/* CTA 区域 */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #ffffff;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}

/* 友情链接 */
.friends-section {
  padding: 50px 0;
  background: var(--bg);
  border-top: 1px solid rgba(5, 150, 105, 0.08);
}

.friends-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 24px;
}

.friends-links {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* 页脚 */
.footer {
  background: #0d3b36;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand i {
  color: var(--accent);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer-links-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* 响应式 */
@media (max-width: 992px) {
  .bento-span-4,
  .bento-span-6,
  .bento-span-8,
  .bento-span-12 {
    grid-column: span 12;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .article-title {
    font-size: 2.2rem;
  }
  
  .faq-header h2 {
    font-size: 2.2rem;
  }
  
  .cta-content h2 {
    font-size: 2.4rem;
  }
  
  .navbar-custom .navbar-collapse {
    background: rgba(240, 253, 250, 0.98);
    border-radius: 16px;
    padding: 20px;
    margin-top: 10px;
    box-shadow: var(--shadow-2);
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .bento-item {
    padding: 24px;
  }
  
  .stat-value {
    font-size: 1.4rem;
  }
  
  .article-title {
    font-size: 1.8rem;
  }
}

/* --- 子页面追加 --- */
/* 覆盖 Bootstrap 组件默认白底黑字 (以防万一) */
    .card, .card-body, .list-group-item, .accordion-item, .accordion-button, .accordion-body {
      background: var(--card-bg);
      color: var(--text);
      border-color: rgba(5, 150, 105, 0.15);
    }
.rank-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 10px;
    }
.rank-table .rank-item {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-1);
      transition: transform .2s ease, box-shadow .2s ease;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 8px;
      border: 1px solid rgba(5, 150, 105, 0.08);
    }
.rank-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-2);
    }
.rank-number {
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--primary);
      min-width: 48px;
      text-align: center;
      opacity: 0.9;
    }
.rank-info {
      flex: 1;
    }
.rank-title {
      font-weight: 700;
      color: var(--text);
      font-size: 1.05rem;
      margin-bottom: 4px;
    }
.rank-meta {
      font-size: 0.85rem;
      color: var(--text-light);
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
.rank-tag {
      background: rgba(20, 184, 166, 0.12);
      color: var(--primary);
      border-radius: 20px;
      padding: 2px 12px;
      font-size: 0.75rem;
      font-weight: 600;
      display: inline-block;
    }
.rank-stats {
      font-size: 0.85rem;
      color: var(--text-light);
      white-space: nowrap;
    }
.badge-hot {
      background: var(--primary);
      color: #fff;
      font-size: 0.7rem;
      padding: 3px 8px;
      border-radius: 12px;
      margin-left: 8px;
      font-weight: 600;
    }
.section-subtitle {
      font-size: 1rem;
      color: var(--text-light);
      letter-spacing: 0.3px;
    }
/* 榜单类型 tab 风格 (无 Bootstrap 组件) */
    .rank-cats {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }
.rank-cat-btn {
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(5,150,105,0.15);
      color: var(--text);
      padding: 6px 18px;
      border-radius: 30px;
      font-weight: 500;
      font-size: 0.9rem;
      cursor: default;
      transition: all .2s;
      box-shadow: var(--shadow-1);
    }
.rank-cat-btn.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
/* 页脚链接颜色 (沿用站点样式) */
    .footer-links a {
      color: var(--text-light);
      margin: 0 8px;
      text-decoration: none;
      font-size: 0.9rem;
    }

/* --- 子页面追加 --- */
.contact-hero {
            background: linear-gradient(135deg, var(--bg) 0%, #d1fae5 100%);
            padding: 80px 0 60px;
            border-bottom: 1px solid rgba(5, 150, 105, 0.1);
        }
.contact-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
.contact-hero .lead {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.8;
        }
.contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 60px 0 20px;
        }
.contact-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow-1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(5, 150, 105, 0.06);
        }
.contact-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-2);
        }
.contact-card h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.contact-card h2 i {
            color: var(--primary);
            font-size: 1.4rem;
        }
.contact-card p {
            color: var(--text-light);
            line-height: 1.9;
            font-size: 0.98rem;
            margin-bottom: 18px;
        }
.contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.contact-list li {
            padding: 10px 0;
            border-bottom: 1px dashed rgba(5, 150, 105, 0.12);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text);
            font-size: 0.96rem;
            line-height: 1.6;
        }
.contact-list li:last-child {
            border-bottom: none;
        }
.contact-list li i {
            color: var(--accent);
            margin-top: 4px;
            width: 18px;
            flex-shrink: 0;
        }
.form-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow-1);
            border: 1px solid rgba(5, 150, 105, 0.06);
        }
.form-card h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
.form-card .form-desc {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 28px;
            line-height: 1.7;
        }
.form-label-custom {
            font-weight: 600;
            color: var(--text);
            font-size: 0.92rem;
            margin-bottom: 8px;
            display: block;
        }
.form-control-custom {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid rgba(5, 150, 105, 0.2);
            border-radius: var(--radius-md);
            background: var(--bg);
            color: var(--text);
            font-size: 0.95rem;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            margin-bottom: 20px;
        }
.form-control-custom:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
            background: #fff;
        }
.form-control-custom::placeholder {
            color: #9db5b1;
        }
.form-select-custom {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid rgba(5, 150, 105, 0.2);
            border-radius: var(--radius-md);
            background: var(--bg);
            color: var(--text);
            font-size: 0.95rem;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23134e4a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            margin-bottom: 20px;
        }
.form-select-custom:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
            background-color: #fff;
        }
.btn-submit {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
.btn-submit:hover {
            background: #047857;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
        }
.faq-mini {
            margin-top: 50px;
        }
.faq-mini h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            text-align: center;
        }
.faq-item {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 24px;
            box-shadow: var(--shadow-1);
            border-left: 4px solid var(--accent);
        }
.faq-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }
.faq-item p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 0;
        }
.response-time {
            background: linear-gradient(135deg, rgba(5,150,105,0.06), rgba(20,184,166,0.06));
            border-radius: var(--radius-md);
            padding: 16px 24px;
            margin-top: 30px;
            border: 1px solid rgba(5, 150, 105, 0.1);
            display: flex;
            align-items: center;
            gap: 16px;
        }
.response-time i {
            font-size: 1.8rem;
            color: var(--primary);
        }
.response-time span {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.6;
        }
.contact-hero h1 {
                font-size: 2.2rem;
            }
.contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 40px;
            }
.contact-card, .form-card {
                padding: 28px 22px;
            }

/* --- 子页面追加 --- */
/* 确保 Bootstrap 组件不破坏整体配色 —— 只用了栅格与工具类，不涉及组件类，故覆盖极少 */
    .genre-card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-1);
      transition: transform .25s ease, box-shadow .25s ease;
      height: 100%;
      padding: 1.5rem 1.2rem;
      border: 1px solid rgba(5, 150, 105, 0.08);
    }
.genre-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-3);
    }
.genre-icon {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: .75rem;
    }
.genre-title {
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--text);
      margin-bottom: .5rem;
      letter-spacing: -.2px;
    }
.genre-desc {
      font-size: .9rem;
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: 1rem;
    }
.genre-tags span {
      display: inline-block;
      background: rgba(20, 184, 166, 0.08);
      color: var(--primary);
      border-radius: 30px;
      padding: .2rem .7rem;
      font-size: .75rem;
      font-weight: 500;
      margin-right: .35rem;
      margin-bottom: .3rem;
    }
.section-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.3px;
      position: relative;
      margin-bottom: 1rem;
    }
.section-sub {
      color: var(--text-light);
      max-width: 640px;
      margin-bottom: 2.5rem;
      font-size: 1rem;
    }
.cat-hero {
      background: linear-gradient(145deg, rgba(240,253,250,0.4) 0%, rgba(209,250,229,0.2) 100%);
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      margin-bottom: 3rem;
      box-shadow: var(--shadow-1);
      border: 1px solid rgba(5,150,105,0.06);
    }
.cat-hero h1 {
      font-weight: 900;
      color: var(--text);
      font-size: 2.4rem;
      letter-spacing: -0.5px;
    }
.cat-hero h1 span {
      color: var(--primary);
    }
.breadcrumb-link a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
    }
.breadcrumb-link a:hover {
      text-decoration: underline;
    }
.nav-link.active {
      color: var(--primary) !important;
      font-weight: 600;
    }

/* --- 子页面追加 --- */
/* 本页微调：确保 Bootstrap 组件类不破坏整体配色（仅用栅格与工具类，组件自建类） */
    .newreleases-hero {
      background: linear-gradient(135deg, var(--bg) 0%, #e0f7f1 100%);
      border-bottom: 1px solid rgba(5,150,105,0.15);
    }
.section-tag {
      display: inline-block;
      background: rgba(5, 150, 105, 0.1);
      color: var(--primary);
      font-weight: 600;
      font-size: 0.85rem;
      padding: 0.2rem 0.9rem;
      border-radius: 30px;
      letter-spacing: 0.02em;
      margin-bottom: 1rem;
    }
.release-card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-1);
      transition: transform 0.25s ease, box-shadow 0.3s ease;
      height: 100%;
      padding: 1.4rem;
      border: 1px solid rgba(5, 150, 105, 0.08);
    }
.release-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-2);
    }
.release-card .card-tag {
      display: inline-block;
      background: rgba(20, 184, 166, 0.12);
      color: var(--primary);
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.8rem;
      border-radius: 20px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }
.release-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.4rem;
    }
.release-card .meta {
      color: var(--text-light);
      font-size: 0.85rem;
      margin-bottom: 0.8rem;
      border-bottom: 1px dashed rgba(5,150,105,0.15);
      padding-bottom: 0.7rem;
    }
.release-card .desc {
      color: var(--text);
      font-size: 0.95rem;
      line-height: 1.6;
      opacity: 0.9;
    }
.editor-pick {
      background: #ffffff;
      border-left: 5px solid var(--accent);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-1);
      padding: 1.5rem 1.8rem;
      margin-bottom: 1.8rem;
      transition: box-shadow 0.2s;
    }
.editor-pick:hover {
      box-shadow: var(--shadow-2);
    }
.editor-pick .pick-label {
      color: var(--primary);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 0.6rem;
    }
.editor-pick h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text);
    }
.editor-pick p {
      color: var(--text-light);
      margin-bottom: 0.4rem;
    }
.editor-pick .badge-tag {
      background: rgba(5,150,105,0.08);
      color: var(--primary);
      padding: 0.25rem 0.9rem;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 600;
      display: inline-block;
      margin-right: 0.6rem;
    }
.btn-outline-soft {
      border: 1px solid rgba(5,150,105,0.3);
      color: var(--primary);
      padding: 0.5rem 1.5rem;
      border-radius: 60px;
      font-weight: 600;
      background: transparent;
      transition: all 0.2s;
    }
.btn-outline-soft:hover {
      background: rgba(5,150,105,0.08);
      border-color: var(--primary);
      color: var(--primary);
    }
.text-light-subtle {
      color: var(--text-light);
    }
/* 确保导航与首页完全一致 */
    .navbar-custom {
      background: rgba(255,255,255,0.85) !important;
      backdrop-filter: blur(12px);
    }
.navbar-custom .nav-link.active {
      color: var(--primary) !important;
      font-weight: 700;
    }
footer a {
      color: var(--text-light);
      text-decoration: none;
    }
footer a:hover {
      color: var(--primary);
    }

/* --- 子页面追加 --- */
/* 保证任何Bootstrap组件不会出现白底黑字 —— 但本页刻意不使用组件类，仅栅格工具类 */
    .about-hero {
      background: linear-gradient(135deg, rgba(5,150,105,.08) 0%, rgba(20,184,166,.12) 100%);
      border-bottom: 1px solid rgba(5,150,105,.15);
    }
.about-section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 1.8rem;
    }
.about-section-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 60px;
      height: 4px;
      border-radius: 4px;
      background: var(--primary);
      opacity: .3;
    }
.about-card-custom {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-1);
      transition: transform .25s ease, box-shadow .25s ease;
      height: 100%;
      padding: 2rem 1.5rem;
    }
.about-card-custom:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-2);
    }
.about-icon-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(5, 150, 105, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
    }
.about-stat-highlight {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }
.about-quote {
      background: rgba(5,150,105,.04);
      border-left: 5px solid var(--accent);
      padding: 2rem 2rem 1.8rem;
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      margin: 2.5rem 0;
    }
/* 导航高亮「关于我们」 */
    .navbar .nav-link.active {
      font-weight: 600;
      color: var(--primary) !important;
    }

/* --- 子页面追加 --- */
/* 本页针对隐私政策的小幅补充（配色已沿用全局变量） */
    .privacy-hero {
      background: linear-gradient(135deg, rgba(5,150,105,.06) 0%, rgba(20,184,166,.08) 100%);
      border-bottom: 1px solid rgba(5,150,105,.12);
    }
.privacy-hero .hero-badge {
      background: rgba(5,150,105,.1);
      color: var(--primary);
      border: 1px solid rgba(5,150,105,.15);
    }
.privacy-card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-1);
      padding: 1.8rem 1.8rem;
      height: 100%;
      transition: transform .2s ease, box-shadow .2s ease;
    }
.privacy-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-2);
    }
.privacy-card h3 {
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--primary);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: .6rem;
    }
.privacy-card h3 i {
      color: var(--accent);
      font-size: 1.2rem;
      width: 1.6rem;
    }
.privacy-card p, .privacy-card li {
      color: var(--text-light);
      font-size: .95rem;
      line-height: 1.7;
    }
.privacy-card ul {
      padding-left: 1.2rem;
      margin-bottom: 0;
    }
.privacy-card ul li {
      margin-bottom: .5rem;
    }
.privacy-card strong {
      color: var(--text);
    }
.privacy-note {
      background: rgba(5,150,105,.04);
      border-left: 4px solid var(--accent);
      padding: 1.2rem 1.5rem;
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      margin-top: 2rem;
    }
.privacy-note p {
      margin: 0;
      color: var(--text);
      font-size: .95rem;
    }
.privacy-note i {
      color: var(--primary);
      margin-right: .4rem;
    }
/* 导航高亮当前页 */
    .navbar-custom .nav-link.active {
      color: var(--primary) !important;
      font-weight: 600;
    }
/* 确保所有链接都符合规范（绝对路径） */
    .navbar-custom .nav-link, .footer-links a {
      text-decoration: none;
    }

/* --- 子页面追加 --- */
.disclaimer-section { padding: 60px 0; }
.disclaimer-card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-1); margin-bottom: 30px; }
.disclaimer-card h2 { color: var(--primary); font-weight: 700; margin-bottom: 20px; font-size: 1.6rem; display: flex; align-items: center; gap: 12px; }
.disclaimer-card h2 i { color: var(--accent); }
.disclaimer-card p, .disclaimer-card li { color: var(--text-light); line-height: 1.8; font-size: 0.95rem; }
.disclaimer-card ul { padding-left: 20px; }
.disclaimer-card ul li { margin-bottom: 8px; }
.highlight-box { background: var(--bg); border-left: 4px solid var(--accent); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 20px 0; }
.highlight-box p { margin: 0; color: var(--text); }
.last-updated { text-align: center; color: var(--text-light); font-size: 0.85rem; margin-top: 40px; }
.disclaimer-card { padding: 24px; }
.disclaimer-card h2 { font-size: 1.3rem; }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.accordion-header { background:transparent !important; }
