/* ── Twitch player on home screen ── */
.twitch-player-section{
  margin-top:.65rem;
  border-radius:1.25rem;
  overflow:hidden;
  border:1px solid rgba(145,71,255,.3);
  background:rgba(145,71,255,.06);
}
.twitch-player-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:.65rem .85rem;
  border-bottom:1px solid rgba(145,71,255,.15);
}
.twitch-player-label{
  display:flex;align-items:center;gap:.45rem;
  font-size:.82rem;font-weight:900;color:#bf94ff;
}
.twitch-player-label .live-dot{
  background:#9147ff;
  box-shadow:0 0 6px rgba(145,71,255,.8);
}
.twitch-open-btn{
  padding:.35rem .75rem;
  border-radius:999px;
  border:1px solid rgba(145,71,255,.3);
  background:rgba(145,71,255,.12);
  color:#bf94ff;
  font-size:.72rem;font-weight:900;
  text-decoration:none;
  transition:all .18s;
}
.twitch-open-btn:hover{background:rgba(145,71,255,.22);border-color:rgba(145,71,255,.5)}
.twitch-player-wrap{
  position:relative;
  width:100%;
  padding-bottom:56.25%; /* 16:9 */
  height:0;
  overflow:hidden;
}
.twitch-iframe{
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  border:0;
}
