/* ============================================================
   BestFX.pl — interaktywne tło (siatka cząsteczek + poświata kursora)
   ============================================================ */

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

#cursorGlow {
  position: fixed;
  top: 0;
  left: 0;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 139, 255, 0.2), rgba(168, 85, 247, 0.1) 45%, rgba(0, 0, 0, 0) 72%);
  mix-blend-mode: screen;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}
