body {
  overflow: auto;
}

/* ---- Game Grid ---- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0;
  padding: 0 60px 60px;
  background: var(--bg);
  min-height: calc(100vh - 150px);
  align-content: start;
}

.game-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  aspect-ratio: 1;
  background: var(--bg-elevated);
  border: 1px solid #ffffff;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.game-tile:hover {
  background: var(--bg-hover);
  box-shadow: var(--shadow);
}

.game-tile-name {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text);
}

/* ---- Mobile ---- */
@media (max-width: 999px) {
  .game-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 30px;
  }
  .game-tile {
    aspect-ratio: auto;
    padding: 30px;
  }
  .game-tile-name { font-size: 2rem; }
}
