/* Coming Soon Styles */

.coming-soon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing_large);
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(72, 191, 227, 0.05) 100%);
  border-radius: var(--border-radius-lg);
  margin: var(--spacing_large) 0;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.coming-soon-container::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--highlightColor) 0%, transparent 70%);
  opacity: 0.1;
  top: -100px;
  right: -100px;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 15s infinite alternate ease-in-out;
}

.coming-soon-icon {
  margin-bottom: var(--spacing_med);
  position: relative;
  width: 100px;
  height: 100px;
}

.gear-animation {
  width: 80px;
  height: 80px;
  border: 4px solid var(--highlightColor);
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  animation: spin 10s linear infinite;
}

.gear-animation::before,
.gear-animation::after {
  content: '';
  position: absolute;
  background: var(--accentColor);
  border-radius: 2px;
}

.gear-animation::before {
  width: 8px;
  height: 40px;
  top: 20px;
  left: 36px;
}

.gear-animation::after {
  width: 40px;
  height: 8px;
  top: 36px;
  left: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.coming-soon-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: var(--fontPrimaryColor);
  margin-bottom: var(--spacing_small);
  background: linear-gradient(90deg, var(--highlightColor), var(--accentColor));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon-text {
  max-width: 600px;
  margin-bottom: var(--spacing_large);
  color: var(--fontSecondaryColor);
  font-size: 1.1rem;
  line-height: 1.6;
}

.coming-soon-timeline {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 600px;
  margin-top: var(--spacing_med);
  position: relative;
}

@media (max-width: 576px) {
  .coming-soon-timeline {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  
  .coming-soon-timeline::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.coming-soon-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

@media (max-width: 576px) {
  .timeline-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
  }
  
  .timeline-dot {
    margin-bottom: 0;
  }
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primaryBackgroundColor);
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.timeline-dot.active {
  background: var(--accentColor);
  border-color: var(--highlightColor);
  box-shadow: 0 0 10px rgba(72, 191, 227, 0.5);
}

.timeline-content {
  font-size: 0.9rem;
  color: var(--fontSecondaryColor);
}

.privacy-notice {
  text-align: center;
  padding: var(--spacing_med);
  margin-top: var(--spacing_large);
  background: rgba(36, 47, 75, 0.5);
  border-radius: var(--border-radius-md);
}

.privacy-notice h4 {
  margin-bottom: var(--spacing_small);
  color: var(--accentColor);
}

.privacy-notice p {
  color: var(--fontSecondaryColor);
}