﻿/* ===================== 莱恩岛生存指南 攻略网站 ===================== 
   作者: Codex AI | 游戏: Len's Island (Steam 1335830)
   ================================================================ */

/* ----- 变量 & 重置 ----- */
:root {
  --bg-primary: #0a0e14;
  --bg-secondary: #111820;
  --bg-card: #18202a;
  --bg-card-hover: #1e2836;
  --border: #263040;
  --border-light: #334050;
  --text-primary: #e8edf4;
  --text-secondary: #8a9bb5;
  --text-muted: #5a6a80;
  --accent-teal: #3dd8c4;
  --accent-teal-dim: rgba(61,216,196,0.12);
  --accent-teal-glow: rgba(61,216,196,0.25);
  --accent-red: #f06050;
  --accent-orange: #f0a030;
  --accent-yellow: #f0d050;
  --accent-green: #50c878;
  --accent-blue: #5090f0;
  --accent-purple: #a070d0;
  --accent-pink: #e06090;
  --font-sans: 'Noto Sans SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
  --font-serif: 'Noto Serif SC', 'Source Han Serif SC', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --max-width: 1200px;
  --nav-height: 64px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: #6ae8d6; }
ul { list-style: none; }

/* ----- 导航栏 ----- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,20,0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(10,14,20,0.96);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-brand svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-teal);
  background: var(--accent-teal-dim);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

/* ----- 英雄区 ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 70%, rgba(61,216,196,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 30%, rgba(80,144,240,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(10,14,20,1) 0%, rgba(10,14,20,1) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent-teal);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 10s infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  8%   { opacity: 0.5; }
  85%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 20px;
  background: var(--accent-teal-dim);
  border: 1px solid rgba(61,216,196,0.2);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-teal);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #e8edf4 0%, var(--accent-teal) 45%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font-sans);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
  color: #fff;
  box-shadow: 0 4px 16px rgba(61,216,196,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61,216,196,0.35);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
}

.btn-outline:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  background: var(--accent-teal-dim);
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-teal);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ----- 通用区块 ----- */
.section {
  padding: 96px 24px;
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ----- 交替背景 ----- */
.section.alt-bg {
  background: var(--bg-secondary);
}

.section.alt-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* ----- 功能卡片网格 ----- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ----- 步骤/时间线 ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--accent-teal);
  box-shadow: 0 0 20px rgba(61,216,196,0.06);
}

.step-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-teal-dim);
  border: 1px solid rgba(61,216,196,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-teal);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.step-card .tip {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(240,160,48,0.08);
  border-left: 3px solid var(--accent-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: var(--accent-orange);
}

/* ----- 插图区 ----- */
.illustration-block {
  margin: 32px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.illustration-block svg {
  display: block;
  width: 100%;
}

.illustration-caption {
  padding: 12px 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border);
}

/* ----- 表格 ----- */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead {
  background: var(--bg-card);
}

th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

tbody tr:hover {
  background: var(--bg-card-hover);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* ----- 标签/徽章 ----- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-teal { background: var(--accent-teal-dim); color: var(--accent-teal); }
.tag-red { background: rgba(240,96,80,0.12); color: var(--accent-red); }
.tag-green { background: rgba(80,200,120,0.12); color: var(--accent-green); }
.tag-blue { background: rgba(80,144,240,0.12); color: var(--accent-blue); }
.tag-purple { background: rgba(160,112,208,0.12); color: var(--accent-purple); }
.tag-orange { background: rgba(240,160,48,0.12); color: var(--accent-orange); }
.tag-yellow { background: rgba(240,208,80,0.12); color: var(--accent-yellow); }

/* ----- 战斗/怪物卡片 ----- */
.enemy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.enemy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.enemy-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.enemy-card .enemy-icon {
  width: 80px; height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enemy-card h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}

.enemy-card .enemy-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.enemy-card .enemy-stats {
  display: flex;
  gap: 12px;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ----- 地宫攻略 ----- */
.boss-phase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
}

.boss-phase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.boss-phase-header:hover {
  background: var(--bg-card-hover);
}

.boss-phase-indicator {
  width: 4px; height: 24px;
  border-radius: 2px;
  flex-shrink: 0;
}

.boss-phase-header h4 {
  font-size: 0.95rem;
  font-weight: 600;
  flex: 1;
}

.boss-phase-arrow {
  transition: transform var(--transition);
  color: var(--text-muted);
}

.boss-phase.open .boss-phase-arrow {
  transform: rotate(180deg);
}

.boss-phase-body {
  padding: 0 20px 20px;
  display: none;
}

.boss-phase.open .boss-phase-body {
  display: block;
}

.boss-phase-body ul {
  list-style: disc;
  padding-left: 20px;
}

.boss-phase-body li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* ----- 技能树 ----- */
.skill-tree {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}

.skill-card:hover {
  border-color: var(--border-light);
}

.skill-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.skill-card .skill-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.skill-bar {
  margin-bottom: 14px;
}

.skill-bar-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.skill-bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease;
}

.skill-bar-fill.teal { background: linear-gradient(90deg, var(--accent-teal), #6ae8d6); }
.skill-bar-fill.red { background: linear-gradient(90deg, var(--accent-red), #f08070); }
.skill-bar-fill.blue { background: linear-gradient(90deg, var(--accent-blue), #70a8f0); }
.skill-bar-fill.green { background: linear-gradient(90deg, var(--accent-green), #70d888); }
.skill-bar-fill.orange { background: linear-gradient(90deg, var(--accent-orange), #f0b860); }
.skill-bar-fill.purple { background: linear-gradient(90deg, var(--accent-purple), #b888e0); }

/* ----- 建造材料 ----- */
.material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.material-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}

.material-card:hover {
  border-color: var(--border-light);
  transform: translateY(-1px);
}

.material-card .material-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.material-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ----- 地图 ----- */
.map-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-container svg {
  display: block;
  width: 100%;
  height: auto;
}

.map-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ----- 常见问题 ----- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item.open {
  border-color: var(--accent-teal);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}

.faq-question span {
  flex: 1;
  font-weight: 500;
  font-size: 0.95rem;
}

.faq-arrow {
  transition: transform var(--transition);
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-teal);
}

.faq-answer {
  padding: 0 20px 16px;
  display: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ----- 悬浮目录 ----- */
.toc-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.toc-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.toc-btn:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  transform: scale(1.05);
}

/* ----- 页脚 ----- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  text-align: center;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

/* ----- 检查清单 ----- */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.checklist li::before {
  content: "";
  width: 18px; height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition);
}

.checklist li.checked::before {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
}

/* ----- 双栏布局 ----- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ----- 全局动画 ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ----- 响应式 ----- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(10,14,20,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open a { padding: 10px 14px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .skill-tree { grid-template-columns: 1fr; }
  .enemy-grid { grid-template-columns: repeat(2, 1fr); }
  .material-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .enemy-grid { grid-template-columns: 1fr; }
  .material-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 16px; }
}

/* ----- 选择高亮 ----- */
::selection {
  background: rgba(61,216,196,0.25);
  color: var(--text-primary);
}

/* ----- 滚动条 ----- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

/* ----- 内容部分 ----- */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 36px 0 14px;
}

.content-section h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 24px 0 10px;
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.content-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}

.content-section ul li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
