body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('bg.jpg') center/cover no-repeat fixed;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}

p{

  font-size: 18px;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}

.container {
  position: relative;
  background: rgba(255,255,255,0.12);
  padding: 35px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  width: 90%;
  max-width: 500px;
  border: 1px solid rgba(255,215,0,0.4);
  z-index: 2;
}

.logo { width: 160px; margin-bottom: 18px; }

/* icons */
.icons img {
  width: 48px;
  margin: 0 8px;
  opacity: 0.8;
}

/* progress bar */
.progress-wrapper {
  width: 100%;
  height: 14px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
  margin: 25px 0;
  border: 1px solid gold;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #b8860b);
  animation: load 6s infinite;
}

@keyframes load {
  0% { width: 0%; }
  50% { width: 95%; }
  100% { width: 0%; }
}

.countdown {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  z-index: 100;
}

.whatsapp-icon {
  width: 100%;
  transition: transform .2s;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}
