body {
  min-height: 100vh;
}

/* ─── PAGE WRAPPER ─── */
.page-wrapper.game-info-page {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}

/* ─── BANNER ─── */
.game-banner {
  width: 100%;
  height: clamp(180px, 30vw, 280px);
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.15);
  background:
    radial-gradient(ellipse 70% 90% at 50% 30%, rgba(0, 229, 255, 0.08) 0%, transparent 70%),
    var(--bg2, #0d1018);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadeUp 0.7s ease both;
}

.game-banner img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.2));
}

/* Some official marks (e.g. Apex's) are near-black and vanish against the
   banner's dark background - give those a light backing plate instead. */
.game-banner.has-logo-plate img {
  background: radial-gradient(circle, #eef1f8 62%, transparent 78%);
  padding: 1.25rem;
}

/* ─── NAME + CREDIT ─── */
.game-info-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1;
  color: var(--text);
  text-align: center;
  margin: 2rem 0 0.5rem;
}

.game-info-credit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 3rem;
}

/* ─── REVIEW ─── */
.game-info-review {
  animation: fadeUp 0.7s ease 0.1s both;
}

.game-info-review .section-label {
  text-align: center;
}

.game-info-mt-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.game-info-review p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.game-info-quote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: rgba(0, 229, 255, 0.05);
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* ─── BACK LINK ─── */
.back-link {
  display: block;
  margin: 2rem 0;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--accent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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