:root {
  /* 亮色模式（橄榄大地） */
  --bg: #F1EBDF;
  --card: #F7F2E9;
  --text: #3E362B;
  --text-muted: #8F8674;
  --accent: #6F714B;
  --accent-2: #B0745C;
  --border: #E4DBC9;
  --shadow: rgba(62, 54, 43, 0.08);
  --danger: #A65D57;

  --font-serif: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --topbar-h: 56px;
  --sidebar-w: 260px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #1F1B16;
    --card: #2A251E;
    --text: #E8DFCE;
    --text-muted: #A89B85;
    --accent: #9CA066;
    --accent-2: #C9927A;
    --border: #3D362C;
    --shadow: rgba(0, 0, 0, 0.3);
    --danger: #C97B74;
  }
}

:root[data-theme="dark"] {
  --bg: #1F1B16;
  --card: #2A251E;
  --text: #E8DFCE;
  --text-muted: #A89B85;
  --accent: #9CA066;
  --accent-2: #C9927A;
  --border: #3D362C;
  --shadow: rgba(0, 0, 0, 0.3);
  --danger: #C97B74;
}
