/* Template embed: solo il player, nessuna UI dell'app.
   Pronto per essere messo in un iframe: il video riempie tutto il viewport. */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%; height: 100%;
  background: #000; overflow: hidden;
}
video {
  width: 100vw; height: 100vh;
  display: block; background: #000;
  object-fit: contain;
}
