/* 深色主题变量覆盖。
   通过 [data-theme="dark"] 显式切换，或 prefers-color-scheme 系统跟随。 */
[data-theme="dark"] {
  --bg: #0f1419;
  --surface: #1a202c;
  --surface-2: #252d3a;
  --text: #e2e8f0;
  --text-muted: #9ca3af;
  --primary: #60a5fa;
  --primary-dark: #3b82f6;
  --border: #2d3748;
  --code-bg: #252d3a;
  --shadow: 0 1px 3px rgba(0,0,0,0.3);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f1419;
    --surface: #1a202c;
    --surface-2: #252d3a;
    --text: #e2e8f0;
    --text-muted: #9ca3af;
    --primary: #60a5fa;
    --primary-dark: #3b82f6;
    --border: #2d3748;
    --code-bg: #252d3a;
    --shadow: 0 1px 3px rgba(0,0,0,0.3);
  }
}
