/* Reproductor de Video Custom - Sin Descarga */
.custom-video-player {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 85vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.custom-video-player video {
    width: 100%;
    height: 100%;
    display: block;
}

.custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 20px 16px 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.custom-video-player:hover .custom-video-controls {
    opacity: 1;
}

.video-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin-bottom: 12px;
    cursor: pointer;
    position: relative;
}

.video-progress-bar {
    height: 100%;
    background: var(--primary-color, #667eea);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.video-controls-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-time {
    color: white;
    font-size: 13px;
    font-weight: 500;
    min-width: 100px;
}

.video-volume-container {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.video-volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
}

.video-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.video-volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Ocultar controles nativos */
.custom-video-player video::-webkit-media-controls {
    display: none !important;
}

.custom-video-player video::-webkit-media-controls-enclosure {
    display: none !important;
}