/* ============================= */
/* Maillist pagina styling */
/* ============================= */

.maillist-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  background: linear-gradient(180deg, #f0f4ff, #ffffff);
  padding: 20px;
}

.maillist-page h1 {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.maillist-page p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
}

.maillist-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  width: 100%;
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.maillist-form input {
  padding: 12px 15px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-weight: bold;
  width: 100%;
}

.maillist-form button {
  padding: 12px 20px;
  background: #007bff;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.maillist-form button:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.thank-you-message {
  display: none;
  font-size: 1.1rem;
  color: #007bff;
  margin-top: 20px;
  font-weight: bold;
}

/* =============================
   LAUNCH COUNTDOWN
============================= */

.launch-timer {
  margin-bottom: 35px;
  text-align: center;
}

.launch-timer p {
  font-size: 0.9rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 12px;
}

#countdown {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

#countdown span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 75px;
  height: 75px;

  background: #fff;
  border-radius: 14px;

  font-size: 1.4rem;
  font-weight: 800;
  color: #007bff;

  box-shadow: 0 8px 20px rgba(0,0,0,0.12);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#countdown span:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* labels onder cijfers */
#countdown span::after {
  content: attr(data-label);
  font-size: 0.65rem;
  font-weight: 700;
  color: #777;
  margin-top: 4px;
}

/* Mobile */
@media (max-width: 600px) {

  #countdown span {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

}