/* Точь-в-точь из ntp-storage/admin/templates/layout.php */
:root {
  --bg: #f6f8fa;
  --surface: #ffffff;
  --surface2: #f0f2f5;
  --border: #d0d7de;
  --text: #1f2328;
  --text-dim: #656d76;
  --muted: #656d76;
  --accent: #0969da;
  --green: #1a7f37;
  --red: #cf222e;
  --yellow: #9a6700;
  --purple: #8250df;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --content-max: 1180px;
  --text-max: 72ch;
  --shadow-md: 0 20px 36px rgba(16, 24, 40, 0.16);
  --container: 1120px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}

/* Тёмная тема в стиле итачи учиха: тёмно-фиолетовый/чёрный, красный акцент */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0c0a10;
    --surface: #15121a;
    --surface2: #1c1824;
    --border: #2d2638;
    --text: #e8e4ef;
    --text-dim: #9d94b0;
    --muted: #9d94b0;
    --accent: #c41e3a;
    --green: #2d9d64;
    --red: #e84545;
    --yellow: #d4a02c;
    --purple: #8b5cf6;
    --shadow-md: 0 24px 42px rgba(0, 0, 0, 0.5);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
}

[data-theme="dark"],
[data-resolved-theme="dark"] {
  --bg: #0c0a10;
  --surface: #15121a;
  --surface2: #1c1824;
  --border: #2d2638;
  --text: #e8e4ef;
  --text-dim: #9d94b0;
  --muted: #9d94b0;
  --accent: #c41e3a;
  --green: #2d9d64;
  --red: #e84545;
  --yellow: #d4a02c;
  --purple: #8b5cf6;
  --shadow-md: 0 24px 42px rgba(0, 0, 0, 0.5);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

[data-theme="light"],
[data-resolved-theme="light"] {
  --bg: #f6f8fa;
  --surface: #ffffff;
  --surface2: #f0f2f5;
  --border: #d0d7de;
  --text: #1f2328;
  --text-dim: #656d76;
  --muted: #656d76;
  --accent: #0969da;
  --green: #1a7f37;
  --red: #cf222e;
  --yellow: #9a6700;
  --purple: #8250df;
}
