/* Background wrapper */
.moving-balls-bg {
  position: relative;
  background: #ffffff;
  /* overflow: hidden; */
}

.filler{
  max-width: 100%;
  min-height: 100vh;
}

/* The canvas that draws the balls */
.moving-balls-bg canvas.mbb-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  display: block;
}

/* Glassy translucent blur overlay */
.moving-balls-bg .mbb-haze {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  z-index: -1;
}

/* Optional helper for your content (not required) */
.moving-balls-bg .page-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}