html, body {
  margin: 0;
  padding: 0;
  background: #FFFBF2; /* Cream background */
}

.sunwaves-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* WebGL canvas fills the background */
.sunwaves-canvas {
  position: absolute !important;
  inset: 0;
}

/* Gradient sun */
.sunwaves-sun {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #FFD8D1;
  z-index: 1;
}

@media (max-width: 768px) {
  .sunwaves-sun {
    width: 60vw;
    top: 35%;
  }
}
