.strike-animation {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 150vw;
  height: 200vh;
  z-index: 100;
}

.strike {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200vh;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
}
.strike-red {
  background: transparent;
  animation: strike-fly-right 0.75s 4s cubic-bezier(.7,0,.3,1) forwards;
  z-index: 102;
}
.strike-white {
  background: transparent;
  animation: strike-fly-right 0.85s 4s cubic-bezier(.7,0,.3,1) forwards;
  z-index: 101;
}
.strike-red::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 200vh;
  background: #e6001a;
  border-radius: 0;
  z-index: 3;
}
.strike-white::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70vw;
  height: 200vh;
  background: #fff;
  border-radius: 0;
  z-index: 2;
}

@keyframes strike-fly-right {
  0% {
    opacity: 0;
    transform: translateX(-100vw);
  }
  10% {
    opacity: 1;
    transform: translateX(-100vw);
  }
  60% {
    opacity: 1;
    transform: translateX(0vw);
  }
  90% {
    opacity: 1;
    transform: translateX(100vw);
  }
  100% {
    opacity: 0;
    transform: translateX(100vw);
  }
}
.center-content {
  min-height: 100vh;
  width: 100vw;
  background-color: #252525;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: lights-fly-out 0.7s 4s cubic-bezier(.7,0,.3,1) forwards;
  z-index: 1;
}

.kic-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  animation: logo-fly-out 0.7s 4s cubic-bezier(.7,0,.3,1) forwards;
}

.kic-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
}

.light-green {
  background: radial-gradient(circle at 60% 40%, #1a2a1a 70%, #0e1a0e 100%);
  opacity: 0.75;
}
.traffic-light .light-green {
  opacity: 0.75;
}
.traffic-light:nth-child(1) .light-green,
.traffic-light:nth-child(2) .light-green,
.traffic-light:nth-child(3) .light-green,
.traffic-light:nth-child(4) .light-green,
.traffic-light:nth-child(5) .light-green {
  opacity: 0.75;
}
.light-yellow {
  background: radial-gradient(circle at 60% 40%, #6a6427 70%, #2d2a13 100%);
  opacity: 0.75;
}
.traffic-light .light-yellow {
  opacity: 0.75;
}
.traffic-light:nth-child(1) .light-yellow,
.traffic-light:nth-child(2) .light-yellow,
.traffic-light:nth-child(3) .light-yellow,
.traffic-light:nth-child(4) .light-yellow,
.traffic-light:nth-child(5) .light-yellow {
  opacity: 0.75;
}

.traffic-lights-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 60px;
  animation: lights-fly-out 0.7s 4s cubic-bezier(.7,0,.3,1) forwards;
}
@keyframes logo-fly-out {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lights-fly-out {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.traffic-light {
  background: #1c1c1c;
  border-radius: 12px;
  width: 60px;
  height: 236px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 0 8px #111;
  position: relative;
  padding: 12px 0;
  gap: 16px;
}

.light {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 16px #0008;
  display: block;
  flex-shrink: 0;
}


.light-red {
  background: #2a2a2f;
  background: radial-gradient(circle at 60% 40%, #c22a2a 70%, #5a1010 100%);
  opacity: 0.18;
  position: relative;
}

.light-red::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #ff3b3b33 0%, #ff3b3b00 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s;
}
.light-red.top.activated::after,
.light-red.bottom.activated::after {
  opacity: 1;
}
.light-red.top,
.light-red.bottom {
  animation: red-on-seq 0.25s linear forwards;
}

.traffic-light:nth-child(1) .light-red {
  animation-delay: 0s;
}
.traffic-light:nth-child(2) .light-red {
  animation-delay: 0.75s;
}
.traffic-light:nth-child(3) .light-red {
  animation-delay: 1.5s;
}
.traffic-light:nth-child(4) .light-red {
  animation-delay: 2.25s;
}
.traffic-light:nth-child(5) .light-red {
  animation-delay: 3s;
}

@keyframes red-on-seq {
  0% {
    opacity: 0.15;
    box-shadow: 0 0 16px #0008;
  }
  80% {
    opacity: 1;
    box-shadow: 0 0 60px 24px #ff3b3b99, 0 0 32px #a10000cc;
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 40px 16px #ff3b3b66, 0 0 24px #a1000099;
  }
}

@keyframes red-on {
  0%, 19% {
    opacity: 0.15;
  }
  20%, 80% {
    opacity: 1;
  }
  81%, 100% {
    opacity: 0.15;
  }
}

.traffic-light:nth-child(1) .light-red {
  --i: 0;
}
.traffic-light:nth-child(2) .light-red {
  --i: 1;
}
.traffic-light:nth-child(3) .light-red {
  --i: 2;
}
.traffic-light:nth-child(4) .light-red {
  --i: 3;
}
.traffic-light:nth-child(5) .light-red {
  --i: 4;
}
