/* Stitch browser-native live studio */
.cd-stream-preview video[data-cd-live-preview],
.player-shell video[data-stitch-live-viewer]{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain!important;
  background:#000;
}
.cd-stream-preview.is-live-preview img{display:none!important}
.cd-end-stream{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:38px;
  padding:0 12px;
  border:1px solid #6e2026;
  border-radius:5px;
  background:#3e1519;
  color:#ffb0b6;
  font-weight:800;
  cursor:pointer;
}
.cd-end-stream:hover{background:#551b20}
.cd-end-stream svg{width:18px;height:18px;fill:currentColor}
.cd-live-state small{margin-left:6px;color:#adadb8;font-weight:600}
.stitch-studio-toast{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:10000;
  max-width:min(420px,calc(100vw - 36px));
  padding:12px 14px;
  border:1px solid #2f6f9d;
  border-radius:6px;
  background:#10283b;
  color:#e8f6ff;
  font:650 14px/1.4 Inter,ui-sans-serif,system-ui,sans-serif;
  box-shadow:0 12px 30px rgba(0,0,0,.4);
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:.18s ease;
}
.stitch-studio-toast.show{opacity:1;transform:translateY(0)}
.stitch-studio-toast.error{background:#3a1519;border-color:#7c2a31;color:#ffd7da}
.stitch-live-connect,.stitch-live-ended{
  width:100%;
  height:100%;
  min-height:360px;
  background:#050505;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:9px;
  color:#efeff1;
  text-align:center;
}
.stitch-live-connect span,.stitch-live-ended span{color:#adadb8;font-size:13px}
.stitch-live-spinner{
  width:28px;
  height:28px;
  border:3px solid #2b2b31;
  border-top-color:#2f9cff;
  border-radius:50%;
  animation:stitchLiveSpin .7s linear infinite;
}
@keyframes stitchLiveSpin{to{transform:rotate(360deg)}}
@media(max-width:760px){
  .cd-end-stream{width:100%;justify-content:center;margin:10px 0 0}
  .cd-stream-heading{align-items:flex-start;flex-wrap:wrap}
  .stitch-live-connect,.stitch-live-ended{min-height:220px}
}
