/* ============================================
   360 DEGREE M - GLOBAL VARIABLES
   ============================================ */

:root {
  /* Primary Colors */
  --primary-purple: #7B2CFF;
  --primary-purple-dark: #5A1FD4;
  --primary-purple-light: #9B5CFF;
  
  /* Background Colors */
  --bg-dark: #0B021F;
  --bg-darker: #070118;
  --bg-card: rgba(123, 44, 255, 0.08);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  /* Accent Colors */
  --neon-cyan: #00F0FF;
  --neon-cyan-glow: rgba(0, 240, 255, 0.4);
  --soft-lilac: #E0D4FF;
  --soft-lilac-dim: rgba(224, 212, 255, 0.6);
  
  /* Text Colors */
  --text-white: #FFFFFF;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.4);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #7B2CFF 0%, #00F0FF 100%);
  --gradient-purple: linear-gradient(180deg, #7B2CFF 0%, #5A1FD4 100%);
  --gradient-dark: linear-gradient(180deg, #0B021F 0%, #070118 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(123, 44, 255, 0.3) 0%, transparent 70%);
  --gradient-hero: linear-gradient(135deg, rgba(123, 44, 255, 0.15) 0%, rgba(0, 240, 255, 0.05) 50%, rgba(123, 44, 255, 0.1) 100%);
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', 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: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;
  
  /* 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;
  --space-32: 8rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
  --shadow-glow-purple: 0 0 30px rgba(123, 44, 255, 0.4);
  --shadow-glow-cyan: 0 0 30px rgba(0, 240, 255, 0.4);
  --shadow-glow-mixed: 0 0 40px rgba(123, 44, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.2);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-slower: 500ms ease;
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Z-Index Scale */
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-toast: 800;
  
  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;
  
  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
}

/* Dark mode is default for this theme */
html {
  color-scheme: dark;
}

/* Selection styling */
::selection {
  background: var(--primary-purple);
  color: var(--text-white);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-purple);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-purple-light);
}
