.play-landing-box {
  max-width: 980px;
}

.play-landing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
}

.play-eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.play-settings-button {
  flex: 0 0 auto;
  min-width: 140px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.play-game-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.play-game-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px;
  border-radius: 20px;
  background: var(--item-bg);
  border: 1px solid var(--item-border);
  box-shadow: inset 0 1px 0 var(--service-row-inset);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.12s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.play-game-row:hover,
.play-game-row:focus-visible {
  transform: translateY(-1px);
  border-color: var(--menu-hover-border);
  box-shadow:
    0 0 20px var(--menu-glow),
    inset 0 1px 0 var(--service-row-inset);
  outline: none;
}

.play-cover-wrap {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--item-border);
  background: var(--panel);
  box-shadow: 0 10px 24px var(--shadow-soft);
}

.play-cover-wrap img,
.play-cover-missing {
  width: 100%;
  height: 100%;
  display: block;
}

.play-cover-wrap img {
  object-fit: cover;
}

.play-cover-missing {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 2rem;
  font-weight: 800;
}

.play-game-details h3 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.play-game-details p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  line-height: 1.5;
}


.play-empty-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--item-bg);
  border: 1px solid var(--item-border);
}

.play-empty-card h3 {
  margin: 0 0 8px;
}

.play-empty-card p {
  margin: 0;
  max-width: none;
}

.play-empty-card code {
  color: var(--text);
  word-break: break-word;
}

@media (max-width: 720px) {
  .play-landing-header {
    flex-direction: column;
    align-items: stretch;
  }

  .play-settings-button {
    width: 100%;
  }

  .play-game-row {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
  }

  .play-cover-wrap {
    width: 76px;
    height: 76px;
    border-radius: 16px;
  }
}
