/* assets/css/pixelblast-effect.css */
#pixel-blast-background {
  position: absolute; /* Changed from 'fixed' to 'absolute' */
  top: 0;
  left: 0;
  width: 100%; /* Changed from '100vw' to '100%' */
  height: 100%; /* Changed from '100vh' to '100%' */
  z-index: -1; /* Keep this to ensure it's behind content */
  overflow: hidden;
}