.elementor-43 .elementor-element.elementor-element-9823be4{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d03e90e *//* Background */
.coming-container {
  height: 100vh;
  background: linear-gradient(135deg, #141e30, #243b55);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

/* Main box */
.box {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  animation: fadeIn 1.5s ease;
}

/* Heading */
.box h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

/* Text */
.box p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ddd;
}

/* Timer style */
#timer {
  display: flex;
  justify-content: center;
  gap: 15px;
}

#timer span {
  background: #ff6b6b;
  padding: 15px 18px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */