
/* ===== COMING SOON ===== */
.coming-soon {
  padding: 80px 20px;
  background-color: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Reset (Only for this section) ===== */
.coming-soon * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Container ===== */
.coming-soon .container {
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin: auto;
}

/* ===== Heading ===== */
.coming-soon h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

/* ===== Subtitle ===== */
.coming-soon .subtitle {
  font-size: 15px;
  color: #a1a1aa;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ===== Animated Dots ===== */
.coming-soon .dot {
  display: inline;
  color: #ffffff;
}
.coming-soon .dot1 { animation: pulse 1.4s ease-in-out infinite; }
.coming-soon .dot2 { animation: pulse 1.4s ease-in-out 0.2s infinite; }
.coming-soon .dot3 { animation: pulse 1.4s ease-in-out 0.4s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== Progress Card ===== */
.coming-soon .progress-card {
  background: #111827;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.coming-soon .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.coming-soon .progress-label {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

.coming-soon .progress-pct {
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
}

/* ===== Progress Track ===== */
.coming-soon .progress-track {
  height: 8px;
  background: #374151;
  border-radius: 999px;
  overflow: hidden;
}

/* ===== Progress Bar ===== */
.coming-soon .progress-bar {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  height: 100%;
  width: 70%;
}

/* ===== Shimmer Effect ===== */
.coming-soon .shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 1.8s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

/* ===== Progress Footer ===== */
.coming-soon .progress-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: #9ca3af;
}

/* ===== Countdown ===== */
.coming-soon .countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.coming-soon .countdown-item {
  text-align: center;
}

.coming-soon .countdown-num {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
}

.coming-soon .countdown-label {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .coming-soon h1 {
    font-size: 26px;
  }

  .coming-soon .countdown {
    gap: 1rem;
  }

  .coming-soon .countdown-num {
    font-size: 20px;
  }

  .coming-soon .container {
    padding: 2rem 1rem;
  }
}