/* Local VSL player — full frame (no bottom crop / subtitles) */
#container_video{
  position:relative;
  z-index:2;
  /* Keep 9:16 always: never flatten via max-height alone (iOS crops bottom) */
  width:min(420px, 100%, calc(85vh * 9 / 16));
  margin:0 auto;
  background:#000;
  overflow:hidden;
  aspect-ratio:9/16;
  height:auto;
  max-height:none;
}
#container_video.player-done{display:none}
.vsl-player{
  position:relative;
  width:100%;
  height:100%;
  background:#000;
}
.vsl-player video{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  background:#000;
  pointer-events:none;
}
.vsl-overlay{
  position:absolute;
  inset:0;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:rgba(0,0,0,.35);
}
.vsl-overlay.hidden{display:none}
.vsl-cta{
  width:min(324px,86%);
  min-height:180px;
  padding:18px 14px 20px;
  border-radius:6px;
  border:1.5px solid #fff;
  background:rgba(46,161,24,.72);
  color:#fff !important;
  text-align:center;
  box-sizing:border-box;
  animation:vsl-pulse 1s ease-in-out infinite;
}
.vsl-cta__title,
.vsl-cta__sub{
  margin:0;
  font-size:20px;
  font-weight:700;
  line-height:1.25;
  color:#fff !important;
  font-family:Roboto,"Segoe UI",system-ui,Arial,sans-serif;
}
.vsl-cta__title{margin:0 0 14px}
.vsl-cta__icon{
  width:72px;
  height:72px;
  margin:0 auto 14px;
  display:block;
}
@keyframes vsl-pulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.045)}
}
.vsl-fakebar{
  position:absolute;
  left:0;
  bottom:0;
  height:3px;
  width:0%;
  background:#c10606;
  z-index:6;
  pointer-events:none;
  transition:width .15s linear;
}
.vsl-missing{
  position:absolute;
  inset:0;
  z-index:7;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  text-align:center;
  color:#fff;
  background:#111;
  font-family:Roboto,"Segoe UI",system-ui,Arial,sans-serif;
  font-size:16px;
  line-height:1.45;
}
.vsl-missing.show{display:flex}
#order{display:none;margin:1rem auto 0;max-width:600px}
@media (max-width:600px){
  #container_video{
    width:min(100%, calc(78vh * 9 / 16));
  }
}
