Hacked By On4rs
body {
margin: 0;
padding: 0;
background: #000;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
overflow: hidden;
}
.title {
color: #ff0000;
font-size: 60px;
text-transform: uppercase;
letter-spacing: 4px;
text-shadow:
0 0 10px #ff0000,
0 0 20px #ff0000,
0 0 40px #ff0000,
0 0 60px #ff0000,
0 0 80px #ff0000;
animation: neonGlowRed 1.5s ease-in-out infinite alternate;
position: relative;
z-index: 2;
}
.subtitle {
color: #39ff14;
font-size: 28px;
letter-spacing: 2px;
text-shadow:
0 0 10px #39ff14,
0 0 20px #39ff14,
0 0 40px #39ff14,
0 0 60px #39ff14,
0 0 80px #39ff14;
animation: neonGlowGreen 1.5s ease-in-out infinite alternate;
position: relative;
z-index: 2;
}
.instagram {
color: #ffffff;
font-size: 24px;
text-decoration: none;
text-shadow:
0 0 5px #ffffff,
0 0 10px #ffffff;
transition: all 0.3s;
position: relative;
z-index: 2;
}
.instagram:hover {
color: #39ff14;
text-shadow:
0 0 10px #39ff14,
0 0 20px #39ff14,
0 0 40px #39ff14;
}
/* Neon animasyonları */
@keyframes neonGlowRed {
from {
text-shadow:
0 0 10px #ff0000,
0 0 20px #ff0000,
0 0 40px #ff0000,
0 0 60px #ff0000;
}
to {
text-shadow:
0 0 20px #ff0000,
0 0 30px #ff0000,
0 0 60px #ff0000,
0 0 90px #ff0000,
0 0 120px #ff0000;
}
}
@keyframes neonGlowGreen {
from {
text-shadow:
0 0 10px #39ff14,
0 0 20px #39ff14,
0 0 40px #39ff14,
0 0 60px #39ff14;
}
to {
text-shadow:
0 0 20px #39ff14,
0 0 30px #39ff14,
0 0 60px #39ff14,
0 0 90px #39ff14,
0 0 120px #39ff14;
}
}
/* Matrix efekti */
.matrix {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: #39ff14;
font-family: monospace;
opacity: 0.4;
pointer-events: none;
z-index: 1;
}
canvas {
position: absolute;
top: 0;
left: 0;
}
/* YouTube iframe için stil */
.youtube-player {
position: relative;
z-index: 2;
}
Hacked By On4rs
Bu Site On4rs Tarafından Hacklenmiştir
@on3rts
// Matrix efekti
const canvas = document.getElementById(‘matrix’);
const ctx = canvas.getContext(‘2d’);
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
const letters = ‘ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789’;
const fontSize = 16;
const columns = canvas.width/fontSize;
const drops = [];
for(let x = 0; x < columns; x++) {
drops[x] = Math.random() * canvas.height; // Başlangıç noktalarını rastgele dağıt
}
function draw() {
ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = '#39ff14';
ctx.font = fontSize + 'px monospace';
for(let i = 0; i canvas.height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
}
}
setInterval(draw, 33);
// Pencere boyutu değiştiğinde canvas’ı güncelle
window.addEventListener(‘resize’, () => {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
const newColumns = canvas.width/fontSize;
while(drops.length < newColumns) {
drops.push(Math.random() * canvas.height);
}
});