/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #000000, #1c1c1c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

/* Container */
.container {
  max-width: 500px;
  width: 100%;
}

/* Headline and message */
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ff9800;
}

p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Countdown timer */
.countdown {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  width: 70px;
}

.countdown span {
  font-size: 1.8rem;
  display: block;
  color: #fff;
}

small {
  font-size: 0.8rem;
  color: #aaa;
}

/* Email form */
form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 70%;
  outline: none;
}

button {
  padding: 10px 15px;
  border: none;
  background: #ff9800;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #e68a00;
}

/* Responsive design */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 10px;
  }

  form {
    flex-direction: column;
  }

  input {
    width: 100%;
  }

  button {
    width: 100%;
  }
}
