/* ===== MARKETPLACE "ALL GAMES" OVERRIDES =====
   The wallet page changed .project-card to use big-icon collection-card
   style.  The marketplace "All Games" section keeps the original compact
   colored-card design with small avatars.  These rules sit AFTER
   wallet-project-selector.css so they win by specificity / order.
   ========================================================= */

/* ── Card container ── */
.project-card {
  min-height: auto;
  align-items: center;
  padding: 1rem 1.25rem;
  gap: 1rem;
  background: linear-gradient(135deg, var(--card-grad-start, rgba(74,158,255,0.15)), var(--card-grad-end, rgba(42,42,58,0.95)));
  border-color: var(--card-border, #3a3a4a);
}

.project-card::before {
  background: linear-gradient(135deg, var(--card-grad-start, rgba(74,158,255,0.1)) 0%, transparent 100%);
  opacity: 0.4;
}

.project-card:hover {
  border-color: var(--card-accent, #4a9eff);
  background: linear-gradient(135deg, var(--card-grad-start, rgba(74,158,255,0.2)), var(--card-grad-end, rgba(42,42,58,0.98)));
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--card-accent, #4a9eff);
}

/* ── Avatar: compact 48px ── */
.project-avatar {
  width: 48px;
  height: 48px;
  align-self: center;
  border-radius: 10px;
  font-size: 1rem;
}

/* ── Grid: slightly smaller cards ── */
.projects-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
