body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Creepster', cursive;
  color: white;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: -1;
}

.content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 600px;
}

h1 {
  font-size: 3.5em;
  color: #ff0000;
  text-shadow: 0 0 20px red;
}

.flicker {
  font-size: 2em;
  animation: flicker 2s infinite;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  font-size: 1.5em;
}

.countdown div {
  text-align: center;
}

form {
  margin-top: 15px;
}

input[type="email"] {
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  width: 60%;
}

button {
  padding: 10px 20px;
  background: red;
  color: white;
  font-size: 1em;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

button:hover {
  background: darkred;
}

.tagline {
  margin-top: 20px;
  font-size: 1.2em;
  color: #ccc;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0;
  }
}
