/* ===== STREAM PAGE SPECIFIC STYLES ===== */

/* Hero section (16:9 aspect ratio) */
.hero {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(500px 200px at 20% 35%, rgba(168, 85, 247, .3), transparent 60%),
    radial-gradient(420px 200px at 80% 20%, rgba(6, 182, 212, .25), transparent 60%),
    linear-gradient(145deg, rgba(168, 85, 247, .12), rgba(99, 102, 241, .1), rgba(59, 130, 246, .08)),
    #1a1330;
}

.hero .label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .08);
  font-weight: 700;
  font-size: 13px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stream title styling */
.title {
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.25;
}

/* Sidebar specific styles */
.side .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
}

.side .head h3 {
  margin: 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.panel > div {
  margin: 1rem 0;
}