/* Spartan Shield - Anti-Copy Protection Layer */

/* Disable text selection site-wide */
body.spartan-protected {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Allow selection in input fields and textareas */
body.spartan-protected input,
body.spartan-protected textarea,
body.spartan-protected [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent image dragging */
body.spartan-protected img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Watermark overlay */
.spartan-watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    overflow: hidden;
    opacity: 0.03;
}

.spartan-watermark-text {
    position: absolute;
    white-space: nowrap;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 2px;
    transform: rotate(-35deg);
}

/* Block printing */
@media print {
    body {
        display: none !important;
    }
    html::after {
        content: "Printing is disabled for this content.";
        display: block;
        padding: 40px;
        font-size: 24px;
        text-align: center;
        color: #333;
    }
}
