<script>
(function() {
const style = document.createElement('style');
style.innerHTML = `
@keyframes rotate360 {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
body {
animation: rotate360 4s linear infinite;
overflow: hidden;
}
#hacked-overlay {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 100px;
font-family: 'Courier New', Courier, monospace;
color: red;
font-weight: bold;
text-shadow: 0 0 20px black;
z-index: 999999;
pointer-events: none;
animation: blink 0.5s step-end infinite;
}
`;
document.head.appendChild(style);
const div = document.createElement('div');
div.id = 'hacked-overlay';
div.innerText = 'HACKED';
document.body.appendChild(div);
})();
</script>