body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #000000, #0000ff, #ff0000);
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.poster {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
}

.logo {
  width: 80px;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.subtext {
  font-size: 1rem;
  color: #ff4d4d;
  margin-bottom: 1.5rem;
}

.cta {
  background: white;
  color: black;
  font-weight: bold;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #ff0000;
  color: white;
}

.link-text {
  color: #ff4d4d;
  margin-top: 1rem;
}