
/* PREMIUM UI */
.yt-home{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:12px;
  overflow:hidden;
  background:#000;
}
.yt-home iframe{
  width:100%;
  height:100%;
  border:0;
}
.yt-play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.4);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}
.skeleton{
  background:linear-gradient(90deg,#eee,#f5f5f5,#eee);
  animation:loading 1.2s infinite;
}
@keyframes loading{
  0%{background-position:-200px 0}
  100%{background-position:200px 0}
}
