:root {
  /* Brand Colors - Kasinolista.ai */
  --color-primary: #5B23FF;
  --color-secondary: #008BFF;
  --color-accent: #BFFF00;
  --color-highlight: #FFD41D;

  /* RGB versions for rgba() */
  --color-primary-rgb: 91, 35, 255;
  --color-secondary-rgb: 0, 139, 255;
  --color-accent-rgb: 191, 255, 0;
  --color-highlight-rgb: 255, 212, 29;

  /* Background Colors - Dark theme */
  --color-bg: #0a0a12;
  --color-bg-alt: #0f0f1a;
  --color-bg-card: #151520;
  --color-bg-dark: #050508;

  /* Text Colors */
  --color-text: #ffffff;
  --color-text-muted: #a0a0b0;
  --color-text-light: #6b6b80;

  /* Border */
  --color-border: #2a2a3a;
  --color-border-light: #1f1f2f;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Font Sizes */
  --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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}
