.directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.directory-refresh {
  border: 1px solid #33334d;
  background: #11111e;
  color: #c8c8d8;
  border-radius: 9px;
  padding: 9px 13px;
  font-weight: 700;
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 390px), 1fr));
  gap: 18px;
}

.stream-card {
  overflow: hidden;
  border: 1px solid #333159;
  border-radius: 16px;
  background: #10101e;
  scroll-margin-top: 100px;
}

.stream-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050509;
  object-fit: contain;
}

.stream-card-body { padding: 18px 20px; }
.stream-card h2 { font: 600 1.3rem 'Space Grotesk'; margin: 10px 0 3px; }
.stream-card p { margin: 0; color: var(--muted); }

.network-pill {
  display: inline-flex;
  padding: 7px 9px;
  border: 1px solid #4d4a82;
  border-radius: 20px;
  color: #bbb8ff;
  background: #1a1831;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.primary:disabled,
.secondary:disabled { opacity: .55; cursor: wait; }

@media (max-width: 650px) {
  .directory-head { align-items: center; }
  .directory-refresh { padding: 8px 10px; }
}
