.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 90vw;
  display: flex;
  justify-content: space-between;
  z-index: -1; /* Zorgt dat de lijnen achter je content blijven */
  pointer-events: none; /* Je kunt door de lijnen heen klikken */
}

.line {
  position: relative;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05); /* Subtiele statische lijn */
  overflow: hidden;
}

.line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(79, 70, 229, 0) 0%,
    var(--accent-color) 75%,
    var(--accent-color) 100%
  );
  animation: drop 7s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

/* Verschillende vertragingen voor een natuurlijk effect */
.line:nth-child(1)::after {
  animation-delay: 0.5s;
}
.line:nth-child(2)::after {
  animation-delay: 2.1s;
}
.line:nth-child(3)::after {
  animation-delay: 4.3s;
}
.line:nth-child(4)::after {
  animation-delay: 1.2s;
}
.line:nth-child(5)::after {
  animation-delay: 5.5s;
}
.line:nth-child(6)::after {
  animation-delay: 3s;
}
.line:nth-child(7)::after {
  animation-delay: 0.2s;
}
.line:nth-child(8)::after {
  animation-delay: 4.8s;
}
.line:nth-child(9)::after {
  animation-delay: 2.7s;
}
.line:nth-child(10)::after {
  animation-delay: 6.1s;
}

@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
