/* Game detail — stage dossier layout */
.page-game {
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(0, 183, 199, 0.08), transparent 55%),
    var(--chalk);
}

.page-game .gm-hero {
  background:
    linear-gradient(135deg, #0e1014 0%, #1a2230 55%, #0e1014 100%);
  color: #fff;
  padding: 1.75rem 0 2.35rem;
  position: relative;
  overflow: hidden;
}

.gm-hero__watermark {
  position: absolute;
  right: -4%;
  bottom: -8%;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 16vw, 7rem);
  color: rgba(255, 214, 10, 0.06);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  margin: 0;
}

.gm-hero__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}

.gm-hero__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.gm-hero__cat {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.28rem 0.65rem;
  background: var(--signal);
  color: var(--asphalt);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gm-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5.2vw, 2.25rem);
  color: var(--signal);
  margin: 0 0 0.75rem;
  max-width: 22ch;
  line-height: 1.12;
}

.gm-hero__desc {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  max-width: 40rem;
}

.gm-facts {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0.9rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  border-top: 2px solid rgba(255, 214, 10, 0.35);
  border-bottom: 2px solid rgba(255, 214, 10, 0.35);
}

.gm-facts li {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gm-facts span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.48);
}

.gm-facts strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
}

.gm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.gm-hero__time {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.gm-hero__icon {
  width: min(140px, 40vw);
  margin-inline: auto;
  background: var(--signal);
  padding: 0.7rem;
  transform: rotate(3deg);
  box-shadow: -10px 10px 0 rgba(0, 183, 199, 0.45);
  text-align: center;
}

.gm-hero__icon img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--asphalt);
}

.gm-hero__icon span {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--asphalt);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Section heads */
.gm-section {
  padding: 2.5rem 0;
}

.gm-section--stage {
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 18px,
      rgba(18, 20, 24, 0.035) 18px,
      rgba(18, 20, 24, 0.035) 19px
    ),
    var(--panel);
}

.gm-section--ink {
  background: var(--asphalt);
  color: #fff;
}

.gm-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  margin-bottom: 1.35rem;
  max-width: 46rem;
}

.gm-head__no {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.8rem);
  line-height: 0.85;
  color: var(--cyan);
}

.gm-head--on-dark .gm-head__no {
  color: var(--signal);
}

.gm-head__kicker {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal-deep);
}

.gm-head--on-dark .gm-head__kicker {
  color: var(--cyan);
}

.gm-head--light .gm-head__kicker {
  color: rgba(255, 214, 10, 0.9);
}

.gm-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4.2vw, 1.85rem);
  margin: 0 0 0.45rem;
  color: var(--asphalt);
  line-height: 1.15;
}

.gm-head--on-dark h2,
.gm-head--light h2 {
  color: #fff;
}

.gm-head__lead {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
}

.gm-head--on-dark .gm-head__lead,
.gm-head--light .gm-head__lead {
  color: rgba(255, 255, 255, 0.68);
}

.gm-article p,
.gm-prose p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.75;
}

.gm-section--ink .gm-prose p {
  color: rgba(255, 255, 255, 0.82);
}

.gm-article p:last-child,
.gm-prose p:last-child {
  margin-bottom: 0;
}

.gm-article strong {
  font-weight: 800;
  color: var(--asphalt);
  background: linear-gradient(180deg, transparent 60%, rgba(255, 214, 10, 0.45) 60%);
}

/* Screenshot after text1 */
.gm-shot {
  padding: 2.25rem 0 2.5rem;
  background: #151820;
  color: #fff;
}

.gm-shot__frame {
  margin: 0;
  position: relative;
}

.gm-shot__frame::before {
  content: "";
  position: absolute;
  inset: -0.55rem;
  border: 2px dashed rgba(255, 214, 10, 0.35);
  pointer-events: none;
}

.gm-shot__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
  background: #0b0d11;
  position: relative;
}

.gm-shot__frame figcaption {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  border-left: 3px solid var(--signal);
  padding-left: 0.75rem;
}

/* Timeline updates */
.gm-timeline {
  display: grid;
  gap: 1.25rem;
  position: relative;
}

.gm-timeline__item {
  padding: 1.15rem 0 0.25rem;
  border-top: 3px solid var(--asphalt);
  min-width: 0;
}

.gm-timeline__badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.5rem;
  background: var(--asphalt);
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gm-timeline__badge--muted {
  background: transparent;
  color: var(--mute);
  border: 2px solid var(--line);
}

.gm-timeline h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin: 0 0 0.35rem;
}

.gm-timeline__sub {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--mute);
}

/* Pros / cons balance */
.gm-balance {
  display: grid;
  gap: 1.35rem;
}

.gm-balance__side {
  min-width: 0;
  padding-top: 1rem;
  border-top: 4px solid var(--cyan-deep);
}

.gm-balance__side--warn {
  border-top-color: var(--signal-deep);
}

.gm-balance h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}

.gm-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gm-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.55rem;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-size: 0.95rem;
}

.gm-list--plus li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0.65rem;
  font-weight: 800;
  color: var(--cyan-deep);
}

.gm-list--minus li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0.65rem;
  font-weight: 800;
  color: var(--signal-deep);
}

/* Voices / reviews */
.gm-voices {
  display: grid;
  gap: 1rem;
}

.gm-voice {
  margin: 0;
  padding: 1rem 0 1.1rem;
  border-top: 2px solid rgba(255, 214, 10, 0.45);
}

.gm-voice__who {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
}

.gm-voice__who span {
  display: inline-block;
  margin-right: 0.45rem;
  color: var(--signal);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-game .gm-section .qa {
  border-color: var(--asphalt);
}

.gm-final {
  margin-top: 1.75rem;
  padding: 1.5rem 0 0;
  border-top: 4px solid var(--asphalt);
}

.gm-related {
  margin: 0 0 2rem;
}

.gm-related__grid {
  margin-top: 0.25rem;
}

.gm-related__more {
  margin: 1rem 0 0;
  text-align: center;
}

.gm-related__more a {
  font-weight: 700;
  color: var(--cyan-deep);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.gm-final__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}

.gm-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.8vw, 1.6rem);
  margin: 0 0 0.5rem;
}

.gm-final p {
  margin: 0 0 1rem;
  color: var(--mute);
}

@media (min-width: 720px) {
  .gm-hero__grid {
    grid-template-columns: 1.4fr auto;
    gap: 2.25rem;
  }

  .gm-hero__icon {
    margin-inline: 0;
  }

  .gm-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gm-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }

  .gm-timeline__item {
    border-top: 0;
    padding-top: 0;
    border-left: 4px solid var(--asphalt);
    padding-left: 1.15rem;
  }

  .gm-balance {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .gm-voices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .gm-voice {
    border-top: 0;
    border-left: 3px solid rgba(255, 214, 10, 0.45);
    padding: 0 0 0 1rem;
  }

  .gm-final {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem 1.5rem;
    align-items: center;
  }

  .gm-final .btn {
    grid-row: span 3;
    justify-self: end;
  }
}
