/* coming-soon.css - Coming Soon page styles */

.coming-soon-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-top: 80px;
}

.coming-soon-content {
  max-width: 600px;
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon-wrapper {
  margin-bottom: 2rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.coming-soon-icon {
  color: #b41616;
  filter: drop-shadow(0 0 20px rgba(180, 22, 22, 0.3));
}

.coming-soon-icon circle {
  animation: rotate 3s linear infinite;
  transform-origin: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.coming-soon-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #b41616 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-description {
  font-size: 1.2rem;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.coming-soon-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #b41616;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(180, 22, 22, 0.7);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 0 10px rgba(180, 22, 22, 0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .coming-soon-container {
    padding: 1.5rem;
    padding-top: 80px;
  }

  .coming-soon-title {
    font-size: 2.5rem;
  }

  .coming-soon-description {
    font-size: 1rem;
  }

  .coming-soon-buttons {
    flex-direction: column;
    width: 100%;
  }

  .coming-soon-buttons .btn {
    width: 100%;
  }

  .icon-wrapper svg {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .coming-soon-title {
    font-size: 2rem;
  }

  .status-indicator {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
}