/* Scouting Antwerpen Zuid - Coming Soon stijl */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #e3f2e1, #b5d6b2);
  color: #2b2b2b;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 650px;
  width: 90%;
}

.logo img {
  width: 100px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

h1 {
  font-size: 2rem;
  color: #2f5d31;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #3a3a3a;
}

h2 span {
  color: #4e8b49;
  font-weight: 600;
}

p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.download-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(90deg, #4e8b49, #7acb75);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(78, 139, 73, 0.3);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(78, 139, 73, 0.4);
}

/* COUNTDOWN TIMER */
.timer-box {
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.timer-box div {
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  min-width: 80px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 2px solid #7acb75;
}

.timer-box span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #4e8b49;
}

.timer-box small {
  font-size: 0.8rem;
  color: #555;
}