@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  background: linear-gradient(135deg, #0078ff, #00c6ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.countdown {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 10px;
  flex: 1;
}

.countdown span {
  font-size: 2rem;
  font-weight: 600;
  display: block;
}

.notify-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.notify-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 70%;
  outline: none;
}

.notify-form button {
  padding: 10px 15px;
  background: #fff;
  color: #0078ff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.notify-form button:hover {
  background: #00c6ff;
  color: #fff;
}

.footer {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
}
