.custom-video-container {
  position: relative;
  width: 100%;
  /*max-width: 360px;*/ /* max larghezza desktop */
  margin: 20px auto; /* spazio sopra e sotto */
  padding-top: calc(16 / 9 * 100%);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.custom-video-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* MOBILE - video fullscreen senza bordi o scroll */
@media (max-width: 768px) {
  .custom-video-container {
    max-width: 100vw;
    max-height: 100vh;
    padding-top: 0;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .custom-video-container video {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}
