/* Coming Soon Page Specific Styles */
.coming-soon-page {
  background: 
    linear-gradient(135deg, rgba(6, 10, 15, 0.92), rgba(6, 10, 15, 0.98)),
    url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-soon-page .cs-nav-wrapper {
  background: transparent;
  border-bottom: none;
  position: absolute;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cs-nav {
  justify-content: space-between;
}

.cs-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; 
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

/* Glassmorphism ambient lights */
.cs-hero::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 20%;
  width: 350px;
  height: 350px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.cs-hero::after {
  content: "";
  position: absolute;
  bottom: 0%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: var(--green); 
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.cs-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.cs-kicker {
  display: inline-block;
  background: rgba(245, 198, 44, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 198, 44, 0.2);
  margin-bottom: 2rem;
}

.cs-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #c2d1df);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.cs-subtitle {
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto 3rem;
  color: #98a8b9;
}

/* Countdown Styles */
.cs-countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.cs-time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(17, 24, 35, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  min-width: 110px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.cs-time-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.cs-time {
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.3rem;
}

.cs-label {
  font-size: 0.8rem;
  color: #98a8b9;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

/* Subscription Form Style Override */
.cs-form {
  max-width: 480px;
  margin: 0 auto 3.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 8px;
  transition: border-color 0.3s ease;
}

.cs-form:focus-within {
  border-color: rgba(245, 198, 44, 0.4);
}

.cs-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 1.5rem;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.cs-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cs-form button {
  background: var(--yellow);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.cs-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 198, 44, 0.3);
  background: #f1bf15;
}

.cs-form button .btn-icon {
  background: #000;
  color: var(--yellow);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social Links */
.cs-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.cs-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.cs-social a:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
  transform: translateY(-4px) scale(1.05);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .cs-title {
    font-size: 3rem;
  }

  .cs-countdown {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .cs-time-box {
    min-width: 90px;
    padding: 1.2rem 0.5rem;
  }
  
  .cs-time {
    font-size: 2.2rem;
  }
  
  .cs-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }
  
  .cs-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 1.2rem 1.5rem;
  }
  
  .cs-form button {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .cs-nav .phone {
    display: none;
  }
  
  .cs-title {
    font-size: 2.4rem;
  }
  
  .cs-subtitle {
    font-size: 1rem;
  }

  .cs-countdown {
    gap: 0.8rem;
  }

  .cs-time-box {
    min-width: calc(50% - 0.4rem);
  }
}
