* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
}

.waiting-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;

  background-image: url("background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  color: #ffffff;
}

.logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 28px;
}

.tag {
  font-size: 13px;
  letter-spacing: 0.35em;
  margin-bottom: 18px;
  opacity: 0.9;
}

.content h1 {
  font-size: clamp(30px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 18px;
}

.description {
  max-width: 680px;
  margin: 0 auto 34px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.5;
  opacity: 0.95;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.time-box {
  min-width: 95px;
  padding: 18px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  border-radius: 14px;
}

.time-box span {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.time-box small {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.released {
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .waiting-page {
    padding: 28px 16px;
  }

  .logo {
    max-width: 140px;
    margin-bottom: 22px;
  }

  .description {
    margin-bottom: 28px;
  }

  .countdown {
    gap: 10px;
    margin-bottom: 28px;
  }

  .time-box {
    min-width: 78px;
    padding: 14px 10px;
    border-radius: 12px;
  }

  .whatsapp-button {
    width: 100%;
    max-width: 320px;
  }
}