HACKED BY : INxx01 JANGN SUKA MARAH YA DEK!! ⚡HACKED BY : INxx01 ⚡</h1> <style> :root { --neon-green: #0f0; --neon-purple: #f0f; --neon-blue: #0af; --neon-pink: #f0a; --bg-dark: #000; } body { margin: 0; overflow: hidden; background: var(--bg-dark); font-family: 'Courier New', monospace; color: var(--neon-green); } #particles-js { position: fixed; width: 100%; height: 100%; z-index: -1; } .terminal { position: relative; max-width: 800px; margin: 5% auto; padding: 20px; border: 1px solid var(--neon-purple); box-shadow: 0 0 20px var(--neon-blue); background: rgba(0, 0, 0, 0.8); border-radius: 5px; overflow: hidden; } .terminal::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--neon-green), var(--neon-purple), var(--neon-blue)); } #output { height: 400px; overflow-y: auto; margin-bottom: 10px; padding: 10px; border: 1px solid rgba(0, 255, 0, 0.2); } #input { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--neon-green); color: var(--neon-green); font-family: 'Courier New', monospace; font-size: 16px; padding: 5px; outline: none; } .voice-btn { background: var(--neon-pink); color: black; border: none; padding: 5px 10px; margin-top: 10px; cursor: pointer; font-weight: bold; } @keyframes glitch { 0% { text-shadow: 2px 0 var(--neon-blue); } 25% { text-shadow: -2px 0 var(--neon-purple); } 50% { text-shadow: 2px 0 var(--neon-pink); } 100% { text-shadow: -2px 0 var(--neon-green); } } .glitch { animation: glitch 0.5s infinite; } </style> </head> <body> <!-- 3D Particle Background --> <div id="particles-js"></div> <!-- Cyber Terminal --> <div class="terminal"> <h1 class="glitch">⚡HACKED BY : INxx01 ⚡</h1> <div id="output"> > SYSTEM BOOTED [2025-07-15 20:51:28] > USER: 216.73.216.45 > SERVER: Apache > TYPE 'help' FOR COMMANDS </div> <input type="text" id="input" placeholder="ENTER COMMAND..."> <button class="voice-btn" id="voiceBtn">🎤 VOICE CONTROL</button> </div> <!-- JavaScript Magic --> <script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script> <script> // 3D Particle Background particlesJS("particles-js", { particles: { number: { value: 80, density: { enable: true, value_area: 800 } }, color: { value: ["#0f0", "#f0f", "#0af"] }, shape: { type: "circle" }, opacity: { value: 0.5, random: true }, size: { value: 3, random: true }, line_linked: { enable: true, distance: 150, color: "#0f0", opacity: 0.2, width: 1 }, move: { enable: true, speed: 3, direction: "none", random: true, straight: false } }, interactivity: { detect_on: "canvas", events: { onhover: { enable: true, mode: "repulse" }, onclick: { enable: true, mode: "push" } } } }); // Terminal Logic const input = document.getElementById("input"); const output = document.getElementById("output"); const voiceBtn = document.getElementById("voiceBtn"); // Available commands (can be expanded) const commands = { help: "> COMMANDS: <br>• help - Show this menu<br>• time - Current time<br>• clear - Reset terminal<br>• crypto - Fetch Bitcoin price (API)<br>• hack - Just for fun 😈", time: "> TIME: " + new Date().toLocaleTimeString(), clear: () => { output.innerHTML = ""; }, crypto: async () => { output.innerHTML += "> FETCHING BTC PRICE...<br>"; try { const response = await fetch("https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd"); const data = await response.json(); output.innerHTML += `> BTC: $${data.bitcoin.usd}<br>`; } catch (e) { output.innerHTML += "> ERROR: API OFFLINE<br>"; } }, hack: () => { output.innerHTML += "> INITIATING CYBER ATTACK...<br>"; setTimeout(() => output.innerHTML += "> FAILED. FBI NOTIFIED. RUN.<br>", 2000); } }; // Voice Recognition if ('webkitSpeechRecognition' in window) { const recognition = new webkitSpeechRecognition(); recognition.continuous = false; recognition.interimResults = false; recognition.lang = 'en-US'; voiceBtn.onclick = () => { recognition.start(); output.innerHTML += "> LISTENING... SAY A COMMAND<br>"; }; recognition.onresult = (e) => { const spoken = e.results[0][0].transcript.toLowerCase().trim(); input.value = spoken; executeCommand(spoken); }; } else { voiceBtn.disabled = true; voiceBtn.textContent = "VOICE NOT SUPPORTED"; } // Execute commands function executeCommand(cmd) { output.innerHTML += `> ${cmd}<br>`; if (cmd === "clear") { commands.clear(); } else if (commands[cmd]) { if (typeof commands[cmd] === "function") { commands[cmd](); } else { output.innerHTML += commands[cmd] + "<br>"; } } else { output.innerHTML += "> COMMAND NOT FOUND. TYPE 'help'<br>"; } output.scrollTop = output.scrollHeight; } // Keyboard input input.addEventListener("keypress", (e) => { if (e.key === "Enter") { executeCommand(input.value.trim().toLowerCase()); input.value = ""; } }); </script> </body> </html>