body, html {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.coming-soon-wrapper {
  background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
  background-size: cover;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.content {
  z-index: 2;
}

.brand-name {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
  white-space: nowrap;
}

.brand-name span {
  display: inline-block;
  opacity: 0.6;
  transform: translateY(5px);
  animation: softFadeLift 3s ease-in-out infinite;
}

/* Slight delay per letter */
.brand-name span:nth-child(1)  { animation-delay: 0s; }
.brand-name span:nth-child(2)  { animation-delay: 0.1s; }
.brand-name span:nth-child(3)  { animation-delay: 0.2s; }
.brand-name span:nth-child(4)  { animation-delay: 0.3s; }
.brand-name span:nth-child(5)  { animation-delay: 0.4s; }
.brand-name span:nth-child(6)  { animation-delay: 0.5s; }
.brand-name span:nth-child(7)  { animation-delay: 0.6s; }
.brand-name span:nth-child(8)  { animation-delay: 0.7s; }
.brand-name span:nth-child(9)  { animation-delay: 0.8s; }
.brand-name span:nth-child(10) { animation-delay: 0.9s; }
.brand-name span:nth-child(11) { animation-delay: 1s; }
.brand-name span:nth-child(12) { animation-delay: 1.1s; }
.brand-name span:nth-child(13) { animation-delay: 1.2s; }
.brand-name span:nth-child(14) { animation-delay: 1.3s; }
.brand-name span:nth-child(15) { animation-delay: 1.4s; }
.brand-name span:nth-child(16) { animation-delay: 1.5s; }
.brand-name span:nth-child(17) { animation-delay: 1.6s; }
.brand-name span:nth-child(18) { animation-delay: 1.7s; }

@keyframes softFadeLift {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(5px);
  }
  50% {
    opacity: 1;
    transform: translateY(0px);
  }
}



#countdown div {
  text-align: center;
}

#countdown h2 {
  font-size: 2rem;
  margin-bottom: 0;
  animation: pulse 1.5s infinite;
}

#countdown small {
  font-size: 0.9rem;
  display: block;
  margin-top: 5px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
