:root {
  --primary: #1a1a1a;
  --primary-light: #3a3a3a;
  --primary-dark: #000000;
  --primary-glow: rgba(0, 0, 0, 0.08);

  --secondary: #555555;
  --secondary-light: #888888;
  --secondary-dark: #333333;

  --accent: #c0a080;
  --accent-light: #d4c0a8;

  --success: #5a7a5a;
  --success-light: #8aaa8a;
  --success-glow: rgba(90, 122, 90, 0.12);
  --warning: #b89850;
  --warning-light: #d4c080;
  --danger: #b85a5a;
  --danger-light: #d48888;
  --info: #5a7a8a;

  --bg-primary: #f5f0eb;
  --bg-secondary: #ede6dc;
  --bg-tertiary: #e0d8ce;
  --bg-card: #ffffff;
  --bg-card-hover: #faf7f2;
  --bg-elevated: #ffffff;

  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-tertiary: #8a8078;
  --text-muted: #b0a8a0;
  --text-inverse: #f5f0eb;

  --border-color: #d8d0c8;
  --border-light: #e8e2da;
  --border-focus: var(--primary);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(0, 0, 0, 0.05);
  --shadow-glow-strong: 0 0 40px rgba(0, 0, 0, 0.08);

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --sidebar-width: 260px;
  --sidebar-collapsed: 0px;
  --topbar-height: 64px;

  --z-sidebar: 100;
  --z-topbar: 90;
  --z-modal: 200;
  --z-toast: 300;
  --z-loader: 400;
}

[data-theme="dark"] {
  --primary: #f0e8dc;
  --primary-light: #ffffff;
  --primary-dark: #e8ddd0;
  --primary-glow: rgba(240, 232, 220, 0.08);

  --secondary: #b0a8a0;
  --secondary-light: #d0c8c0;
  --secondary-dark: #908880;

  --accent: #d4c0a4;
  --accent-light: #e0d4c0;

  --success: #6aaa7a;
  --success-light: #8ac89a;
  --success-glow: rgba(106, 170, 122, 0.15);
  --warning: #d4b860;
  --warning-light: #e0cc80;
  --danger: #d47070;
  --danger-light: #e09090;
  --info: #6a9aaa;

  --bg-primary: #0d0d0d;
  --bg-secondary: #141414;
  --bg-tertiary: #1c1c1c;
  --bg-card: #181818;
  --bg-card-hover: #222222;
  --bg-elevated: #242424;

  --text-primary: #f0ece8;
  --text-secondary: #b0a8a0;
  --text-tertiary: #8a8078;
  --text-muted: #5a5450;
  --text-inverse: #0d0d0d;

  --border-color: #2c2c2c;
  --border-light: #222222;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 35px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px rgba(240, 232, 220, 0.06);
  --shadow-glow-strong: 0 0 50px rgba(240, 232, 220, 0.1);
}
