    .player-container {
      position: relative;
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0;
    }
    
    .player-wrapper {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 56.25%; /* Aspect ratio 16:9 */
      overflow: hidden;
      background: #000;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .player-wrapper #player {
      position: absolute;
      top: 0;
      left: 0;
      width: 100% !important;
      height: 100% !important;
      border: none;
      border-radius: 8px;
    }
    
    /* Ajustes para pantallas muy pequeñas */
    @media (max-width: 576px) {
      .player-wrapper {
        padding-bottom: 65%; /* Aspect ratio más cuadrado para móviles */
        border-radius: 4px;
      }
    }
    
    /* Ajustes para tabletas */
    @media (min-width: 768px) and (max-width: 1024px) {
      .player-wrapper {
        padding-bottom: 60%;
      }
    }
    
    /* Ajustes para pantallas grandes */
    @media (min-width: 1200px) {
      .player-wrapper {
        padding-bottom: 50%;
      }
    }
    
    /* Ajustes para el contenedor de la sección */
    .video-section {
      padding-left: 0;
      padding-right: 0;
    }
    
    .video-section .container {
      max-width: 100%;
      padding-left: 15px;
      padding-right: 15px;
    }
    
    @media (max-width: 768px) {
      .video-section .container {
        padding-left: 10px;
        padding-right: 10px;
      }
    }
