.video-container {
    width: 60rem;
    height: 32.5rem;
    margin: 0 auto;
    position: relative;
    background-color: black;
}
.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.control-panel {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 2; 
}
.control-panel button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.control-panel button img {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
}
#playBlocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    pointer-events: auto;
}
@media screen and (max-width: 991px) {
    .video-container {
        width: 50rem;
        height: 27.5rem;
    }
}
@media screen and (max-width: 767px) {
    .video-container {
        width: 100%;
        max-width: 20rem;
        height: 15rem;
    }
    .control-panel button img {
        width: 24px;
        height: 24px;
    }
    #playBlocker {
        display: block; 
    }
}