body {
  background: #fff000;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.vdw_lightrope {
  position: absolute;
  top: 1%; /* Zet de lichtketting bijvoorbeeld 10% van de bovenkant */
  left: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
  pointer-events: none;
  display: flex;
  width: 100%; /* Volledige breedte */
  justify-content: space-between; /* Gelijkmatig verdeeld */
}

.vdw_lightrope li {
  position: relative;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  list-style: none;
  margin: 0;
  width: 15px; /* Zorg dat de lampjes rond zijn */
  height: 30px; /* Hoogte van de lampjes */
  border-radius: 50%;
  background: #00f7a5;
  box-shadow: 0px 4px 24px 3px #00f7a5;
  animation-name: vdw_flash-1;
  animation-duration: 2s;
}

/* Andere kleuren en animaties */
.vdw_lightrope li:nth-child(2n+1) {
  background: cyan;
  box-shadow: 0px 4px 24px 3px rgba(0, 255, 255, 0.5);
  animation-name: vdw_flash-2;
  animation-duration: 0.8s;
}

.vdw_lightrope li:nth-child(4n+2) {
  background: #f70094;
  box-shadow: 0px 4px 24px 3px #f70094;
  animation-name: vdw_flash-3;
  animation-duration: 1.2s;
}

.vdw_lightrope li:before {
  content: "";
  position: absolute;
  background: #222; /* Kabelkleur */
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: -6px;
  left: 2px;
}

.vdw_lightrope li:after {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 6px;
  border-bottom: 2px solid #222; /* Kabeltje */
  border-radius: 50%;
}

/* Animaties */
@keyframes vdw_flash-1 {
  0%, 100% {
    background: #00f7a5;
    box-shadow: 0px 4px 24px 3px #00f7a5;
  }
  50% {
    background: rgba(0, 247, 165, 0.4);
    box-shadow: 0px 4px 24px 3px rgba(0, 247, 165, 0.2);
  }
}

@keyframes vdw_flash-2 {
  0%, 100% {
    background: cyan;
    box-shadow: 0px 4px 24px 3px cyan;
  }
  50% {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0px 4px 24px 3px rgba(0, 255, 255, 0.2);
  }
}

@keyframes vdw_flash-3 {
  0%, 100% {
    background: #f70094;
    box-shadow: 0px 4px 24px 3px #f70094;
  }
  50% {
    background: rgba(247, 0, 148, 0.4);
    box-shadow: 0px 4px 24px 3px rgba(247, 0, 148, 0.2);
  }
}
