<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blade Full Screen Hack</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: black;
}
/* iframe tam ekran ve önde */
#blade-iframe {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
z-index: 9999;
}
</style>
</head>
<body>
<iframe id="blade-iframe" srcdoc='
<html>
<head>
<style>
body {
margin:0;
height:100vh;
width:100vw;
background: black url("https://pbs.twimg.com/media/FqFOlrbXgAQxiEI?format=jpg&name=large") no-repeat center center;
background-size: contain;
font-family: monospace;
overflow: hidden;
position: relative;
color: red;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/* Ortadaki yazılar */
h1 { font-size:4rem; text-shadow: 0 0 20px red; z-index: 2; }
p { font-size:2rem; color: lime; text-shadow: 0 0 10px lime; z-index: 2; }
/* Matrix efekt container */
.matrix-container {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
pointer-events: none; z-index: 1;
}
.column {
position: absolute; top: -5%;
font-size: 1.5rem; color: lime;
font-weight: bold; white-space: nowrap;
animation-name: fall;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes fall {
0% { top: -10%; }
100% { top: 110%; }
}
</style>
</head>
<body>
<h1>HACKED BY BLADEOFGOD</h1>
<p>@bladpdf</p>
<div class="matrix-container" id="matrix"></div>
<script>
// Matrix efekti
const container = document.getElementById("matrix");
const columns = 4;
const message = "BLADE SİSTEMİNİZİ ELE GEÇİRDİ";
for(let i=0;i<columns;i++){
const span = document.createElement("div");
span.className = "column";
span.style.left = (i * 25 + 5) + "%";
span.style.animationDuration = (Math.random()*5 + 5) + "s";
span.innerText = message;
container.appendChild(span);
}
</script>
</body>
</html>
'></iframe>
</body>
</html>