<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Hacked By ReKaNErrOr</title>
<style>
body {
margin: 0;
min-height: 100vh;
background-color: #000;
font-family: ‘Courier New’, monospace;
overflow-y: auto; /* allow scrolling */
position: relative;
color: #ff004c;
}

/* Kurdistan flag background */
body::before {
content: ”;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(‘https://upload.wikimedia.org/wikipedia/commons/d/d2/Flag_of_Kurdistan.png’) center center / cover no-repeat;
opacity: 0.2;
z-index: -1;
}

.container {
max-width: 800px;
margin: 50px auto;
padding: 0 20px;
text-align: center;
}

img {
max-width: 300px;
border: 2px solid #ff004c;
border-radius: 10px;
box-shadow: 0 0 20px #ff004c;
margin-bottom: 30px;
}

/* Main text more red */
h1 {
font-size: 3em;
margin: 20px 0;
font-weight: bold;
color: #ff0000; /* brighter red */
text-shadow: 0 0 15px #ff0000, 0 0 30px #ff3333, 0 0 60px #ff0000;
opacity: 0;
animation: glow 2s infinite;
}

p {
font-size: 1.5em;
margin: 15px 0;
font-weight: bold;
color: #ff004c; /* keep original red for other text */
text-shadow: 0 0 5px #ff004c, 0 0 15px #ff3366, 0 0 30px #ff004c;
opacity: 0;
animation: glow 2s infinite;
}

.button-link {
display: inline-block;
padding: 12px 20px;
margin: 15px 10px;
color: #fff;
background-color: #ff004c;
border: 2px solid #ff3366;
border-radius: 5px;
text-decoration: none;
font-size: 1.2em;
font-weight: bold;
text-shadow: 0 0 5px #ff3366;
transition: all 0.3s ease;
}

.button-link:hover {
background-color: #ff3366;
box-shadow: 0 0 20px #ff004c, 0 0 40px #ff3366;
transform: translateY(-2px);
}

.show {
opacity: 1;
}

@keyframes glow {
0%, 100% { text-shadow: 0 0 5px #ff004c, 0 0 15px #ff3366, 0 0 30px #ff004c; }
50% { text-shadow: 0 0 15px #ff004c, 0 0 25px #ff3366, 0 0 50px #ff004c; }
}
</style>
</head>
<body>
<div class=”container”>
<img src=”https://i.postimg.cc/Fz7fZv1H/photo-2026-01-20-23-12-19.jpg” alt=”ReKaNErrOr Team Logo”>

<h1 id=”line1″>Hacked By ReKaNErrOr Team</h1>
<p id=”line2″>Kurdish Hacker Was Here</p>
<p id=”line3″>Contact ReKaNErrOr KRD Team</p>
<a class=”button-link” href=”https://t.me/mlazm_R_R” target=”_blank”>https://t.me/mlazm_R_R</a>
<a class=”button-link” href=”https://t.me/rekanerror” target=”_blank”>https://t.me/rekanerror</a>

<!– Extra content for scrolling demo –>
<p style=”margin-top:50px;”>This is additional content to show scroll effect.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum vel dolor a mauris aliquet pharetra. Integer gravida augue at erat facilisis, sed convallis ex varius.</p>
<p>Scroll down to see more effect with Kurdistan flag faintly in the background.</p>
</div>

 

<script>
// Show text lines one by one
const lines = [“line1”, “line2”, “line3”];
let delay = 0;
lines.forEach(id => {
setTimeout(() => {
document.getElementById(id).classList.add(‘show’);
}, delay);
delay += 1500;
});

// Play eagle sound automatically
const eagleSound = document.getElementById(‘eagleSound’);
eagleSound.volume = 0.8;
eagleSound.play().catch(() => {
document.body.addEventListener(‘click’, () => eagleSound.play(), { once: true });
});
</script>
</body>
</html>