body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* 7. Dezactivare pointer events pe imagini */
img {
    pointer-events: none;
    -webkit-user-drag: none;
}

.protected img,
.protected video,
.protected .content-protected {
    visibility: hidden !important;
}

/* Sau overlay negru */
.protected::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    z-index: 99999;
}