/* ============================================================
   variables.css — 全局 CSS 变量 & 深色/浅色主题
   ============================================================ */

/* ---------- 深色主题（默认） ---------- */
:root {
  /* 背景 */
  --bg-primary: #0a0e17;
  --bg-card: #161b22;
  --bg-hover: #1c2128;
  --bg-input: #0d1117;

  /* 边框 */
  --border-color: #30363d;
  --border-hover: #21262d;

  /* 强调色 */
  --accent-primary: #58a6ff;
  --accent-secondary: #79c0ff;
  --accent-success: #3fb950;
  --accent-warning: #d29922;
  --accent-danger: #f85149;
  --accent-review: #a371f7;

  /* 文字 */
  --text-primary: #c9d1d9;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;

  /* 布局 */
  --nav-height: 56px;
  --content-max-width: 1280px;
  --page-padding: 24px;
  --card-radius: 10px;

  /* 字体 */
  --font-cn: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-en: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;

  /* 阴影 */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 20px rgba(88,166,255,0.1);
}

/* ---------- 浅色主题 ---------- */
[data-theme="light"] {
  --bg-primary: #f5f7fa;
  --bg-card: #ffffff;
  --bg-hover: #f0f2f5;
  --bg-input: #ffffff;
  --border-color: #d0d7de;
  --border-hover: #bbb;
  --accent-primary: #0969da;
  --accent-secondary: #218bff;
  --accent-success: #1a7f37;
  --accent-warning: #9a6700;
  --accent-danger: #cf222e;
  --accent-review: #8250df;
  --text-primary: #1f2328;
  --text-secondary: #656d76;
  --text-muted: #8c959f;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 20px rgba(9,105,218,0.1);
}
