/* assets/css/security.css - Content & Anti-theft Protection (Clean & Non-Intrusive) */

/* 1. Prevent Text Selection on Protected Elements */
body.protected-content,
.protected-text,
.no-select {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

/* Allow text selection in allowed inputs */
input, textarea, [contenteditable="true"] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* 2. Prevent image dragging and direct clicking */
img.protected-img,
.protected-asset {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    pointer-events: none;
}

/* 3. Invisible / Ultra-Subtle Watermark (Remove visual clutter) */
.watermark-text-grid {
    display: none; /* Hide distracting diagonal grid */
}

/* 4. Anti-Screenshot & Screen Capture Deterrent Filter */
body.screen-captured,
body.window-blurred {
    filter: blur(10px) !important;
    transition: filter 0.15s ease;
}

#security-screen-shield {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #0f172a;
    padding: 2rem;
}

#security-screen-shield.active {
    display: flex !important;
}

#security-screen-shield .shield-icon {
    font-size: 3.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

/* 5. Print Protection - Blank or Watermarked on Print */
@media print {
    body {
        visibility: hidden !important;
        background: #fff !important;
    }
    
    body::before {
        visibility: visible !important;
        content: "DOKUMEN RESMI DILINDUNGI HAK CIPTA - AKSES CETAK TERVERIFIKASI. Silakan gunakan menu Generator CV resmi.";
        position: fixed;
        top: 40%;
        left: 10%;
        right: 10%;
        text-align: center;
        font-size: 16pt;
        color: #6d28d9;
        font-weight: bold;
        display: block;
        line-height: 1.6;
    }
}

/* Allow printable CV only on dedicated print page */
body.allow-print {
    visibility: visible !important;
}
body.allow-print::before {
    display: none !important;
}
