<!DOCTYPE html>
<html lang="uz">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacker Style Page</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Share+Tech+Mono&display=swap" rel="stylesheet">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
}
body {
background: #000;
color: #fff;
min-height: 100vh;
min-width: 100vw;
overflow: hidden;
position: relative;
font-family: 'Share Tech Mono', monospace;
}
#matrix-canvas {
position: fixed;
top: 0; left: 0; width: 100vw; height: 100vh;
z-index: 0;
display: block;
}
.center-img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 40vw;
max-height: 60vh;
z-index: 2;
box-shadow: 0 0 40px #0f0, 0 0 10px #000;
border-radius: 10px;
border: 2px solid #0f0;
background: rgba(0,0,0,0.7);
}
.title {
position: absolute;
top: 40px;
width: 100vw;
text-align: center;
font-family: 'Orbitron', 'Share Tech Mono', monospace;
font-size: 4vw;
font-weight: bold;
letter-spacing: 0.1em;
color: #fff;
text-shadow: 0 0 20px #0ff, 0 0 40px #0ff, 0 0 2px #fff;
z-index: 3;
user-select: none;
}
.subtitle {
position: absolute;
bottom: 40px;
width: 100vw;
text-align: center;
font-family: 'Share Tech Mono', monospace;
font-size: 2vw;
color: #fff;
text-shadow: 0 0 10px #0ff, 0 0 2px #fff;
z-index: 3;
user-select: none;
}
</style>
</head>
<body>
<canvas id="matrix-canvas"></canvas>
<div class="title">Your site Hacked</div>
<img class="center-img" src="https://www.newageislam.com/picture_library/Black_Flag_-KP_NewAgeIslam.jpg" alt="Centered" />
<div class="subtitle">Your site has been hacked. To contact us, write : @leakuz_bot </div>
<script>
// Matrix effect
const canvas = document.getElementById('matrix-canvas');
const ctx = canvas.getContext('2d');
let width = window.innerWidth;
let height = window.innerHeight;
canvas.width = width;
canvas.height = height;
const fontSize = 18;
const columns = Math.floor(width / fontSize);
const drops = Array(columns).fill(1);
function drawMatrix() {
ctx.fillStyle = 'rgba(0, 0, 0, 0.15)';
ctx.fillRect(0, 0, width, height);
ctx.font = fontSize + "px 'Share Tech Mono', monospace";
ctx.fillStyle = '#0f0';
for (let i = 0; i < drops.length; i++) {
const text = String.fromCharCode(0x30A0 + Math.random() * 96);
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
}
}
setInterval(drawMatrix, 50);
window.addEventListener('resize', () => {
width = window.innerWidth;
height = window.innerHeight;
canvas.width = width;
canvas.height = height;
});
</script>
</body>
</html>