.particle-violet {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background-color: oklch(60.6% 0.25 292.717);
  border-radius: 50%;
  box-shadow:
    0 0 10px oklch(60.6% 0.25 292.717),
    0 0 20px oklch(82.7% 0.119 306.383);
}

#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  user-select: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animate-spin-4s {
  animation: spin 4s linear infinite;
}

.backdropl {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Теперь движется вправо */
@keyframes moveX {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Теперь движется влево */
@keyframes moveXBack {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

#wave-front {
  animation: moveX 4s linear infinite;
}

#wave-back {
  animation: moveXBack 8s linear infinite;
}
