/* Game page — extends styles.css */
.game-hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.game-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.game-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--bg) 95%);
}

.game-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.breadcrumb {
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--text);
}

.game-hero__logo {
  display: block;
  max-width: 56px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.35);
}

.game-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.game-hero__tagline {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 42ch;
}

.game-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
