<!DOCTYPE html><html lang="en"> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0">Hacked by Team FLIX <title>Hacked by Team FLIX</title> <style> html, body { margin: 0; padding: 0; width: 100%; height: 100%; overflow: hidden; background: #000; font-family: monospace; } canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; } .terminal-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #0f0; font-size: 2rem; z-index: 1; white-space: nowrap; /* توهج أخضر خفيف بدون حدود سوداء */ text-shadow: 0 0 8px #0f0, 0 0 16px #0f0; } </style> <canvas id="matrix"></canvas> <div class="terminal-text"> THIS SITE HAS BEEN HACKED BY TEAM FLIX </div> <script> // Matrix effect const canvas = document.getElementById('matrix'); const ctx = canvas.getContext('2d'); canvas.width = window.innerWidth; canvas.height = window.innerHeight; 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.15)'; ctx.fillRect(0, 0, canvas.width, canvas.height); ctx.fillStyle = '#0f0'; ctx.font = fontSize + 'px monospace'; for (let i = 0; i < drops.length; i++) { const text = letters.charAt(Math.floor(Math.random() * letters.length)); ctx.fillText(text, i * fontSize, drops[i] * fontSize); if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) { drops[i] = 0; } drops[i]++; } } setInterval(draw, 33); window.addEventListener('resize', () => { canvas.width = window.innerWidth; canvas.height = window.innerHeight; }); </script>