/* In-app splash / loading overlay (optional)
   - Does NOT affect the feed logic.
   - Displayed only when enabled from admin.
*/
.xplay-loop-boot{
  position:fixed;
  inset:0;
  z-index:999999;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}
.xplay-loop-boot.is-visible{
  opacity:1;
  pointer-events:auto;
}
.xplay-loop-boot__inner{
  width:min(44vw, 220px);
  max-width:220px;
  padding:16px;
}
.xplay-loop-boot__img{
  width:100%;
  height:auto;
  display:block;
}
