/* linli 共享主题变量 — 亮色/暗色 */
:root {
  --bg: #f8fafc; --surface: #ffffff; --text: #0f172a; --text-secondary: #64748b;
  --brand: #6366f1; --brand-light: #818cf8; --border: #e2e8f0; --radius: 12px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f172a; --surface: #1e293b; --text: #e2e8f0; --text-secondary: #94a3b8;
    --border: #334155;
  }
}
