.gameTile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  text-decoration: none;
}

.gameTile h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.gameTile p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.gameTile span {
  color: var(--yellow);
  font-weight: 900;
  white-space: nowrap;
}

.gameTile:hover {
  border-color: var(--yellow);
}