/* ═══════════════════════════════════════════════
   ŻeloTV — Home Page
   Stream grid · stream cards · empty state
   ═══════════════════════════════════════════════ */

.home-content { padding: 24px 32px; max-width: 1200px; margin: 0 auto; width: 100%; }
.home-section { margin-bottom: 32px; }
.section-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--live-red);
}
.live-pulse { animation: pulse 2s ease-in-out infinite; }
.section-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); }

.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.stream-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  display: block;
  animation: fadeUp .3s ease both;
}
.stream-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,91,245,0.08);
  text-decoration: none;
}
.sc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.sc-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.sc-info { flex: 1; min-width: 0; }
.sc-name { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-clan {
  display: inline-block; font-size: 10px; font-weight: 700;
  color: var(--accent); margin-left: 6px;
}
.sc-title {
  font-size: 13px; color: var(--text-dim); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.sc-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.sc-viewers {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--text-dim);
}
.sc-viewers svg { width: 14px; height: 14px; }
.sc-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--live-red);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--live-red);
}

/* "Nobody is live" — center it */
.home-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; width: 100%;
  height: 100%; min-height: calc(100vh - var(--navbar-h) - 40px);
  color: var(--text-muted);
  animation: fadeUp .4s ease both;
}
.home-empty svg { margin-bottom: 16px; opacity: 0.3; }
.home-empty p { font-size: 16px; font-weight: 500; color: var(--text-dim); margin-bottom: 4px; }
.home-empty-hint { font-size: 13px; }
