:root {
  /* Color System */
  --primary-50: #e4f2ff;
  --primary-100: #bddeff;
  --primary-200: #90c9ff;
  --primary-300: #61b1ff;
  --primary-400: #3897ff;
  --primary-500: #106eff;
  --primary-600: #0057e9;
  --primary-700: #0045bd;
  --primary-800: #003494;
  --primary-900: #002170;
  
  --secondary-50: #e5f9ff;
  --secondary-100: #c1eefe;
  --secondary-200: #96e3fd;
  --secondary-300: #66d5fc;
  --secondary-400: #41c9fb;
  --secondary-500: #22bcfa;
  --secondary-600: #1a9fdb;
  --secondary-700: #137fb1;
  --secondary-800: #0e618a;
  --secondary-900: #084c68;
  
  --accent-50: #fff0e5;
  --accent-100: #ffd8bc;
  --accent-200: #ffbf8e;
  --accent-300: #ffa35c;
  --accent-400: #ff8a2e;
  --accent-500: #ff7000;
  --accent-600: #e05800;
  --accent-700: #b74400;
  --accent-800: #903400;
  --accent-900: #6e2500;
  
  --success-50: #e8fbf0;
  --success-100: #c4f5d9;
  --success-200: #9feed0;
  --success-300: #68e6a0;
  --success-400: #3ddb7f;
  --success-500: #1ecd65;
  --success-600: #17a852;
  --success-700: #138542;
  --success-800: #0e6733;
  --success-900: #084f27;
  
  --warning-50: #fff8e5;
  --warning-100: #ffeebb;
  --warning-200: #ffe38c;
  --warning-300: #ffd85c;
  --warning-400: #ffcc2e;
  --warning-500: #ffc000;
  --warning-600: #e0a000;
  --warning-700: #b78100;
  --warning-800: #8f6400;
  --warning-900: #6e4c00;
  
  --error-50: #feeceb;
  --error-100: #fcd0cd;
  --error-200: #fab0ac;
  --error-300: #f78e88;
  --error-400: #f5706a;
  --error-500: #f25147;
  --error-600: #d62e24;
  --error-700: #ab231b;
  --error-800: #841a14;
  --error-900: #63140f;
  
  --neutral-50: #f7f9fc;
  --neutral-100: #e8ecf5;
  --neutral-200: #d4dbe8;
  --neutral-300: #b0bcd0;
  --neutral-400: #8799b8;
  --neutral-500: #64779f;
  --neutral-600: #4d5c81;
  --neutral-700: #3b4564;
  --neutral-800: #282e46;
  --neutral-900: #1a1a2e;
  
  /* Background Colors */
  --bg-dark: var(--neutral-900);
  --bg-card: #212240;
  --bg-light: var(--neutral-50);
  
  /* Text Colors */
  --text-primary: var(--neutral-50);
  --text-secondary: var(--neutral-300);
  --text-muted: var(--neutral-400);
  --text-dark: var(--neutral-800);
  
  /* Font Family */
  --font-primary: 'Montserrat', sans-serif;
  
  /* Font Weights */
  --font-regular: 400;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Font Sizes */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
  --text-xl: 1.25rem;   /* 20px */
  --text-2xl: 1.5rem;   /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem;  /* 36px */
  --text-5xl: 3rem;     /* 48px */
  --text-6xl: 3.75rem;  /* 60px */
  
  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  /* Spacing (8px System) */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */
  --space-32: 8rem;    /* 128px */
  
  /* Border Radius */
  --radius-sm: 0.25rem;  /* 4px */
  --radius-md: 0.5rem;   /* 8px */
  --radius-lg: 0.75rem;  /* 12px */
  --radius-xl: 1rem;     /* 16px */
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms;
  --transition-normal: 300ms;
  --transition-slow: 500ms;
  
  /* Z-index */
  --z-0: 0;
  --z-10: 10;
  --z-20: 20;
  --z-30: 30;
  --z-40: 40;
  --z-50: 50;
  --z-100: 100;
}