:root {
  --primary: #d7f06a;
  --primary-strong: #c4e850;
  --primary-text: #2a3a00;

  --bg-main: #f4f6f5;
  --bg-card: #ffffff;
  --bg-hover: #f0f2f1;
  --bg-sidebar: #0f1115;
  --bg-input: #ffffff;
  --bg-overlay: rgba(0, 0, 0, 0.55);

  --text-main: #0e0f11;
  --text-soft: #6b7075;
  --text-inverse: #ffffff;
  --text-link: #2563eb;

  --success: #16a34a;
  --success-soft: rgba(22, 163, 74, 0.1);
  --warning: #f59e0b;
  --warning-soft: rgba(245, 158, 11, 0.1);
  --danger: #dc2626;
  --danger-soft: rgba(220, 38, 38, 0.1);
  --info: #0ea5e9;
  --info-soft: rgba(14, 165, 233, 0.1);

  --border: #e6e8e7;
  --border-focus: #d7f06a;

  --font: 'Inter', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Monaco', 'Consolas', monospace;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);

  --sidebar-w: 240px;
  --header-h: 56px;
  --transition: 0.2s ease;
}

[data-theme="dark"] {
  --primary: #d7f06a;
  --primary-strong: #c4e850;
  --primary-text: #1a2600;

  --bg-main: #111215;
  --bg-card: #1a1b1f;
  --bg-hover: #222327;
  --bg-sidebar: #0a0b0d;
  --bg-input: #1a1b1f;

  --text-main: #e8e9ea;
  --text-soft: #8b8f94;
  --text-inverse: #ffffff;
  --text-link: #93c5fd;

  --success: #22c55e;
  --success-soft: rgba(34, 197, 94, 0.15);
  --warning: #fbbf24;
  --warning-soft: rgba(251, 191, 36, 0.15);
  --danger: #ef4444;
  --danger-soft: rgba(239, 68, 68, 0.15);
  --info: #22d3ee;
  --info-soft: rgba(34, 211, 238, 0.15);

  --border: #2a2b2f;
  --border-focus: #d7f06a;

  --shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.15);
}