/* Reinforced specific wrapper to break through theme container blocks */
div.sc-video-container {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 780px !important; /* Brought it down slightly for a perfect cinematic balance */
    margin: 20px auto 40px auto !important; /* Strict auto rule for absolute centering */
    background-color: #000000 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6) !important;
    aspect-ratio: 16 / 9 !important;
    clear: both !important;
}

/* Force the video inside to strictly fill our centered frame */
video.sc-custom-player {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Custom styling targeted at the browser default video control bar */
video.sc-custom-player::-webkit-media-controls-panel {
    background-image: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0)) !important;
}