:root {
  --bg1: #f3f9fc;
  --bg2: #e6f2f8;
  --bg3: #e4f6f2;
  --accent: #2478a1;
  --accent2: #63c6bb;
  --ink: #12303d;
  --muted: #4d6a78;
  --pink: #bfe4ee;
  --p900: #0b2733;
  --accent-soft: #e7f2f8;
  --accent2-soft: #e2f5f1;
  --muted-surface: #edf3f6;
  --card: #ffffff;
  --popover: #ffffff;
  --primary-foreground: #ffffff;
  --secondary-foreground: #06302c;
  --accent-foreground: #ffffff;
  --destructive: #c0392f;
  --destructive-foreground: #ffffff;
  --success: #2e8f74;
  --warning: #a07130;
  --border: #d8e7ee;
  --input: #c4dbe6;
  --glass-bg: rgb(255 255 255 / 0.62);
  --glass-bg-active: rgb(255 255 255 / 0.92);
  --glass-border: rgb(255 255 255 / 0.76);
  --soft-shadow: 0 10px 30px rgb(18 48 61 / 0.12);
  --glow-shadow: 0 8px 24px rgb(36 120 161 / 0.38);
  --glow-shadow-mint: 0 8px 24px rgb(99 198 187 / 0.45);
  --night-gradient: radial-gradient(ellipse at 50% 30%, #17415a, #0e2b3c 70%, #07161f);
}

.dark {
  --bg1: #0a1a23;
  --bg2: #0f2531;
  --bg3: #0d2a2a;
  --ink: #e8f4f8;
  --muted: #93b0bd;
  --pink: #8fc6d6;
  --accent-soft: #12303d;
  --accent2-soft: #103331;
  --muted-surface: #152a35;
  --card: #0f2531;
  --popover: #122a37;
  --secondary-foreground: #052a26;
  --destructive: #e05a52;
  --border: #1f3a48;
  --input: #2a4a5a;
  --glass-bg: rgb(15 37 49 / 0.6);
  --glass-bg-active: rgb(15 37 49 / 0.92);
  --glass-border: rgb(255 255 255 / 0.15);
  --soft-shadow: 0 10px 30px rgb(2 8 12 / 0.55);
}

@media (prefers-color-scheme: dark) {
  :root:not(.light) {
    --bg1: #0a1a23;
    --bg2: #0f2531;
    --bg3: #0d2a2a;
    --ink: #e8f4f8;
    --muted: #93b0bd;
    --pink: #8fc6d6;
    --accent-soft: #12303d;
    --accent2-soft: #103331;
    --muted-surface: #152a35;
    --card: #0f2531;
    --popover: #122a37;
    --secondary-foreground: #052a26;
    --destructive: #e05a52;
    --border: #1f3a48;
    --input: #2a4a5a;
    --glass-bg: rgb(15 37 49 / 0.6);
    --glass-bg-active: rgb(15 37 49 / 0.92);
    --glass-border: rgb(255 255 255 / 0.15);
    --soft-shadow: 0 10px 30px rgb(2 8 12 / 0.55);
  }
}