
.secure-video-container {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.secure-video-player {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
}

.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secure-video-container:hover .custom-controls {
    opacity: 1;
}

.custom-controls button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.custom-controls button:hover {
    transform: scale(1.1);
}

.progress-bar {
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0;
    transition: width 0.1s linear;
}

.time {
    color: white;
    font-size: 14px;
    font-family: monospace;
}

.secure-video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}
