/* Anti-theft / copy protection styles */
.protection-overlay{position:fixed;inset:0;z-index:999999;pointer-events:none;display:none}
.protection-overlay.active{display:block}
body.protected{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
body.protected img{-webkit-user-drag:none;user-drag:none;-webkit-touch-callout:none}
.protection-notice{position:fixed;bottom:20px;right:20px;z-index:999997;padding:8px 16px;background:rgba(0,0,0,0.9);border:1px solid rgba(255,255,255,0.1);border-radius:8px;font-size:11px;color:rgba(255,255,255,0.3);font-family:var(--font-mono);pointer-events:none;opacity:0;transition:opacity 0.3s;backdrop-filter:blur(10px)}
.protection-notice.show{opacity:1}
.protection-flash{position:fixed;inset:0;z-index:999999;background:var(--black);display:none;pointer-events:none}
.protection-flash.active{display:block;animation:flashOut 0.3s ease-out forwards}
@keyframes flashOut{from{opacity:1}to{opacity:0}}
