 /* Overlay & popup */
  .overlay-trailer {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    overflow: hidden;
  }

  .vidro-popup {
    width: 60%;
    max-width: 800px;
    padding: 20px;
    border-radius: 16px;
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    position: relative;
    transform: translateY(-100vh);
    opacity: 0;
    transition: all .5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  }

  .vidro-popup.top-mode {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    padding: 12px !important;
  }

     .btn-col button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;   /* ensures no extra space */
    }
    .btn-col button svg {
      width: 24px;
      height: 24px;
    }

  
  .btn-label {
    font-size: 13px;
    font-weight: 600;
  }

  /* Video.js minor polish */
  .video-js.vjs-default-skin {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    overflow: hidden;
  }
  .vjs-control-bar {
    backdrop-filter: blur(6px);
    background: linear-gradient(180deg, rgba(12,14,18,.4), rgba(12,14,18,.65));
  }
  .vjs-big-play-button {
    border:0;
    width:64px;
    height:64px;
    border-radius:999px;
    background: linear-gradient(180deg,#ff2d55,#ff4b2b);
    box-shadow: 0 12px 36px rgba(255,59,48,.15), 0 4px 14px rgba(0,0,0,.35);
  }

  #video-container {
    width: 100%;
    aspect-ratio: 16/9;
    display: none;
    border-radius: 12px;
    overflow: hidden;
  }

  #close-popup {
    position: absolute;
    bottom: -50px;
    font-size: 26px;
    cursor: pointer;
    color: #ff3b3b;
    font-weight: bold;
  }
