/* ============================================================
   themes.css —— shadcn 风格主题变量
   浅色默认；深色通过 data-theme="dark" 或 system 媒体查询切换
   ============================================================ */

:root,
[data-theme="light"] {
  color-scheme: light;

  --background: 0 0% 98%;
  --foreground: 240 10% 3.9%;

  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;

  --popover: 0 0% 100%;
  --popover-foreground: 240 10% 3.9%;

  --primary: 240 5.9% 10%;
  --primary-foreground: 0 0% 98%;

  --secondary: 240 4.8% 95.9%;
  --secondary-foreground: 240 5.9% 10%;

  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;

  --accent: 240 4.8% 96.5%;
  --accent-foreground: 240 5.9% 10%;

  --success: 142 76% 36%;
  --success-foreground: 0 0% 98%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;

  --border: 240 5.9% 90.5%;
  --input: 240 5.9% 90.5%;
  --ring: 240 5% 64.9%;

  --radius: 0.625rem;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.04);
  --shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 12px -2px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.04);
}

[data-theme="dark"] {
  color-scheme: dark;

  --background: 240 10% 3.9%;
  --foreground: 0 0% 98%;

  --card: 240 6% 7%;
  --card-foreground: 0 0% 98%;

  --popover: 240 6% 7%;
  --popover-foreground: 0 0% 98%;

  --primary: 0 0% 98%;
  --primary-foreground: 240 5.9% 10%;

  --secondary: 240 3.7% 15.9%;
  --secondary-foreground: 0 0% 98%;

  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;

  --accent: 240 3.7% 16.5%;
  --accent-foreground: 0 0% 98%;

  --success: 142 70% 45%;
  --success-foreground: 0 0% 98%;
  --destructive: 0 72% 51%;
  --destructive-foreground: 0 0% 98%;

  --border: 240 3.7% 16.5%;
  --input: 240 3.7% 16.5%;
  --ring: 240 4.9% 83.9%;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.35);
  --shadow: 0 1px 2px 0 rgb(0 0 0 / 0.4);
  --shadow-md: 0 4px 12px -2px rgb(0 0 0 / 0.45), 0 2px 4px -2px rgb(0 0 0 / 0.3);
}

@media (prefers-color-scheme: dark) {
  [data-theme="system"] {
    color-scheme: dark;

    --background: 240 10% 3.9%;
    --foreground: 0 0% 98%;

    --card: 240 6% 7%;
    --card-foreground: 0 0% 98%;

    --popover: 240 6% 7%;
    --popover-foreground: 0 0% 98%;

    --primary: 0 0% 98%;
    --primary-foreground: 240 5.9% 10%;

    --secondary: 240 3.7% 15.9%;
    --secondary-foreground: 0 0% 98%;

    --muted: 240 3.7% 15.9%;
    --muted-foreground: 240 5% 64.9%;

    --accent: 240 3.7% 16.5%;
    --accent-foreground: 0 0% 98%;

    --success: 142 70% 45%;
    --success-foreground: 0 0% 98%;
    --destructive: 0 72% 51%;
    --destructive-foreground: 0 0% 98%;

    --border: 240 3.7% 16.5%;
    --input: 240 3.7% 16.5%;
    --ring: 240 4.9% 83.9%;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.35);
    --shadow: 0 1px 2px 0 rgb(0 0 0 / 0.4);
    --shadow-md: 0 4px 12px -2px rgb(0 0 0 / 0.45), 0 2px 4px -2px rgb(0 0 0 / 0.3);
  }
}
