:root {
  --primary: #64748b;
  --accent: #94a3b8;
  --bg: #f1f5f9;
  --text: #1e293b;
  --radius-card: 16px;
  --radius-pill: 50rem;
  --shadow-light: 0 4px 20px rgba(100, 116, 139, 0.08);
  --shadow-hover: 0 8px 30px rgba(100, 116, 139, 0.15);
}
* { box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, .logo-font {
  font-family: 'Inter', 'PingFang SC', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

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

/* ===== 导航栏 ===== */
.navbar-custom {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(100,116,139,0.12);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand i { color: var(--accent); font-size: 1.3rem; }
.nav-link {
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}
.nav-link:hover { background: rgba(100,116,139,0.1); color: var(--primary); }
.navbar-toggler { border: none; color: var(--primary); }

/* ===== 几何装饰背景 ===== */
.geo-bg {
  position: relative;
}
.geo-bg::before, .geo-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.geo-bg::before {
  width: 300px; height: 300px;
  background: rgba(100,116,139,0.05);
  top: 5%; right: -80px;
}
.geo-bg::after {
  width: 180px; height: 180px;
  background: rgba(148,163,184,0.07);
  bottom: 10%; left: -60px;
}
.geo-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}
.geo-circle { border-radius: 50%; background: var(--primary); }
.geo-square { border-radius: 8px; background: var(--accent); }
.geo-triangle { width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-bottom: 20px solid var(--primary); background: none !important; }

/* ===== Hero 区域 ===== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.hero-section .hero-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(30,41,59,0.88) 0%, rgba(51,65,85,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content .badge-pill {
  background: rgba(148,163,184,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  color: #e2e8f0;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-content p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.hero-stats .stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.hero-stats .stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}
.btn-custom {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-custom::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.6s ease;
  z-index: -1;
}
.btn-custom:hover::after { left: 100%; }
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(100,116,139,0.4);
}
.btn-primary-custom:hover { background: #55627a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(100,116,139,0.5); }
.btn-outline-custom {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline-custom:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ===== 左侧栏 + 右侧内容布局 ===== */
.content-wrapper {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1rem;
  position: relative;
  z-index: 2;
}
.sidebar {
  flex: 0 0 260px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.8rem 1.2rem;
  box-shadow: var(--shadow-light);
  height: fit-content;
  border: 1px solid rgba(100,116,139,0.08);
}
.sidebar h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--primary);
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--bg);
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.sidebar-item i { color: var(--accent); font-size: 1rem; width: 20px; text-align: center; }
.sidebar-item:hover { background: var(--bg); color: var(--primary); }
.sidebar-item.active { background: rgba(100,116,139,0.1); color: var(--primary); font-weight: 600; }

.main-content {
  flex: 1;
  min-width: 0;
}

/* ===== 卡片 ===== */
.card-custom {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 1.8rem;
}
.card-custom:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-body-custom { padding: 2rem; }
.card-title-custom {
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-title-custom i { color: var(--primary); }

/* ===== 编号清单 ===== */
.steps-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps-list li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(100,116,139,0.3);
}

