body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  background-color: #0f0f0f;
  color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 2rem;
}

.hero h1.glitch {
  font-size: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f1f1f1;
  position: relative;
}

.hero h1.glitch::after {
  content: "ACRONYMX";
  position: absolute;
  left: 2px;
  top: 2px;
  color: #00ffff88;
  z-index: -1;
}

.tagline {
  font-size: 1.2rem;
  color: #888;
  margin-top: 0.5rem;
}

.mission, .form-block, .preview {
  margin: 2rem 0;
}

input[type="email"] {
  padding: 0.6rem;
  font-size: 1rem;
  width: 70%;
  border: none;
  border-radius: 4px;
  margin-right: 0.5rem;
}

button {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  background-color: #00ffcc;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
}

button:hover {
  background-color: #00ddb3;
}

.footer {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #555;
}