* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: url("ComingSoon.gif") center/cover no-repeat;
  min-height: 120vh;
  color: #fff;


}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* LOGO */
.logo {
  position: absolute;
  top: -10px;
  left: 25px;
}
.logo img {
  width: 170px;
  height: 150px;
}

/* CONTENT */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

/* COUNTDOWN */
.countdown {
  display: flex;
  gap: 30px;
   margin-top: 150px;  
}

.countdown div {
  background: rgba(105, 102, 102, 0.7);
  padding: 15px 18px;
  border-radius: 8px;
}

.countdown span {
  font-size: 28px;
  display: block;
}

.countdown small {
  font-size: 12px;
  opacity: 0.8;
}

/* FOOTER (SLIM BLACK BAR) */
.footer {
  background: rgba(0,0,0,0.6);
  padding: 6px 0;
  text-align: center;
  font-size: 13px;
  position: absolute;
  bottom: -150px;
  width: 100%;
}

.footer p {
  margin-bottom: 4px;
}

.social a {
  color: #fff;
  margin: 0 6px;
  font-size: 14px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  text-decoration: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .content h1 {
    font-size: 32px;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo img {
    width: 90px;
  }
}
