/* Lux 主题 · 双主题设计变量。深色科技为默认，浅色轻奢覆盖。 */
:root{
  /* 色彩 — 深色科技（默认） */
  --bg:#0B0D12;
  --surface:#14171F;
  --surface-2:#1B2030;
  --border:rgba(255,255,255,.08);
  --border-strong:rgba(255,255,255,.14);
  --text:#ECEEF3;
  --text-muted:#9AA3B2;
  --text-dim:#6B7280;
  --accent:#D8B978;
  --accent-strong:#E0C896;
  --accent-ink:#0B0D12;
  --nav-bg:rgba(16,18,24,.72);
  --shadow:none;
  --code-bg:#14171F;
  --code-border:rgba(255,255,255,.08);

  /* 圆角 */
  --radius-card:12px;
  --radius-ctl:9px;
  --radius-pill:999px;

  /* 字体 */
  --font-sans:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",system-ui,sans-serif;
  --font-mono:"JetBrains Mono","Fira Code","Cascadia Code",Consolas,Menlo,monospace;

  /* 布局 */
  --container:1200px;
  --nav-h:64px;

  color-scheme:dark;
}

:root[data-theme="light"]{
  --bg:#FAF9F6;
  --surface:#FFFFFF;
  --surface-2:#F4F1EA;
  --border:rgba(0,0,0,.08);
  --border-strong:rgba(0,0,0,.14);
  --text:#23262C;
  --text-muted:#6B7280;
  --text-dim:#8A8478;
  --accent:#B0883E;
  --accent-strong:#96702E;
  --accent-ink:#3A2F17;
  --nav-bg:rgba(255,255,255,.75);
  --shadow:0 2px 10px rgba(0,0,0,.05);
  --code-bg:#FBFAF7;
  --code-border:rgba(0,0,0,.09);

  color-scheme:light;
}
