/* File: background-lavalamp.css */

/* Lava Lamp Canvas */
.lavalamp-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  pointer-events: none;
  z-index: -3; /* Positioned above base backgrounds but below main content */
}

/* Noise/Grain Canvas */
.noise-canvas {
  position: fixed;  /* Fixed positioning for full-viewport coverage */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; /* On top for texture */
  mix-blend-mode: overlay; /* Adjust blend mode as desired */
}