/* style.css */

body {
  margin: 0;
  overflow: hidden;
  background: black;
  font-family: monospace;
}

#warningScreen {
  width: 100vw;
  height: 100vh;
  background:
    radial-gradient(circle, #ff00ff, black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.glow {
  font-size: 3rem;
  color: #ff44ff;
  text-shadow:
    0 0 10px #ff44ff,
    0 0 20px #ff44ff,
    0 0 40px #ff44ff;
  animation: flicker 0.1s infinite;
}

#typing {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #ff99ff;
}

button {
  margin-top: 30px;
  padding: 18px 40px;
  border: none;
  background: #ff00aa;
  color: white;
  font-size: 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 30px #ff00aa;
  animation: pulse 1s infinite;
}

button:hover {
  transform: scale(1.05);
}

.hidden {
  display: none;
}

#chaosScreen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: black;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlayText {
  position: absolute;
  top: 10%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-shadow:
    0 0 10px red,
    0 0 20px red;
  animation:
    shake 0.2s infinite,
    flash 0.3s infinite;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

@keyframes flash {
  0% { color: white; }
  50% { color: hotpink; }
  100% { color: red; }
}