/* =========================================================
   A. 语义变量（不要在别处再定义这些名字）
   ========================================================= */

/* -------- Light mode (default) -------- */
:root {
  color-scheme: light;

  --bg: #ffffff;
  --panel: #f3f4f6;

  --text: #0f172a;
  --muted: #475569;

  --line: rgba(15, 23, 42, .12);

  /* 主题色（由 channel 覆盖） */
  --brand: #60a5fa;

  /* UI */
  --radius: 14px;
  --w: 1040px;
}

/* -------- Dark mode (follow system) -------- */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    --bg: #292a2e;
    --panel: #111827;

    --text: #e5e7eb;
    --muted: #9ca3af;

    --line: rgba(255,255,255,.10);
  }
}

/* =========================================================
   B. 全站基础 reset + 落地（你原本已有，保持）
   ========================================================= */

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    "Noto Sans",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;

  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

/* 链接 */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* 容器 */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 16px;
}