/* ===== 对比表格 ===== */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}
.compare-table th, .compare-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--bg);
}
.compare-table thead th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: #f8fafc; }
.compare-table tbody tr:hover { background: #eef2f7; }
.compare-table .highlight-col { background: rgba(100,116,139,0.08); font-weight: 600; }

/* ===== 特色网格 ===== */
.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(100,116,139,0.06);
  height: 100%;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(100,116,139,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.feature-card h5 { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.6rem; }
.feature-card p { color: #64748b; font-size: 0.92rem; margin-bottom: 0; }

/* ===== 瀑布流卡片 ===== */
.waterfall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}
.comic-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
}
.comic-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.comic-cover {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #e2e8f0, #f1f5f9);
  position: relative;
  overflow: hidden;
}
.comic-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.comic-cover img.loaded { opacity: 1; }
.comic-card:hover .comic-cover img { transform: scale(1.05); }
.comic-info {
  padding: 1rem;
}
.comic-info h6 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comic-info .comic-meta {
  font-size: 0.8rem;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
}
.lazy-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(100deg, #e2e8f0 30%, #f8fafc 50%, #e2e8f0 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2rem;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== FAQ ===== */
.faq-item {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.5rem 1.8rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-hover); transform: translateX(4px); }
.faq-item h5 {
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  color: var(--text);
}
.faq-item p { color: #64748b; margin-bottom: 0; font-size: 0.95rem; }

/* ===== CTA 区域 ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #55627a 100%);
  border-radius: 24px;
  padding: 3.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -60px; right: -60px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -40px; left: -40px;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 1rem; }
.cta-section p { color: #cbd5e1; font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

/* ===== 页脚 ===== */
.footer {
  background: #fff;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(100,116,139,0.1);
  margin-top: 3rem;
}
.footer a { color: var(--text); }
.footer a:hover { color: var(--primary); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem; }
.footer-links a { font-weight: 500; }
.copyright { text-align: center; color: #94a3b8; font-size: 0.9rem; margin-top: 1rem; }

/* ===== 友情链接 ===== */
.friend-links {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.8rem;
  box-shadow: var(--shadow-light);
  margin: 2rem 0;
  border: 1px solid rgba(100,116,139,0.06);
}
.friend-links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.friend-links .links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--accent);
}

/* ===== 章节标题 ===== */
.section-title {
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 60%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
}

/* ===== 长文区域 ===== */
.long-article {
  font-size: 1rem;
  line-height: 1.9;
  color: #475569;
}
.long-article p { margin-bottom: 1.2rem; }
.long-article h4 { color: var(--primary); font-weight: 800; margin: 1.5rem 0 0.8rem; }

/* ===== 响应式 ===== */
@media (max-width: 992px) {
  .content-wrapper { flex-direction: column; }
  .sidebar {
    position: static;
    flex: none;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .sidebar .sidebar-items { display: flex; flex-wrap: wrap; gap: 8px; }
  .sidebar-item { flex: 1 0 auto; justify-content: center; }
  .hero-content h1 { font-size: 2.2rem; }
}
@media (max-width: 576px) {
  .hero-section { padding: 4rem 0; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .card-body-custom { padding: 1.5rem; }
  .cta-section { padding: 2rem 1.5rem; }
  .waterfall-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .compare-table { font-size: 0.85rem; }
  .compare-table th, .compare-table td { padding: 0.8rem; }
}

/* ===== 几何装饰 ===== */
.deco {
  position: absolute;
  z-index: 0;
  opacity: 0.08;
}
.deco-1 { width: 40px; height: 40px; background: var(--primary); border-radius: 8px; top: 20%; left: 5%; }
.deco-2 { width: 25px; height: 25px; background: var(--accent); border-radius: 50%; top: 60%; right: 8%; }
.deco-3 { width: 30px; height: 30px; background: var(--primary); clip-path: polygon(50% 0%, 0% 100%, 100% 100%); top: 30%; right: 15%; }

/* --- 子页面追加 --- */
/* 本页专属微调 —— 仅补充,不覆盖站点全局样式 */
    .about-hero {
      background: linear-gradient(135deg, rgba(100,116,139,.12) 0%, rgba(148,163,184,.08) 100%);
      border-bottom: 1px solid rgba(100,116,139,.15);
    }
.about-section {
      padding: 3.5rem 0;
      border-bottom: 1px solid rgba(100,116,139,.08);
    }
.about-section:last-of-type { border-bottom: none; }
.stat-item {
      background: rgba(255,255,255,.6);
      border-radius: var(--radius-card);
      padding: 1.25rem 1rem;
      text-align: center;
      box-shadow: var(--shadow-light);
      transition: transform .3s ease, box-shadow .3s ease;
    }
.stat-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
.timeline-item {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 1.5rem;
    }
.timeline-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: .35rem;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--primary);
      opacity: .4;
    }
.timeline-item::after {
      content: "";
      position: absolute;
      left: 5px;
      top: 1.4rem;
      width: 2px;
      height: calc(100% - 1rem);
      background: linear-gradient(to bottom, var(--primary), transparent);
      opacity: .15;
    }
.timeline-item:last-child::after { display: none; }

/* --- 子页面追加 --- */
/* 本页专属样式（自动合并进站点CSS） */
        .disclaimer-wrapper {
            padding: 60px 0 80px;
        }
.disclaimer-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: var(--radius-card);
            padding: 50px 40px;
            margin-bottom: 50px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
.disclaimer-hero::after {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
        }
.disclaimer-hero h1 {
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
.disclaimer-hero p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            position: relative;
            z-index: 1;
            margin-bottom: 0;
        }
.disclaimer-section {
            margin-bottom: 35px;
        }
.disclaimer-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            padding-left: 18px;
            border-left: 4px solid var(--accent);
        }
