.game-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  color: #fffaf0;
  background:
    linear-gradient(135deg, rgba(18, 108, 114, 0.96), rgba(37, 35, 33, 0.96)),
    #126c72;
  cursor: pointer;
}

.game-intro::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.game-intro.is-leaving {
  opacity: 0;
  transition: opacity 180ms ease;
}

.game-intro-card {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(720px, 100%);
  text-align: center;
}

.game-intro-kicker,
.game-intro-action {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.game-intro-kicker {
  color: #f3c75c;
}

.game-intro-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 9vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.game-intro-copy {
  width: min(620px, 100%);
  margin: 0 auto;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.game-intro-action {
  justify-self: center;
  min-width: min(100%, 190px);
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  color: #172027;
  background: #f3c75c;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.22);
}

.game-intro:focus-visible .game-intro-action {
  outline: 4px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}

@media (max-width: 560px) {
  .game-intro::before {
    inset: 10px;
  }

  .game-intro-card {
    gap: 14px;
  }
}
