:root {
  --primary-color: #212428;
  --primary-color-rgb: 33, 36, 40;

  --secondary-color: #00B4C8;
  --secondary-color-rgb:0, 180, 200;

  --bg-primary: #1e1e1e;
  --bg-secondary: #2a2a2a;
  --bg-tertiary: #3a3a3a;
  --bg-quaternary: #4a4a4a;
  --bg-hover: #454545;
  --bg-active: #505050;
  --bg-overlay: rgba(0, 0, 0, 0.85);
  --bg-overlay-light: rgba(0, 0, 0, 0.6);
  --bg-glass: rgba(30, 30, 30, 0.8);
  --bg-glass-light: rgba(255, 255, 255, 0.05);

  --accent-primary: #00B4C8;
  --accent-secondary: #008B9E;
  --accent-light: #33C5D8;
  --accent-dark: #006B7D;
  --accent-glow: rgba(0, 180, 200, 0.4);
  --accent-glow-strong: rgba(0, 180, 200, 0.6);

  --success: #00e676;
  --success-dark: #00c853;
  --success-light: #69f0ae;
  --success-glow: rgba(0, 230, 118, 0.3);
  --warning: #ffa726;
  --warning-dark: #fb8c00;
  --warning-light: #ffca28;
  --warning-glow: rgba(255, 167, 38, 0.3);
  --error: #ff5252;
  --error-dark: #e53935;
  --error-light: #ff6b6b;
  --error-glow: rgba(255, 82, 82, 0.3);
  --info: #00B4C8;
  --info-dark: #008B9E;
  --info-light: #33C5D8;
  --info-glow: rgba(0, 180, 200, 0.3);

  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-tertiary: #8a8a8a;
  --text-disabled: #6a6a6a;
  --text-muted: #7a7a7a;
  --text-inverse: #1e1e1e;

  --border-primary: var(--bg-tertiary);
  --border-secondary: var(--bg-hover);
  --border-accent: var(--accent-primary);
  --border-success: var(--success);
  --border-warning: var(--warning);
  --border-error: var(--error);

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

  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px var(--accent-glow);
  --shadow-glow-strong: 0 0 30px var(--accent-glow-strong);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.2);

  --transition-instant: 0.05s ease;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.75s ease;
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --text-xs: 10px;
  --text-sm: 12px;
  --text-base: 14px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: 20px;
  --text-3xl: 24px;
  --text-4xl: 28px;
  --text-5xl: 32px;
  --text-6xl: 40px;

  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --leading-loose: 2;

  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;

  --animation-duration-fast: 0.25s;
  --animation-duration-normal: 0.4s;
  --animation-duration-slow: 0.5s;

  --animation-easing-in: cubic-bezier(0.2, 0.8, 0.2, 1);
  --animation-easing-out: cubic-bezier(0.6, 0.2, 1, 0.8);
  --animation-easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --animation-fade-in: fadeIn 0.3s ease;
  --animation-slide-up: slideUp 0.3s ease;
  --animation-slide-down: slideDown 0.3s ease;
  --animation-scale-in: scaleIn 0.2s ease;
  --animation-pulse: pulse 2s infinite;
  --animation-spin: spin 1s linear infinite;

  --animation-interface-open: var(--animation-duration-normal) var(--animation-easing-in) forwards;
  --animation-interface-close: var(--animation-duration-fast) var(--animation-easing-out) forwards;

  --ui-scale: 0.5;
}
