.hero-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(650px, 88vh, 940px);
  overflow: hidden;
  background: #07120f;
}

.hero-banner__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.hero-banner__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(1, 7, 6, 0.72) 0%, rgba(1, 7, 6, 0.22) 26%, rgba(1, 7, 6, 0.16) 52%, rgba(1, 7, 6, 0.68) 79%, #07120f 100%),
    linear-gradient(90deg, rgba(1, 7, 6, 0.18), transparent 30%, transparent 70%, rgba(1, 7, 6, 0.18));
}

.hero-banner__content {
  display: flex;
  min-height: inherit;
  padding-top: calc(var(--header-height) + clamp(36px, 5vh, 64px));
  padding-bottom: clamp(60px, 8vh, 94px);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.game-title {
  max-width: 18ch;
  margin-inline: auto;
  color: #fff;
  font-size: var(--step-4);
  font-weight: 950;
  letter-spacing: 0.045em;
  line-height: 0.96;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.68), 0 1px 0 rgba(0, 0, 0, 0.72);
}

.hero-banner__message {
  display: flex;
  width: min(100%, 880px);
  margin-top: clamp(100px, 25vh, 280px);
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.82);
}

.hero-tagline {
  max-width: 20ch;
  color: #fff;
  font-size: var(--step-3);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--step-1);
  font-weight: 600;
}

.hero-banner__message .button {
  margin-top: 8px;
  text-shadow: none;
}

.world-section {
  background: #081511;
}

.world-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(280px, 44vw);
  height: 1px;
  transform: translateX(-50%);
  background: var(--color-line-strong);
}

.team-section {
  background: #06110e;
}

.email-section {
  background: #0a1713;
}

.updates-content {
  text-align: center;
}
