    /* Убираем все внутренние тени у элементов Plyr */
    .plyr__control {
        box-shadow: none !important;
    }
    
    /* Делаем фон панели управления прозрачным */
    .plyr__controls {
        background: var(--plyr-video-controls-background, linear-gradient(#0000, #3eb2bc)) !important; /* можешь поставить цвет бренда */
    }
    
    /* Настроим цвет полоски прогресса (синий пример) */
    .plyr__progress--played,
    .plyr__progress__buffer {
        background: #00c6ff !important; /* можешь поставить цвет бренда */
    }
    
    /* Настроим цвет иконок */
    .plyr__controls button svg {
        fill: white !important;
    }
    
    /* Прячем ненужные тени у прогресс-бара */
    .plyr__progress input[type=range] {
        box-shadow: none !important;
    }

    .plyr__volume {
        display: none !important;
      }

    #player {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.plyr__video-wrapper iframe {
    pointer-events: auto !important;
  }
  
  .plyr__poster {
    display: none !important;
  }
  