.public-slots-grid,
#slotsGrid,
#slotGrid,
#publicSlotsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
}

.public-slot-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(16, 18, 27, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.public-slot-image-wrap {
  display: block;
  aspect-ratio: 180 / 236;
  background: rgba(255, 255, 255, 0.04);
}

.public-slot-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.public-slot-info {
  padding: 12px;
}

.public-slot-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.public-slot-title-row h3 {
  min-width: 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
  color: #fff;
}

.slot-provider {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slot-tag-stake {
  flex: 0 0 auto;
  border: 1px solid rgba(0, 255, 140, 0.25);
  border-radius: 999px;
  padding: 3px 7px;
  background: rgba(0, 255, 140, 0.10);
  color: #55f0a3;
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.slot-empty-state {
  grid-column: 1 / -1;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.slot-empty-state h3 {
  margin: 0 0 8px;
  color: #fff;
}
