/* Ensure full viewport coverage even when Chrome UI shrinks vh */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body.coming-soon {
  margin: 0;
  background: url('https://s5.uupload.ir/files/sasanace/kenwayapex.com/kenwayApexBanner.png') center center / cover fixed #000;
  color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif, Arial, Helvetica;
  
  /* Fixed background image - covers entire screen reliably */
  background-image: url('https://s5.uupload.ir/files/sasanace/kenwayapex.com/kenwayApexBanner.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* This is key for Chrome desktop reliability */
  
  min-height: 100vh;           /* Use min-height instead of fixed height */
  overflow-x: hidden;
  overflow-y: auto;            /* Allow scroll if content overflows */
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Fallback solid color in case image fails to load */
  background-color: #000;
}

/* Ensure overlay stretches full width and doesn't interfere with background */
.overlay {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 1536px;
  width: 90%;
  margin: 20px auto;
  backdrop-filter: blur(8px);           /* Nice modern touch */
  -webkit-backdrop-filter: blur(8px);   /* Safari support */
  box-sizing: border-box;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .overlay {
    width: 95%;
    padding: 30px 15px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .countdown {
    font-size: 1.5rem;
    gap: 15px;
  }
  
  .orderButton {
    padding: 15px;
  }
  
  .orderButton a {
    font-size: 1.1rem;
  }
}

/* Rest of your original styles (unchanged but cleaned up) */
.logo {
  width: 100px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2rem;
  color: #ff00b3;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.8rem;
  color: rgb(255, 0, 212);
  margin-bottom: 30px;
}

.countdown div {
  text-align: center;
}

.countdown small {
  display: block;
  font-size: 0.75rem;
  color: #aaa;
}

.orderButton {
  text-align: center;
  margin: 30px auto;
  padding: 20px;
  background: linear-gradient(135deg, #1959e2, #a0299c, #6a3099);
  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: #ffffff;
  text-shadow: 0 0 6px #00f0ff, 0 0 12px #ff00f7;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 25px;
  display: inline-block;
}

@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 a {
  margin: 0 10px;
  text-decoration: none;
  color: #f0f0f0;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: rgb(255, 0, 191);
}

/* HyperLink text color, hover and after-click effect */
a:link {
  color: rgb(131, 6, 233);
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: rgb(106, 55, 247);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: rgb(194, 19, 92);
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: rgb(194, 22, 50);
  background-color: transparent;
  text-decoration: underline;
}




footer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 40px;
}