/* --- SÉCURITÉ PROTOTYPE - ANTI-VOL --- */
/* Blocage de la sélection de texte */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Filigrane de prototype */
.prototype-watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(0, 0, 0, 0.1) 100px,
        rgba(0, 0, 0, 0.1) 200px
    );
}

.prototype-watermark::before {
    content: "PROTOTYPE CONFIDENTIEL - NEXA WORK";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    white-space: nowrap;
    letter-spacing: 0.5rem;
}

/* Anti-impression */
@media print {
    body {
        display: none !important;
    }
}

/* Autoriser la sélection dans les champs de formulaire */
input, textarea, select {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}
