@font-face {
  font-family: "Fivo Sans";
  src: url("fivo-sans.regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* @font-face {
  font-family: "Fivo Sans";
  src: url("fivo-sans.medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Fivo Sans", sans-serif;
  background: url("./TNQ-Coming-soons-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.main-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  letter-spacing: -1.92px;
}

.line-1,
.line-2 {
  display: block;
}

.highlight {
  background: linear-gradient(90deg, #66b5ff 27.28%, #b37ef4 118.19%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Fivo Sans";
  letter-spacing: -1.92px;
}

.description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: #2a2a2a;
  max-width: 600px;
  margin: 0 auto;
}

.status {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #1a1a1a;
  margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content {
    gap: 1.5rem;
  }

  .main-heading {
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .content {
    gap: 1rem;
  }
}
