/* Coming Soon Page Styles */
:root {
  --neutral: #6246ea;
  --base-100: #33272a;
  --neutral-focus: #fffffe;
  --neutral-highlight: #a4a4f7;
  --primary: #faeee7;
  --secondary: #cfbabf;
  --accent: #33272a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Arial", sans-serif;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-focus);
}

.coming-soon-container {
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(51, 39, 42, 0.3);
  border: 1px solid rgba(250, 238, 231, 0.2);
  max-width: 600px;
  width: 90%;
}

.icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--neutral);
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  color: var(--neutral);
  font-weight: 400;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(250, 238, 231, 0.2);
  border-radius: 10px;
  margin: 2rem 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neutral), var(--neutral-highlight));
  border-radius: 10px;
  width: 10%; /* Adjust based on completion */
  animation: shimmer 2s infinite;
}

.home-button {
  display: inline-block;
  padding: 12px 30px;
  background: rgba(250, 238, 231, 0.2);
  color: var(--neutral);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid rgba(250, 238, 231, 0.3);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 1rem;
}

.home-button:hover {
  background: var(--neutral);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.eta {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
  color: var(--neutral);
  font-weight: 300;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon-container {
    padding: 2.5rem;
    margin: 1rem;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .icon {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .coming-soon-container {
    padding: 2rem;
  }

  .title {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .icon {
    font-size: 3rem;
  }

  .home-button {
    margin: 0.5rem;
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
