.games-hero-mosaic {
  padding: 48px 24px;
  position: relative;
  z-index: 1;
}

.games-hero-mosaic-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.games-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.games-mosaic-grid img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--border);
}

.games-mosaic-grid img:first-child {
  grid-row: span 2;
  max-height: 332px;
}

.games-content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  position: relative;
  z-index: 1;
}

.games-hero-mosaic-inner h1 {
  font-size: 2rem;
  color: var(--analog-tech-cream);
}

.games-hero-lead {
  color: var(--muted);
  margin-top: 12px;
}

.games-content-wrap h1 {
  font-size: 2rem;
  color: var(--analog-tech-cream);
  margin-bottom: 20px;
}

.games-content-wrap h2 {
  font-size: 1.3rem;
  color: var(--muted);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.games-content-wrap p {
  color: rgba(253, 242, 248, 0.85);
  margin-bottom: 16px;
}

.games-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: var(--surface);
  border-radius: 20px;
}

.games-stat-band div {
  text-align: center;
}

.games-stat-band strong {
  display: block;
  font-size: 1.4rem;
  color: var(--retro-teal);
  font-family: Georgia, serif;
}

.games-stat-band span {
  font-size: 0.8rem;
  color: var(--muted);
}

.games-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.games-table th,
.games-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}

.games-table th {
  background: var(--surface);
  color: var(--muted);
}

.games-table td {
  color: rgba(253, 242, 248, 0.85);
}

@media (max-width: 768px) {
  .games-hero-mosaic-inner {
    grid-template-columns: 1fr;
  }

  .games-stat-band {
    grid-template-columns: 1fr;
  }

  .games-mosaic-grid,
  .games-mosaic-grid img {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .games-hero-mosaic,
  .games-content-wrap {
    overflow-x: hidden;
    max-width: 100%;
  }

  .games-mosaic-grid img {
    max-height: 240px;
  }
}
