/* DREAMWAVE FM — CSS Custom Properties */
:root {
  /* Neon Color Palette */
  --neon-pink: #ff71ce;
  --neon-blue: #01cdfe;
  --neon-purple: #b967ff;
  --neon-green: #05ffa1;
  --neon-yellow: #fffb96;

  /* Background Colors */
  --dark-bg: #0d0221;
  --darker-bg: #06060a;

  /* UI Colors */
  --card-bg: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: rgba(255, 255, 255, 0.85);
  --text-secondary: rgba(255, 255, 255, 0.5);
  --text-muted: rgba(255, 255, 255, 0.3);

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Z-index layers */
  --z-base: 1;
  --z-dropdown: 100;
  --z-modal: 9000;
  --z-toast: 9500;
  --z-overlay: 9999;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');