.light-effect {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.light {
  position: absolute;
  border-radius: 50%;
  background-color: var(--primary);
  filter: blur(96px);
  opacity: 0;
  animation: pulse 5s infinite;
}

.light-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

.light-2 {
  width: 300px;
  height: 300px;
  top: 25%;
  left: 25%;
  animation-delay: 1s;
}

.light-3 {
  width: 250px;
  height: 250px;
  bottom: 25%;
  right: 25%;
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--text-gray);
  border-radius: 999px;
  padding: 0.25rem;
}

.wheel {
  width: 0.25rem;
  height: 0.75rem;
  background-color: var(--primary);
  border-radius: 999px;
  margin: 0 auto;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1rem);
    opacity: 0;
  }
}