/* === PROTEKSI VISUAL peem.click === */

html, body {
    position: relative !important;
}

/* Overlay */
.peem-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    text-align: center;
    padding: 20px;
}

.peem-overlay .message {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.6;
}

.peem-overlay .brand {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* Watermark */
.peem-watermark {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 99990;
}

.peem-watermark::after {
    content: "peem.click — Media Catatan, Bukan Sekadar Viral";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 32px;
    color: rgba(0,0,0,0.12);
    white-space: nowrap;
}

/* Anti select */
.peem-protected {
    user-select: none;
    -webkit-user-select: none;
}

/* Mobile */
@media (max-width: 768px) {
    .peem-watermark::after {
        content: "peem.click — sumber wajib dicantumkan";
        font-size: 20px;
        opacity: 0.15;
    }
}

body.peem-protected {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}