@font-face {
  font-family: "Yekan";
  src: url("../assets/Yekan.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #030712;
  color: #ffffff;
  font-family: "Yekan", Arial, sans-serif;
  overflow: hidden;
}

.coming-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #030712;
}

.background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(2, 132, 199, 0.08),
      rgba(2, 6, 23, 0.3) 46%,
      rgba(0, 0, 0, 0.58) 100%
    );
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: flex-start;
  justify-content: center;
  padding: 30vh 24px 24px;
  text-align: center;
}

.coming-title {
  margin: 0;
  color: #ffffff;
  font-family: "Yekan", Arial, sans-serif;
  font-size: clamp(36px, 10.8vw, 140px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  text-shadow:
    0 0 80px rgba(255, 255, 255, 0.3),
    0 0 160px rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
  .hero {
    padding-top: 30vh;
  }

  .coming-title {
    font-size: clamp(30px, 9.2vw, 38px);
  }
}

@media (min-width: 640px) {
  .hero {
    padding-top: 28vh;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 25vh;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 23vh;
  }
}
