/* PixelBlast — WebGL canvas host.
   The container is a positioned box; the canvas fills it absolutely so the
   element never grows past its parent and never triggers layout scroll. */
.pixel-blast-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pixel-blast-container canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* The effect is decorative: it listens on the page, not on itself, so every
   element layered above it stays clickable. */
.pixel-blast-container { pointer-events: none; }
