/* css/variables.css */
:root {
  /* Colors */
  --color-bg: #050505;
  --color-secondary-bg: #0B0B0B;
  --color-surface: #0E0E0E;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-text: #FFFFFF;
  --color-text-secondary: #B3B3B3;
  --color-accent: #FFD43B;
  --color-accent-hover: #FFE36D;
  --color-error: #ff4c4c;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.75rem;
  --space-sm: 1.5rem;
  --space-md: 3rem;
  --space-lg: 6rem;
  --space-xl: 10rem;
  
  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-normal: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 1s cubic-bezier(0.25, 1, 0.5, 1);

  /* Border Radius - Minimal/Sharp */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-pill: 30px;
}
