body {
  margin: 0;
  background-color: #121212;
  color: #f5f5f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.construction-container {
  text-align: center;
  position: relative;
}

.animated-text {
  font-size: 3rem;
  font-weight: bold;
  animation: glitch 1.5s infinite;
  color: #ffcc00;
}

.subtitle {
  margin-top: 1rem;
  color: #cccccc;
  font-size: 1.1rem;
}

.barrier {
  margin: 1.5rem auto;
  width: 300px;
  height: 15px;
  background: repeating-linear-gradient(
    45deg,
    #ffcc00,
    #ffcc00 10px,
    #333 10px,
    #333 20px
  );
  border-radius: 4px;
}

.lights {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.light {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #444;
  box-shadow: 0 0 10px transparent;
}

.light.red {
  animation: blinkLeft 2s infinite alternate;
}

.light.yellow {
  animation: blinkRight 2s infinite alternate;
}

.light.green {
  animation: blinkLeft 2s infinite alternate;
}

@keyframes blinkLeft {
  0%, 100% {
    background-color: #222;
    box-shadow: 0 0 5px transparent;
  }
  50% {
    background-color: #ff3b30;
    box-shadow: 0 0 15px #ff3b30;
  }
}

@keyframes blinkRight {
  0%, 100% {
    background-color: #222;
    box-shadow: 0 0 5px transparent;
  }
  50% {
    background-color: #ffcc00;
    box-shadow: 0 0 15px #ffcc00;
  }
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(2px, -2px);
  }
  60% {
    transform: translate(-1px, 1px);
  }
  80% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(0);
  }
}
