.game-intro-active > *:not(.game-intro-overlay) {
  filter: blur(7px);
  transition: filter 0.2s ease;
}

.game-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(12, 13, 14, 0.72);
  color: #2d2922;
}

.game-intro-card {
  width: min(520px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  background: #eee9df;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.game-intro-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: #d8d2c6;
}

.game-intro-body {
  padding: 18px 28px 22px;
}

.game-intro-specialty {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #dbe8d2;
  color: #35684f;
  font-size: 13px;
  font-weight: 800;
}

.game-intro-title {
  margin: 0 0 12px;
  color: #2b261f;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.15;
}

.game-intro-text {
  margin: 0 auto 18px;
  max-width: 44ch;
  color: #796c5c;
  font-size: 16px;
  line-height: 1.45;
}

.game-intro-button {
  min-height: 44px;
  padding: 12px 20px;
  border: 0;
  border-radius: 11px;
  background: #c89422;
  color: #16120b;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.game-intro-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

@media (max-width: 560px) {
  .game-intro-overlay {
    align-items: flex-end;
    padding: 10px;
  }

  .game-intro-card {
    border-radius: 14px;
  }

  .game-intro-body {
    padding: 16px 18px 18px;
  }
}
