* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #2980b9, #6dd5fa);
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.countdown {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
}

.countdown div {
  text-align: center;
}

.countdown span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.countdown small {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.email-form input {
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

.email-form button {
  padding: 0.8rem;
  background-color: #27ae60;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.email-form button:hover {
  background-color: #2ecc71;
}
