    /* Contenedor principal del reproductor */
    .video-container {
      position: relative;
      width: 100%;
      max-width: 100%;
      padding: 0;
      margin: 0 auto;
    }
    
    /* Wrapper responsive con aspect ratio */
    .video-wrapper {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 56.25%; /* Aspect ratio 16:9 */
      overflow: hidden;
      background: #000;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
    
    /* Reproductor Video.js */
    .video-wrapper .video-js {
      position: absolute !important;
      top: 0;
      left: 0;
      width: 100% !important;
      height: 100% !important;
      border-radius: 12px;
      overflow: hidden;
    }
    
    /* Ajustes específicos para Video.js responsive */
    .vjs-fluid {
      padding-top: 0 !important;
    }
    
    .video-js .vjs-tech {
      position: absolute !important;
      top: 0;
      left: 0;
      width: 100% !important;
      height: 100% !important;
    }
    
    /* Media queries para diferentes dispositivos */
    @media (max-width: 576px) {
      .video-wrapper {
        padding-bottom: 65%; /* Aspect ratio más alto para móviles */
        border-radius: 8px;
      }
      
      .subscribe-section-content {
        padding: 0 10px;
      }
    }
    
    @media (min-width: 577px) and (max-width: 768px) {
      .video-wrapper {
        padding-bottom: 60%;
        border-radius: 10px;
      }
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
      .video-wrapper {
        padding-bottom: 55%;
      }
    }
    
    @media (min-width: 1025px) and (max-width: 1400px) {
      .video-wrapper {
        padding-bottom: 50%;
      }
    }
    
    @media (min-width: 1401px) {
      .video-wrapper {
        padding-bottom: 45%;
        max-width: 1400px;
        margin: 0 auto;
      }
    }
    
    /* Ajustes para la sección de video */
    .video-section {
      padding-left: 0;
      padding-right: 0;
    }
    
    .video-section .container {
      max-width: 100%;
      padding: 0 15px;
    }
    
    @media (max-width: 768px) {
      .video-section .container {
        padding: 0 10px;
      }
    }
    
    /* Mejoras visuales adicionales */
    .section-title {
      margin-bottom: 1.5rem;
    }
    
    .subscribe-section-des {
      margin-bottom: 2.5rem;
      opacity: 0.9;
    }
    
    /* Loading spinner personalizado */
    .video-loading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      color: #fff;
      font-size: 1.2rem;
    }
    
    .loading-spinner {
      width: 40px;
      height: 40px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-top: 3px solid #fff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto 10px;
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
