body {
  padding: 0;
  margin: 0;
  background-color: #0e1528;
  color: white;
  font-family: "SF Pro Display", Arial, sans-serif;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
.countdown {
  font-size: clamp(2rem, 8vw, 8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.countdown-labels {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  font-size: clamp(0.8rem, 2vw, 1rem);
}
.countdown-table {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 15vw, 200px);
  margin-bottom: 60px;
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  table-layout: fixed;
}

.countdown-table td {
  width: 14.28%; /* 100% / 7 cells */
  text-align: center;
  white-space: nowrap;
}

.countdown-table .separator {
  width: 5%;
}

.countdown span {
  font-weight: bold;
}

.countdown-labels td {
  text-transform: uppercase;
  text-align: center;
}


.coming-soon {
  background: linear-gradient(304.52deg, #b700ed 16.79%, #2863ec 70.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.cta-section {
  text-align: center;
  margin-bottom: 40px;
}
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(304.52deg, #b700ed 16.79%, #2863ec 70.85%);
  border-radius: 100px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
}
.description-title {
  text-align: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.description {
  text-align: justify;
  color: var(--Neutral-Light-Text, #7d8fb3);
  font-weight: 400;
}
.ps {
  color: white;
  text-align: center;
  margin-bottom: 40px;
}
.email-signup {
  display: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.email-input {
  padding: 10px;
  width: 60%;
  max-width: 300px;
}
.join-button {
  padding: 10px 20px;
  background-color: #2863ec;
  color: white;
  border: none;
  cursor: pointer;
}
.copyright {
  text-align: center;
  color: #7d8fb3;
  font-size: 0.9rem;
}
.email-input {
  background-color: transparent;
  border: none;
  border-bottom: 0.5px solid var(--Neutral-Light-Text, #7d8fb3);
  color: white;
  outline: none;
}
.join-button {
  background-color: transparent;
  border: none;
  color: #2863ec;
  border-bottom: 0.5px solid var(--Neutral-Light-Text, #7d8fb3);
  cursor: pointer;
}

.logo-img {
  display: block;
  margin: 0;
  max-width: 200px; /* Adjust this value as needed */
  height: auto;
  margin-top: 60px;
  margin-bottom: 40px;
  margin-left: 0; /* Aligns to the left */
}
@media (max-width: 768px) {
  .countdown {
    font-size: 2rem;
  }
  .coming-soon {
    font-size: 2rem;
  }
}