/* ─── 6 套主题 ─────────────────────────────────────────────────── */
:root {
  --bg: #0d1117;
  --bg2: #161b22;
  --bg3: #21262d;
  --border: #21262d;
  --border2: #30363d;
  --text: #e6edf3;
  --text-sub: #8b949e;
  --text-muted: #484f58;
  --accent: #58a6ff;
  --accent-glow: rgba(88, 166, 255, 0.4);
  --shadow-color: rgba(0, 0, 0, 0.3);
}

[data-theme="dark-purple"] {
  --bg: #13111c;
  --bg2: #1c1826;
  --bg3: #26213a;
  --border: #26213a;
  --border2: #352e50;
  --text: #ede8ff;
  --text-sub: #9d93c4;
  --text-muted: #524b72;
  --accent: #a78bfa;
  --accent-glow: rgba(167, 139, 250, 0.4);
}

[data-theme="dark-green"] {
  --bg: #0b1512;
  --bg2: #131f1a;
  --bg3: #1c2e25;
  --border: #1c2e25;
  --border2: #28422e;
  --text: #d4f0e0;
  --text-sub: #7ab891;
  --text-muted: #3a5e48;
  --accent: #34d399;
  --accent-glow: rgba(52, 211, 153, 0.4);
}

[data-theme="dark-amber"] {
  --bg: #160f05;
  --bg2: #211607;
  --bg3: #2e200a;
  --border: #2e200a;
  --border2: #3d2c10;
  --text: #fdf0d5;
  --text-sub: #c4a06a;
  --text-muted: #5c4220;
  --accent: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.4);
}

[data-theme="slate"] {
  --bg: #0f1117;
  --bg2: #181c28;
  --bg3: #222840;
  --border: #222840;
  --border2: #2e3650;
  --text: #dce4f5;
  --text-sub: #7d8fb3;
  --text-muted: #404e6a;
  --accent: #60a5fa;
  --accent-glow: rgba(96, 165, 250, 0.4);
}

[data-theme="light"] {
  --bg: #f5f7fa;
  --bg2: #ffffff;
  --bg3: #eef1f6;
  --border: #e2e8f0;
  --border2: #cbd5e1;
  --text: #0f172a;
  --text-sub: #475569;
  --text-muted: #94a3b8;
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.3);
  --shadow-color: rgba(15, 23, 42, 0.08);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.25s ease, color 0.25s ease;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input {
  font-family: inherit;
}

/* ─── 滚动条 ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
