/* coming-soon.css - Coming Soon Page Styles */

/* Coming Soon Section */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* Animated Background */
.cs-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cs-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
  animation: floatShape 20s infinite linear;
}

.cs-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: linear-gradient(45deg, #3b82f6, transparent);
  animation-delay: 0s;
}

.cs-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: 10%;
  background: linear-gradient(45deg, #8b5cf6, transparent);
  animation-delay: -5s;
}

.cs-shape-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: -50px;
  background: linear-gradient(45deg, #10b981, transparent);
  animation-delay: -10s;
}

.cs-shape-4 {
  width: 150px;
  height: 150px;
  bottom: 30%;
  left: 5%;
  background: linear-gradient(45deg, #f59e0b, transparent);
  animation-delay: -15s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Container */
.cs-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.cs-title {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cs-highlight {
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.cs-blink {
  animation: blink 1s infinite;
  display: inline-block;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.cs-subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Countdown Timer */
.cs-countdown {
  margin-bottom: 40px;
}

.countdown-title {
  color: #475569;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.countdown-item {
  background: #f8fafc;
  border-radius: 15px;
  padding: 20px 15px;
  min-width: 80px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.countdown-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
  font-family: monospace;
}

.countdown-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-separator {
  color: #3b82f6;
  font-size: 24px;
  font-weight: bold;
  margin: 0 5px;
}

/* Back to Home */
.cs-back-home {
  margin-top: 30px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cs-container {
    padding: 40px 30px;
  }

  .cs-title {
    font-size: 36px;
  }

  .countdown-item {
    min-width: 70px;
    padding: 15px 10px;
  }

  .countdown-number {
    font-size: 28px;
  }

  .countdown-separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .cs-title {
    font-size: 28px;
  }

  .cs-subtitle {
    font-size: 16px;
  }

  .countdown-timer {
    gap: 10px;
  }

  .countdown-item {
    min-width: 60px;
    padding: 12px 8px;
  }

  .countdown-number {
    font-size: 24px;
  }
}