.coming-soon-page {
  margin: 0;
  padding: 0;
  height: 100vh;
  max-height: 100vh;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.coming-soon-container {
  width: 100%;
  max-width: 1400px;
  /* increased max-width for better breathing room */
  height: 100vh;
  max-height: 100vh;
  padding: 6vh 20px;
  /* Dynamic vertical padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* This does the dynamic spreading */
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}

.coming-soon-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.coming-soon-top-logo {
  margin-bottom: 16px;
  flex-shrink: 0;
}

.coming-soon-logo-img {
  height: 30px;
  width: auto;
  max-width: 100%;
}

.coming-soon-tagline {
  color: var(--mb);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 540;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.coming-soon-cards {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  flex-wrap: nowrap;
  width: 100%;
  flex-shrink: 1;
}

.coming-soon-card {
  width: 262px;
  height: 398px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.coming-soon-card-center {
  width: 304px;
  height: 461px;
  z-index: 2;
}

.coming-soon-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.coming-soon-card-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.coming-soon-card-center .coming-soon-card-content {
  color: #1a1a1a;
}

.coming-soon-card-center .coming-soon-card-subtitle {
  text-align: center;
  color: var(--mb);
}

.coming-soon-card-center .coming-soon-explore-btn {
  color: var(--mb);
  border-color: var(--mb);
}

.coming-soon-card-center .coming-soon-explore-arrow {
  filter: brightness(0) saturate(100%) invert(0%);
}

.coming-soon-card-center .coming-soon-explore-btn:hover .coming-soon-explore-arrow {
  filter: brightness(0) saturate(100%) invert(100%);
}

.coming-soon-card-logo {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-card-logo img {
  height: 28px;
  width: auto;
  max-width: 100%;
}

.coming-soon-card-logo-main img {
  height: 28px;
  width: auto;
  max-width: 100%;
}

.coming-soon-card-subtitle {
  font-family: var(--font-sans);
  color: var(--shw);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin: 0;
  font-weight: 540;
  text-transform: uppercase;
}

.coming-soon-card-content {
  transition:
    opacity 0.3s ease,
    filter 0.3s ease;
}

.coming-soon-card:hover .coming-soon-card-content {
  opacity: 0;
  filter: blur(4px);
}

.coming-soon-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.coming-soon-card:hover .coming-soon-card-overlay {
  opacity: 1;
}

.coming-soon-explore-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 540;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--shw);
  border-radius: 3px;
  background: transparent;
  color: var(--shw);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-explore-btn:hover {
  background: var(--mb);
  border-color: var(--mb);
  color: #fff;
}

.coming-soon-explore-arrow {
  width: 14px;
  height: 10px;
  margin-left: 8px;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(100%);
}

.coming-soon-bottom-logo {
  margin-bottom: 8px;
  flex-shrink: 0;
}

.coming-soon-logo-img-bottom {
  height: 30px;
  width: auto;
  max-width: 100%;
}

.coming-soon-launch {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2.5px;
  color: #1a1a1a;
  margin: 0;
  flex-shrink: 0;
  font-weight: 500;
}

@media (max-width: 1300px) {
  .coming-soon-card {
    width: 225px;
    height: 342px;
  }

  .coming-soon-card-center {
    width: 261px;
    height: 396px;
  }
}

@media (max-width: 768px) {
  .coming-soon-page {
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-y: auto;
  }

  .coming-soon-container {
    padding: 40px 20px;
    height: auto;
    min-height: 100vh;
    max-height: none;
    justify-content: flex-start;
    gap: 30px;
  }

  .coming-soon-logo-img {
    height: 24px;
  }

  .coming-soon-tagline {
    font-size: 11px;
    margin-bottom: 0;
    line-height: 20px;
  }

  .coming-soon-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    flex-wrap: wrap;
  }

  .coming-soon-card {
    width: 280px;
    height: 380px;
  }

  .coming-soon-card-center {
    width: 300px;
    height: 420px;
  }

  .coming-soon-card-logo img {
    height: 24px;
  }

  .coming-soon-card-logo-main img {
    height: 28px;
  }

  .coming-soon-card-subtitle {
    font-size: 9px;
    letter-spacing: 0.8px;
  }

  .coming-soon-explore-btn {
    font-size: 11px;
    padding: 10px 24px;
  }

  .coming-soon-launch {
    font-size: 11px;
  }

  .coming-soon-logo-img-bottom {
    height: 24px;
  }
}