* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.container {
  text-align: center;
  padding: 20px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.content p {
  margin-bottom: 30px;
  color: #ddd;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.countdown span {
  font-size: 2rem;
  font-weight: bold;
}

.subscribe {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 250px;
}

.subscribe button {
  padding: 10px 20px;
  border: none;
  background: #ff7a18;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe button:hover {
  background: #ff5200;
}

/* Responsive */
@media (max-width: 600px) {
  .content h1 {
    font-size: 2rem;
  }

  .countdown {
    flex-wrap: wrap;
  }
}