/* css/cosmic.css — cosmic ambient backdrop, shared effects */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(248, 216, 120, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(94, 215, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
