.aurora-container {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: white;       /* чистый белый фон */
  overflow: hidden;
  z-index: -1;             /* под контентом страницы */
}

.aurora-blur {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--aurora);
  background-size: 200% 200%;  /* крупнее, чтобы плавнее двигалось */
  animation: moveGradient 20s ease infinite;
  filter: blur(60px);         /* мягкое свечение */
  opacity: 1;                /* лёгкая прозрачность */
  pointer-events: none;
}

@keyframes moveGradient {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}

