.gameguide-hero {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.gameguide-hero__lead {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.gameguide-hero__header {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.gameguide-hero__header img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 24px -18px rgba(0, 0, 0, 0.8);
}

.gameguide-hero__header h1 {
  margin: 0;
}

.gameguide-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gameguide-gallery {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gameguide-screenshot {
  margin: 0;
}

.gameguide-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gameguide-screenshot img[src=""],
.gameguide-screenshot img:not([src]) {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  min-height: 200px;
}

.gameguide-screenshot img[src=""]::before,
.gameguide-screenshot img:not([src])::before {
  content: "Screenshot placeholder";
  color: var(--color-text-muted);
  font-size: 0.9rem;
  opacity: 0.5;
}

.gameguide-screenshot__caption {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.gameguide-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.page-footer {
  margin-top: 2rem;
  padding: 1.5rem 0 2.5rem;
  color: var(--color-text-muted);
}

.page-footer__inner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.page-footer__inner a {
  color: var(--color-primary);
  text-decoration: none;
}

.page-footer__inner a:hover {
  text-decoration: underline;
}

.card a {
  color: var(--color-accent-2);
  text-decoration: underline;
}

.card a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

@media (max-width: 1150px) {
  .gameguide-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gameguide-gallery {
    grid-template-columns: 1fr;
  }
}

