@import url(‘https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap’);
html, body {
margin: 0;
padding: 0;
background: black;
font-family: ‘Share Tech Mono’, monospace;
color: red;
overflow: hidden;
}
canvas {
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
.scanline {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: red;
box-shadow: 0 0 15px red;
animation: scan 4s infinite linear;
z-index: 2;
}
@keyframes scan {
0% { top: 0; }
100% { top: 100%; }
}
h1 {
font-size: 60px;
text-align: center;
margin-top: 60px;
color: red;
animation: glitchText 1.5s infinite;
position: relative;
z-index: 3;
}
.typewriter {
width: 26ch;
animation: typing 4s steps(26) 1s 1 normal both, blink 1s step-end infinite;
overflow: hidden;
white-space: nowrap;
border-right: 2px solid red;
font-size: 20px;
margin: 10px auto;
text-align: center;
}
@keyframes typing {
from { width: 0; }
to { width: 26ch; }
}
@keyframes blink {
50% { border-color: transparent; }
}
.glitch-text {
text-align: center;
font-size: 26px;
margin-top: 10px;
animation: glitchText 1.5s infinite;
color: red;
text-shadow: 0 0 5px red, 0 0 10px crimson;
}
@keyframes glitchText {
0% {
text-shadow: 2px 0 red, -2px 0 cyan;
}
20% {
text-shadow: -2px 0 red, 2px 0 cyan;
}
40% {
text-shadow: 2px 0 red, -2px 0 cyan;
}
60% {
text-shadow: -2px 0 red, 2px 0 cyan;
}
80% {
text-shadow: 2px 0 red, -2px 0 cyan;
}
100% {
text-shadow: 0 0 20px crimson;
}
}
img {
display: block;
margin: 40px auto;
width: 300px;
opacity: 0.9;
border-radius: 50%;
border: 4px solid red;
box-shadow: 0 0 25px red;
animation: spin 20s linear infinite;
z-index: 2;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
audio {
display: none;
}
HACKED BY MR SKK
⚠ ELING ELING UMAT ⚠
🔥 JANGAN LUPA BAYAR ZAKAT 🔥
// Matrix rain effect
const canvas = document.getElementById(‘matrix’);
const ctx = canvas.getContext(‘2d’);
canvas.height = window.innerHeight;
canvas.width = window.innerWidth;
const letters = “01”;
const fontSize = 16;
const columns = canvas.width / fontSize;
const drops = Array(Math.floor(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 canvas.height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
}
}
setInterval(draw, 33);
window.addEventListener(‘resize’, () => {
canvas.height = window.innerHeight;
canvas.width = window.innerWidth;
});