/* game.taptaptyping.com — hub list + shared game HUD styles.
   Palette matches the main site's existing theme (navigationbar.html / footer.html):
   teal #0d6073, gold #ffd700. */

.game-hub-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-left: 5px solid #0d6073;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  color: #212529;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.game-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 96, 115, 0.15);
  color: #212529;
}

.game-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d6073, #114a5a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.game-info {
  min-width: 0;
}

.game-title {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.game-desc {
  margin: 0 0 0.4rem;
  color: #6c757d;
  font-size: 0.92rem;
}

.game-category-badge {
  background: #ffd700;
  color: #212529;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 999px;
}

.game-arrow {
  color: #0d6073;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── shared in-game HUD (game_base.html) ───────────────────── */

.game-hud {
  background: #f1f6f7;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-weight: 600;
}

.hud-stat {
  color: #0d6073;
}

.hud-hearts {
  color: #e63946;
  letter-spacing: 2px;
}

/* ── pagination (Back / numbered / Next) ───────────────────── */

.pagination .page-link {
  color: #0d6073;
}

.pagination .page-item.active .page-link {
  background-color: #0d6073;
  border-color: #0d6073;
}
