/* Ownership & copyright protection styles */

body.hr-copyright-protected {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.hr-copyright-protected input,
body.hr-copyright-protected textarea,
body.hr-copyright-protected select,
body.hr-copyright-protected [contenteditable="true"],
body.hr-copyright-protected .allow-select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body.hr-copyright-protected img,
body.hr-copyright-protected video,
body.hr-copyright-protected svg {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

.hr-ownership-marker {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hr-copy-block-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 99999;
    background: #1e1033;
    color: #fff;
    padding: 0.85rem 1.25rem;
    border-radius: 0.85rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(79, 0, 140, 0.35);
    border: 1px solid rgba(168, 85, 247, 0.35);
    max-width: min(92vw, 28rem);
    text-align: center;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
}

.hr-copy-block-toast.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media print {
    body::before {
        content: "© HR Fiber — جميع الحقوق محفوظة. يُحظر النسخ أو إعادة النشر.";
        display: block;
        text-align: center;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #4f008c;
    }

    body::after {
        content: "الموقع الرسمي: https://h-r-fiber.com | معرف الملكية: HRF-OWN-2026-SA";
        display: block;
        text-align: center;
        font-size: 12px;
        margin-top: 1rem;
        color: #666;
    }
}
