/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom right, #1e3c72, #2a5298);
  color: white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  max-width: 600px;
}

.animated-text {
  font-size: 2.5rem;
  font-weight: bold;
  animation: fadeIn 3s ease-in-out infinite alternate;
}

@keyframes fadeIn {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.subtext {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0;
}

.countdown div {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

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

.countdown p {
  margin: 0;
  font-size: 1rem;
}

.notify-text {
  margin-top: 20px;
}

.notify-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.notify-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 1rem;
  flex: 1;
}

.notify-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #ff7e5f;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.notify-form button:hover {
  background: #e36d52;
}

@media (max-width: 600px) {
  .countdown {
    flex-wrap: wrap;
  }

  .countdown div {
    flex: 1 1 45%;
  }
}
