/* ========================================
   FUTURISTIC CYBER THEME - VARIABLES
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Core Colors - Based on #450693 */
  --color-bg: #0a0118;
  --color-bg-secondary: #120225;
  --color-bg-tertiary: #1a0336;
  --color-surface: #200442;
  --color-surface-elevated: #2a0555;

  /* Neon Accent Colors */
  --color-primary: #FFC400;
  --color-primary-light: #FFD633;
  --color-primary-dark: #CC9D00;
  --color-secondary: #8C00FF;
  --color-accent: #FF3F7F;
  --color-success: #00ff9d;
  --color-purple: #450693;
  --color-blue: #8C00FF;

  /* RGB Values */
  --color-primary-rgb: 255, 196, 0;
  --color-secondary-rgb: 140, 0, 255;
  --color-accent-rgb: 255, 63, 127;
  --color-success-rgb: 0, 255, 157;
  --color-purple-rgb: 69, 6, 147;

  /* Text Colors */
  --color-text: #ffffff;
  --color-text-secondary: #c4a0e8;
  --color-text-muted: #7a5a9a;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FFC400 0%, #FF3F7F 100%);
  --gradient-secondary: linear-gradient(135deg, #8C00FF 0%, #450693 100%);
  --gradient-accent: linear-gradient(135deg, #FF3F7F 0%, #8C00FF 100%);
  --gradient-surface: linear-gradient(180deg, rgba(42, 5, 85, 0.95) 0%, rgba(10, 1, 24, 0.98) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(140, 0, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  --gradient-mesh:
    radial-gradient(at 40% 20%, rgba(255, 196, 0, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(140, 0, 255, 0.12) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(69, 6, 147, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 80%, rgba(255, 63, 127, 0.1) 0px, transparent 50%);

  /* Glow Effects */
  --glow-primary:
    0 0 10px rgba(var(--color-primary-rgb), 0.4),
    0 0 30px rgba(var(--color-primary-rgb), 0.2),
    0 0 60px rgba(var(--color-primary-rgb), 0.1);
  --glow-secondary:
    0 0 10px rgba(var(--color-secondary-rgb), 0.4),
    0 0 30px rgba(var(--color-secondary-rgb), 0.2);
  --glow-accent:
    0 0 10px rgba(var(--color-accent-rgb), 0.4),
    0 0 30px rgba(var(--color-accent-rgb), 0.2);
  --glow-text-primary: 0 0 20px rgba(var(--color-primary-rgb), 0.6);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(var(--color-primary-rgb), 0.15);
  --shadow-card:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* Borders */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --border-glow: 1px solid rgba(var(--color-primary-rgb), 0.3);
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --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;
  --text-6xl: 4.5rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --header-height: 80px;
  --container-max: 1280px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8C00FF 0%, #450693 100%);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
  box-shadow: var(--glow-primary);
}

/* Selection */
::selection {
  background: rgba(var(--color-primary-rgb), 0.3);
  color: var(--color-text);
}
