/*
Premium & Responsive Coming Soon Page CSS
Author: Copilot
*/

:root {
  --primary: #1976d2;
  --primary-dark: #1565c0;
  --accent: #64b5f6;
  --bg: #f6fbff;
  --glass: rgba(255,255,255,0.85);
  --shadow: 0 8px 32px 0 rgba(33,150,243,0.12);
  --radius: 24px;
  --radius-sm: 14px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

body.coming-soon-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-container {
  background: var(--glass);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  max-width: 420px;
  width: 96vw;
  margin: 32px auto;
  padding: 32px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bg-animation {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.logo-section {
  margin-bottom: 18px;
  z-index: 2;
}
.logo-bg {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 50%;
  box-shadow: 0 4px 24px 0 rgba(33,150,243,0.10);
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-bg img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.coming-soon-text {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
  background: linear-gradient(90deg, #1976d2 40%, #64b5f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.description {
  font-size: 1.08rem;
  color: #333;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.6;
}
.highlight {
  color: var(--primary-dark);
  font-weight: 600;
  background: #e3f2fd;
  border-radius: 6px;
  padding: 0 4px;
}

.countdown-section {
  width: 100%;
  margin: 0 0 18px 0;
  z-index: 2;
}
.countdown-title {
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.countdown-title i {
  color: var(--primary);
  font-size: 1.1em;
}
.countdown-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.7rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(33,150,243,0.08);
  padding: 16px 8px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
  max-width: 60px;
}
.countdown-number-wrapper {
  background: linear-gradient(135deg, #1976d2 0%, #64b5f6 100%);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 2px;
  box-shadow: 0 2px 8px rgba(33,150,243,0.10);
}
.countdown-label {
  font-size: 0.78rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 2px;
  text-align: center;
}
.countdown-separator {
  font-size: 1.5rem;
  color: var(--primary-dark);
  align-self: center;
  margin: 0 2px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 340px;
  margin: 18px auto 0 auto;
  z-index: 2;
}
.feature-item {
  background: var(--glass);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(33,150,243,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 8px 12px 8px;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  border: 1.5px solid #e3f2fd;
}
.feature-item:hover {
  box-shadow: 0 6px 18px rgba(33,150,243,0.13);
  transform: translateY(-2px) scale(1.03);
}
.feature-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 7px;
  box-shadow: 0 1px 4px rgba(33,150,243,0.08);
}
.feature-text {
  font-size: 0.98rem;
  color: var(--primary-dark);
  font-weight: 600;
  text-align: center;
}

.loading-section {
  width: 100%;
  margin: 22px 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loading-bar {
  width: 100%;
  max-width: 220px;
  height: 7px;
  background: #e3f2fd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(33,150,243,0.08);
}
.loading-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1976d2 0%, #64b5f6 100%);
  border-radius: 8px;
  animation: loadingBar 2.2s infinite linear;
}
@keyframes loadingBar {
  0% { width: 0%; }
  60% { width: 90%; }
  100% { width: 0%; }
}
.loading-text {
  font-size: 0.93rem;
  color: #1976d2;
  text-align: center;
  font-weight: 500;
  margin: 0;
}

.footer {
  width: 100%;
  text-align: center;
  color: #888;
  background: transparent;
  margin-top: 18px;
  font-size: 0.89rem;
  z-index: 2;
}
.footer-text {
  color: #666;
  font-size: 0.89rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

/* Responsive Breakpoints */
@media (max-width: 600px) {
  .coming-soon-container {
    max-width: 99vw;
    padding: 18px 2vw 10vw 2vw;
    border-radius: 16px;
  }
  .logo-bg {
    width: 80px;
    height: 80px;
  }
  .logo-bg img {
    width: 48px;
    height: 48px;
  }
  .coming-soon-text {
    font-size: 1.35rem;
    margin-bottom: 6px;
  }
  .description {
    font-size: 0.97rem;
    margin-bottom: 10px;
  }
  .countdown-container {
    padding: 10px 2px;
    gap: 0.3rem;
    max-width: 99vw;
  }
  .countdown-item {
    min-width: 38px;
    max-width: 44px;
  }
  .countdown-number-wrapper {
    width: 32px;
    height: 32px;
    font-size: 1.05rem;
  }
  .countdown-label {
    font-size: 0.68rem;
  }
  .features {
    gap: 8px;
    max-width: 99vw;
  }
  .feature-item {
    padding: 12px 2px 8px 2px;
  }
  .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .feature-text {
    font-size: 0.85rem;
  }
  .loading-bar {
    max-width: 140px;
    height: 5px;
  }
  .footer {
    font-size: 0.77rem;
    margin-top: 10px;
  }
  .footer-text {
    font-size: 0.77rem;
  }
}

@media (min-width: 900px) {
  .coming-soon-container {
    max-width: 520px;
    padding: 48px 36px 32px 36px;
    border-radius: 32px;
  }
  .logo-bg {
    width: 140px;
    height: 140px;
  }
  .logo-bg img {
    width: 90px;
    height: 90px;
  }
  .coming-soon-text {
    font-size: 2.8rem;
  }
  .description {
    font-size: 1.18rem;
  }
  .countdown-container {
    max-width: 420px;
    padding: 24px 18px;
    gap: 1.2rem;
  }
  .countdown-item {
    min-width: 64px;
    max-width: 72px;
  }
  .countdown-number-wrapper {
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
  }
  .countdown-label {
    font-size: 1rem;
  }
  .features {
    gap: 22px;
    max-width: 420px;
  }
  .feature-item {
    padding: 28px 12px 18px 12px;
  }
  .feature-icon {
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  .feature-text {
    font-size: 1.18rem;
  }
  .loading-bar {
    max-width: 260px;
    height: 9px;
  }
  .footer {
    font-size: 1.05rem;
    margin-top: 24px;
  }
  .footer-text {
    font-size: 1.05rem;
  }
}
