body.coming-soon {
  margin: 0;
  background-image: url("background.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.overlay {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
}

.logo {
  width: 100px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.8rem;
  color: #0ef;
  margin-bottom: 30px;
}

.OrderButton {
  text-align: center;
  margin: 30px auto;
  padding: 15px 25px;
  background: linear-gradient(135deg, #00f0ff, #ff00f7, #007cf0);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  width: fit-content;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out;
}
.OrderButton:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}
.OrderButton a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
  }
}

.social-icons {
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.social-icons a {
  margin: 0 10px;
  color: #f0f0f0;
  text-decoration: none;
}
.social-icons a:hover {
  color: #0ff;
}

footer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 20px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}
.footer-container p {
  margin: 0;
}

/* Mobile-view responsivity */
@media (max-width: 600px) {
  .overlay {
    padding: 20px;
  }
  .logo {
    width: 80px;
  }
  .countdown {
    font-size: 1.2rem;
    gap: 10px;
  }
  .footer-container {
    flex-direction: column;
  }
}