.disclaimer-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin: 20px 0 10px;
        }
.disclaimer-section p {
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
.disclaimer-section ul {
            color: var(--text);
            line-height: 1.9;
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-section li {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
.disclaimer-card {
            background: rgba(255,255,255,0.5);
            border: 1px solid rgba(100,116,139,0.15);
            border-radius: var(--radius-card);
            padding: 25px 30px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-light);
            transition: box-shadow 0.3s ease;
        }
.disclaimer-card:hover {
            box-shadow: var(--shadow-hover);
        }
.disclaimer-badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            margin-right: 8px;
            margin-bottom: 8px;
        }
.last-updated {
            font-size: 0.85rem;
            color: var(--accent);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
.disclaimer-hero {
                padding: 35px 25px;
            }
.disclaimer-hero h1 {
                font-size: 1.7rem;
            }
.disclaimer-card {
                padding: 20px;
            }

/* --- 子页面追加 --- */
/* 本页专属小样式 */
        .privacy-section { padding: 60px 0; }
.privacy-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.privacy-title { font-size: 2.2rem; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.privacy-subtitle { font-size: 1.1rem; color: var(--accent); margin-bottom: 48px; }
.privacy-card { background: #fff; border-radius: var(--radius-card); padding: 32px; margin-bottom: 24px; box-shadow: var(--shadow-light); border: 1px solid rgba(100, 116, 139, 0.1); }
.privacy-card h2 { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid rgba(100, 116, 139, 0.15); }
.privacy-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-top: 20px; margin-bottom: 10px; }
.privacy-card p { color: #475569; line-height: 1.8; margin-bottom: 12px; }
.privacy-card ul, .privacy-card ol { color: #475569; line-height: 1.8; padding-left: 20px; margin-bottom: 16px; }
.privacy-card li { margin-bottom: 8px; }
.privacy-card strong { color: var(--text); }
.privacy-highlight { background: rgba(100, 116, 139, 0.08); border-left: 4px solid var(--primary); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0; }
.privacy-highlight p { margin-bottom: 0; }
.privacy-date { text-align: center; color: var(--accent); font-size: 0.9rem; margin-top: 40px; }
.privacy-title { font-size: 1.7rem; }
.privacy-card { padding: 24px; }

/* --- 子页面追加 --- */
/* 本页专属微调，不影响全局样式 */
        .ranking-hero {
            background: linear-gradient(145deg, var(--bg) 0%, #e2e8f0 100%);
            border-radius: var(--radius-card);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-light);
            margin-bottom: 2.5rem;
        }
.rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.2rem;
            height: 2.2rem;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1rem;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }
.rank-item {
            display: flex;
            align-items: center;
            padding: 0.9rem 0.5rem;
            border-bottom: 1px solid rgba(100, 116, 139, 0.15);
        }
.rank-item:last-child {
            border-bottom: none;
        }
.rank-info {
            flex: 1;
        }
.rank-title {
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.2rem;
        }
.rank-meta {
            font-size: 0.85rem;
            color: var(--accent);
        }
.rank-tag {
            background: rgba(100, 116, 139, 0.1);
            padding: 0.2rem 0.8rem;
            border-radius: var(--radius-pill);
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--primary);
            white-space: nowrap;
        }
.section-subhead {
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin: 2.5rem 0 1.5rem;
            color: var(--text);
            border-left: 5px solid var(--primary);
            padding-left: 1rem;
        }
.list-group-custom {
            background: transparent;
            border-radius: var(--radius-card);
        }
.list-group-item-custom {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(100, 116, 139, 0.1);
            padding: 0.75rem 0;
            color: var(--text);
        }
.list-group-item-custom:last-child {
            border-bottom: none;
        }
.table-ranks {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 0.5rem;
        }
.table-ranks td {
            background: rgba(255,255,255,0.5);
            padding: 0.9rem 1rem;
            border-radius: 12px;
            font-weight: 500;
            color: var(--text);
        }
.table-ranks .rank-num {
            font-weight: 700;
            color: var(--primary);
            width: 50px;
        }
.table-ranks .rank-cat {
            color: var(--accent);
            font-size: 0.9rem;
        }
.badge-soft {
            background: rgba(100, 116, 139, 0.08);
            color: var(--primary);
            font-weight: 500;
            padding: 0.3rem 0.9rem;
            border-radius: var(--radius-pill);
        }