/* Styles for the ad video overlay */
#ad-video-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Changed to fixed to cover the whole screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Black background with some transparency */
    z-index: 999999;  /* Ensure it's on top of absolutely everything */
}

/* The ad player itself should fill the container */
#ad-video-overlay div,
#ad-video-overlay video {
    width: 100% !important;
    height: 100% !important;
}