/* Quiz infernal — protection contre les captures. */
.qi-shielded .qi-app { -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }
.qi-shielded .qi-app input, .qi-shielded .qi-app textarea, .qi-shielded .qi-app select { -webkit-user-select: text; user-select: text; }
.qi-shielded .qi-app img { -webkit-user-drag: none; pointer-events: none; }
.qi-shielded .qi-app button img { pointer-events: none; }

.qi-veil { display: none; }
.qi-veiled .qi-app { filter: blur(22px) saturate(.4); transition: filter .05s; }
.qi-veiled .qi-veil {
	display: grid; place-items: center; position: fixed; inset: 0; z-index: 99998;
	background: rgba(17, 4, 40, .85); color: #fff3e4; font: 700 1.6rem/1.3 system-ui, sans-serif; text-align: center; padding: 1rem;
}
.qi-watermark {
	position: fixed; inset: 0; z-index: 99997; pointer-events: none; background-repeat: repeat;
}
@media print {
	.qi-shielded body > * { display: none !important; }
	.qi-shielded body::after { content: "Quiz infernal"; display: block; font: 700 2rem sans-serif; text-align: center; margin-top: 30vh; }
}
