/* GameHub UX overlay — nav, sticky filters, card affordances */
.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  min-height: 44px;
  font-weight: 600;
  cursor: pointer;
}

.games-toolbar {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.visible-count {
  font-size: 0.85rem;
  opacity: 0.75;
  white-space: nowrap;
}

.game-card {
  cursor: pointer;
}

.game-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    font-size: 0.95rem;
  }
  .nav-links.open {
    display: flex;
  }
  .games-toolbar {
    top: 56px;
  }
}
