:root {
  --text: #ffffff;
  --bg-base: #0f1218;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-base);
}

img {
  display: block;
  max-width: 100%;
}

.coming-soon-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: var(--bg-base);
  background-image: url("/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.5) 0%, rgba(6, 8, 12, 0.72) 100%),
    radial-gradient(circle at 50% 38%, rgba(14, 176, 166, 0.08), transparent 28%),
    rgba(5, 7, 10, 0.42);
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  color: var(--text);
  animation: fade-in 900ms ease-out both;
}

.coming-soon-logo {
  width: min(360px, 62vw);
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.28));
}

.coming-soon-content h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .coming-soon-content {
    width: min(100% - 24px, 760px);
    gap: 18px;
  }

  .coming-soon-logo {
    width: min(260px, 70vw);
  }

  .coming-soon-content h1 {
    letter-spacing: 0.12em;
  }
}
