/* ===================================================================
   Particle Background - Canvas Container Positioning
   =================================================================== */

.particles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Canvas element inside container */
.particles-background canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Hide particles if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .particles-background {
    display: none;
  }
}
