/* 设计令牌与基础样式 */
:root {
  --font: -apple-system, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  --radius: 12px;
}
html[data-theme="dark"] {
  --bg: #15171c;
  --bg-soft: #1b1e25;
  --card: #20242d;
  --input-bg: #262b35;
  --border: #2e3540;
  --text: #e7eaf1;
  --dim: #98a1b3;
  --accent: #4c8dff;
  --accent-soft: rgba(76, 141, 255, .14);
  --danger: #ff6b6b;
  --warn: #f5b84d;
  --ok: #4cc38a;
  --shadow: 0 6px 24px rgba(0, 0, 0, .35);
}
html[data-theme="light"] {
  --bg: #f3f4f7;
  --bg-soft: #ffffff;
  --card: #ffffff;
  --input-bg: #f0f2f6;
  --border: #e2e6ee;
  --text: #1d2129;
  --dim: #67707f;
  --accent: #3b78e7;
  --accent-soft: rgba(59, 120, 231, .10);
  --danger: #e04b4b;
  --warn: #d99a2b;
  --ok: #2fa36e;
  --shadow: 0 6px 20px rgba(30, 40, 60, .10);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
[hidden] { display: none !important; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
input, select, textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 12px;
  width: 100%;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 64px; }
::placeholder { color: var(--dim); opacity: .7; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
