/* KEVEO - CSS Design System & Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-deep: #060608;
  --bg-dark: #0c0c10;
  --bg-card: rgba(18, 18, 24, 0.65);
  --bg-card-hover: rgba(26, 26, 36, 0.8);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-active: rgba(124, 58, 237, 0.4);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #475569;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #8b5cf6, #6366f1);
  --grad-secondary: linear-gradient(135deg, #ec4899, #d946ef);
  --grad-accent: linear-gradient(135deg, #3b82f6, #06b6d4);
  --grad-gold: linear-gradient(135deg, #f59e0b, #eab308);
  --grad-dark: linear-gradient(180deg, #181825, #0c0c12);
  
  /* Glow Effects */
  --glow-primary: 0 0 20px rgba(139, 92, 246, 0.25);
  --glow-secondary: 0 0 20px rgba(236, 72, 153, 0.25);
  --glow-accent: 0 0 20px rgba(59, 130, 246, 0.25);
  
  /* Fonts */
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout & Sizing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-Index scale */
  --z-back: -1;
  --z-base: 1;
  --z-nav: 100;
  --z-modal: 1000;
  --z-toast: 2000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.3);
}
