:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --text: #1a1a1a;
  --text-mute: #888;
  --border: #e8e8e6;
  --accent: #1a1a1a;
  --fit-high: #3d7a5a;
  --fit-mid: #b08a3e;
  --fit-low: #9a9a9a;
  --radius: 5px;
  --success: #3d7a5a;
  --danger: #b04a4a;
}

body[data-theme="dark"] {
  --bg: #1a1a1a;
  --bg-soft: #242424;
  --text: #e8e8e6;
  --text-mute: #888;
  --border: #333;
  --accent: #e8e8e6;
  --fit-high: #5fa17a;
  --fit-mid: #c9a24e;
  --fit-low: #777;
  --success: #5fa17a;
  --danger: #c95a5a;
}

body {
  background: var(--bg);
  color: var(--text);
  transition: background .3s, color .3s;
}

.serif-title {
  font-family: "Noto Serif SC", Georgia, serif;
}

.mono-num {
  font-family: "SF Mono", Consolas, monospace;
}

/* ─── 确保所有 SVG 图标使用 currentColor ─── */
svg {
  stroke: currentColor;
  fill: none;
}

body[data-theme="dark"] svg {
  stroke: currentColor;
  fill: none;
}