* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  text-align: center;
}

.container {
  animation: fadeIn 1.5s ease-in-out;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 30px;
  opacity: 0.8;
}

#countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

#countdown div {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  min-width: 70px;
}

#countdown span {
  font-size: 1.5rem;
  display: block;
}

.subscribe input {
  padding: 12px;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 220px;
}

.subscribe button {
  padding: 12px 20px;
  border: none;
  background: #fff;
  color: #333;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
  transition: 0.3s;
}

.subscribe button:hover {
  background: #000;
  color: #fff;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
