<!DOCTYPE html><html lang="en">
<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Ransomware page by XLVER 7 with cyber security, hacker themes."> <meta name="keywords" content="WOLF CYBER ARMY "> <meta name="author" content="XLVER-7">LOCKED BY 1ronxs3c <title>LOCKED BY 1ronxs3c</title> <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap" rel="stylesheet"> <style> /* General Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Body Styling */ body { font-family: 'Orbitron', sans-serif; background: radial-gradient(circle, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 1)); color: #ff0000; display: flex; justify-content: center; align-items: center; flex-direction: column; height: 100vh; overflow: hidden; } canvas { position: absolute; top: 0; left: 0; z-index: -1; } /* Futuristic Box */ .container { position: relative; z-index: 1; padding: 20px; border: 2px solid transparent; border-radius: 15px; background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)); box-shadow: 0 0 15px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.2) inset; width: 90%; max-width: 400px; text-align: center; animation: neon-flicker 1.5s infinite alternate; } /* Glitch Image Effect with Glow */ .glitch { position: relative; margin: 20px auto; width: 150px; animation: glitch-animation 2s infinite; } .glitch img { width: 100%; display: block; filter: drop-shadow(0 0 20px #ff0000) drop-shadow(0 0 40px #ff0000); transition: filter 0.3s ease-in-out; } .glitch img:hover { filter: drop-shadow(0 0 40px #ff0000) drop-shadow(0 0 60px #ff0000); } @keyframes glitch-animation { 0% { transform: translate(0); opacity: 1; } 25% { transform: translate(-2px, -2px); opacity: 0.8; } 50% { transform: translate(2px, 2px); opacity: 1; } 75% { transform: translate(-2px, 2px); opacity: 0.8; } 100% { transform: translate(0); opacity: 1; } } /* Title */ h1 { font-size: 1.5em; margin-bottom: 10px; text-shadow: 0 0 10px rgba(255, 0, 0, 0.7); } /* Description */ p { font-size: 1em; margin: 10px 0; } /* Buttons */ button { font-family: 'Orbitron', sans-serif; background: transparent; color: #ff0000; padding: 10px 15px; font-size: 0.9em; border: 2px solid #ff0000; border-radius: 5px; cursor: pointer; margin: 5px; transition: all 0.3s ease-in-out; } button:hover { background-color: #ff0000; color: black; box-shadow: 0 0 10px #ff0000; } /* Play Audio Button */ .audio-btn { margin-top: 20px; font-size: 0.9em; } /* Scrolling Text */ .marquee { position: fixed; bottom: 10px; width: 100%; overflow: hidden; white-space: nowrap; z-index: 2; } .marquee span { display: inline-block; padding-left: 100%; animation: scroll-left 10s linear infinite; color: #ff0000; font-size: 1em; text-shadow: 0 0 10px rgba(255, 0, 0, 0.7); } @keyframes scroll-left { from { transform: translateX(100%); } to { transform: translateX(-100%); } } /* Keyframes for Neon Flicker */ @keyframes neon-flicker { 0% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.7); } 50% { box-shadow: 0 0 20px rgba(255, 0, 0, 1); } 100% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.7); } } </style> <canvas id="matrix"></canvas> <div class="container"> <!-- Glitching Image with Glow --> <div class="glitch"> <img src="https://i.ibb.co.com/7zZw6xT/IMG-20240910-222452-050.jpg" alt="Glitch Image"> </div> <!-- Title --> LOCKED BY XLVER-7
<!-- Description --> <p>WEBSITE HACK SECURITY</p> <!-- Buttons --> <button class="unlock-btn" onclick="window.open('https://t.me/cyber_wolff', '_blank')">Unlock</button> <button class="decryption-btn" onclick="window.open('https://t.me/cyber_wolff', '_blank')">Decryption Key</button> <!-- Play Audio Button --> <button id="play-audio" class="audio-btn">Play Audio</button> </div> <!-- Scrolling Text --> <div class="marquee"> <span>WOLF CYBER ARMY </span> </div> <!-- Audio --> <audio id="background-audio" loop> <source src="https://cdn.prinsh.com/data-1/mp3/meg-amp-dia-monster-dot-exe-remix.mp3"> Your browser does not support the audio element. </audio> <script> // Matrix Effect const canvas = document.getElementById('matrix'); const ctx = canvas.getContext('2d'); canvas.width = window.innerWidth; canvas.height = window.innerHeight; const binary = "01"; const fontSize = 16; const columns = canvas.width / fontSize; const drops = Array.from({ length: columns }, () => 1); function draw() { ctx.fillStyle = "rgba(0, 0, 0, 0.1)"; ctx.fillRect(0, 0, canvas.width, canvas.height); ctx.fillStyle = "#ff0000"; ctx.font = `${fontSize}px 'Orbitron', monospace`; for (let i = 0; i < drops.length; i++) { const text = binary[Math.floor(Math.random() * binary.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, 50); // Resize canvas on window resize window.addEventListener('resize', () => { canvas.width = window.innerWidth; canvas.height = window.innerHeight; }); // Audio Control const audio = document.getElementById('background-audio'); const playButton = document.getElementById('play-audio'); let isPlaying = false; playButton.addEventListener('click', () => { if (isPlaying) { audio.pause(); playButton.textContent = 'Play Audio'; } else { audio.play(); playButton.textContent = 'Pause Audio'; } isPlaying = !isPlaying; }); </script>