.fake-fs-container {
    position: relative;
    background: #000;
}

/* Fake fullscreen */
.fake-fs-container.fake-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
}

/* Video resize */
.fake-fs-container.fake-fullscreen video {
    width: 100%;
    height: 100%;
}

/* Lock scroll */
body.fake-fs-active {
    overflow: hidden;
}

/* Button */
.fake-fs-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000000;
    background: rgba(0,0,0,.6);
    color: #fff;
    border: 0;
    padding: 6px 10px;
    cursor: pointer;
}

/* Watermark */
.video-watermark {
    position: absolute;
    z-index: 1000001;
    color: rgba(255,255,255,.35);
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 3px rgba(0,0,0,.7);
    top: 20px;
    left: 20px;
}
/* Landscape fullscreen container */
.fake-fs-container.fake-landscape {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    background: black;
    z-index: 99999;
}

/* Video fit */
.fake-fs-container.fake-landscape video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

/* Rotate instruction overlay */
.rotate-hint {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    color: #fff;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-align: center;
}
/* ================================
   REMOVE PICTURE-IN-PICTURE (PLYR)
   Rocket LMS Safe Override
   ================================ */

/* Main PiP button */
.plyr__control[data-plyr="pip"],
button[data-plyr="pip"] {
    display: none !important;
}

/* Alternative class used by Plyr */
.plyr__control--pip {
    display: none !important;
}

/* Controls container fallback */
.plyr__controls__item[data-plyr="pip"] {
    display: none !important;
}

/* Settings menu PiP */
.plyr__menu__container button[data-plyr="pip"] {
    display: none !important;
}

/* iOS Safari PiP */
video::-webkit-media-controls-picture-in-picture-button {
    display: none !important;
}
