/* ============================================
   PLANEA TV - Estilos del Reproductor
   ============================================ */

/* Reproductor Principal en Homepage */
.featured-player {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 16px;
}

.featured-player-title {
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 600;
}

.featured-player .video-js {
    width: 100%;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
}

.featured-player .vjs-control-bar {
    display: flex !important;
}

.featured-player .vjs-big-play-button {
    border: none;
}

/* Reproductor a Pantalla Completa */
.videoPlayerLayout {
    width: 100%;
    position: relative;
    z-index: 9999;
}

#divconvideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#fullscreen {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#doonplayer {
    width: 100%;
    height: 100%;
    position: relative;
}

#element {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tmees {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 99999;
    background: #000000;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
}

/* Video.js Base */
.video-js {
    width: 100% !important;
    height: 100% !important;
    max-height: 100vh;
}

.vjs-fluid {
    padding-top: 50.25%;
}

.vjs-big-play-centered .vjs-big-play-button {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 3em;
    width: 3em;
    line-height: 3em;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
}

/* Controles del Reproductor */
.vjs-control-bar {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.vjs-volume-panel {
    margin-right: 10px !important;
}

.vjs-progress-control {
    width: 100% !important;
}

/* Botón de Cierre */
#close-player {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

#close-player:hover {
    background-color: rgba(255, 0, 0, 0.7);
}

/* Elementos de Reproducción */
#cont_play {
    height: 150px;
    position: absolute;
    padding: 0 auto;
    z-index: 999999999;
}

#playbtton {
    width: 100vh;
    height: 286px;
    cursor: pointer;
}

