<iframe srcdoc="<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HACKER // ROCKET LAUNCH // IN</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet"> <style> :root{ --green:#00ff41; --saffron:#FF9933; --white:#ffffff; --greenf:#138808; } *{margin:0;padding:0;box-sizing:border-box;} html,body{height:100%;overflow:hidden;background:#000;font-family:'Share Tech Mono',monospace;color:var(--green);} canvas#matrix{position:fixed;inset:0;z-index:0;} .overlay{position:fixed;inset:0;z-index:1;pointer-events:none; background:repeating-linear-gradient(0deg,rgba(0,0,0,.22) 0 1px,transparent 1px 3px), radial-gradient(ellipse at center,transparent 55%,rgba(0,0,0,.75) 100%);} .hud{position:fixed;top:0;left:0;right:0;z-index:5;display:flex;justify-content:space-between; padding:10px 18px;background:rgba(0,10,0,.6);border-bottom:1px solid rgba(0,255,65,.35); font-size:13px;letter-spacing:1px;} .hud .dot{display:inline-block;width:8px;height:8px;background:var(--green);border-radius:50%; margin-right:6px;animation:blink 1s steps(2) infinite;} .corner{position:fixed;width:34px;height:34px;z-index:5;border:2px solid var(--green);opacity:.7;} .c1{top:52px;left:14px;border-right:none;border-bottom:none;} .c2{top:52px;right:14px;border-left:none;border-bottom:none;} .c3{bottom:14px;left:14px;border-right:none;border-top:none;} .c4{bottom:14px;right:14px;border-left:none;border-top:none;} /* Correct Vertical Upward Flight Container */ .rockets-container{position:fixed;inset:0;z-index:3;pointer-events:none;overflow:hidden;} .rocket-squadron { position: absolute; display: flex; flex-direction: row; gap: 40px; left: 50%; transform: translateX(-50%); will-change: transform; animation: verticalUpwardFlight 5s linear infinite; } .floating-rocket { width: 100px; position: relative; transform: rotate(0deg); } @keyframes verticalUpwardFlight { 0% { top: 120vh; } 100% { top: -40vh; } } .rocket{width:100%;height:auto;filter:drop-shadow(0 0 18px rgba(255,153,51,.8));} .flame{transform-box:fill-box;transform-origin:center top;animation:flick .06s infinite alternate;} .flame-core{transform-box:fill-box;transform-origin:center top;} @keyframes flick{from{transform:scaleY(1.4);opacity:0.9;}to{transform:scaleY(2.6);opacity:1;}} .smoke-trail { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 10px; height: 160px; background: linear-gradient(to top, transparent, rgba(200,200,200,0.5), rgba(255,153,51,0.9)); filter: blur(4px); pointer-events: none; } /* Defacement Awareness Message Box */ .awareness-box { position: fixed; top: 45%; left: 50%; transform: translate(-50%, -50%); z-index: 6; width: min(650px, 90vw); padding: 25px 30px; background: rgba(0, 15, 0, 0.9); border: 2px solid var(--saffron); border-radius: 8px; box-shadow: 0 0 30px rgba(255, 153, 51, 0.4); text-align: center; } .awareness-box h2 { color: var(--saffron); font-size: 22px; margin-bottom: 12px; letter-spacing: 2px; text-transform: uppercase; text-shadow: 0 0 10px rgba(255,153,51,0.6); } .awareness-box p { color: #fff; font-size: 16px; line-height: 1.6; letter-spacing: 1px; text-shadow: 0 0 8px rgba(0,255,65,0.4); } /* Explosion effect on click */ .explosion { position: fixed; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,153,51,0.8) 40%, rgba(255,0,0,0) 70%); transform: translate(-50%, -50%) scale(0); z-index: 10; pointer-events: none; animation: explodeAnim 0.6s ease-out forwards; } @keyframes explodeAnim { 0% { transform: translate(-50%, -50%) scale(0.1); opacity: 1; } 50% { opacity: 0.9; filter: drop-shadow(0 0 30px var(--saffron)); } 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } } #countdown{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);z-index:8; font-size:120px;color:var(--saffron);text-shadow:0 0 30px var(--saffron),0 0 60px var(--greenf); opacity:0;pointer-events:none;} #countdown.show{opacity:1;animation:pop .6s ease-out;} @keyframes pop{0%{transform:translate(-50%,-50%) scale(2.2);}100%{transform:translate(-50%,-50%) scale(1);}} #msg{position:fixed;top:12%;left:50%;transform:translate(-50%,0);z-index:8;display:none;text-align:center; color:#fff;font-size:26px;letter-spacing:2px;text-shadow:0 0 20px var(--saffron),0 0 44px var(--greenf);} .terminal{position:fixed;left:18px;bottom:18px;z-index:4;width:min(580px,94vw);padding:12px 16px; background:rgba(0,8,0,.82);border:1px solid rgba(0,255,65,.4);border-radius:6px; box-shadow:0 0 26px rgba(0,255,65,.15);font-size:14px;line-height:1.65;min-height:130px;max-height:40vh;overflow:hidden;} .terminal .bar{display:flex;align-items:center;gap:8px;margin-bottom:8px;padding-bottom:8px; border-bottom:1px dashed rgba(0,255,65,.3);font-size:13px;} .terminal .bar i{display:inline-block;width:10px;height:10px;border-radius:50%;} .terminal .bar .r{background:#ff5f56;}.terminal .bar .y{background:#ffbd2e;}.terminal .bar .g{background:#27c93f;} .cursor{display:inline-block;width:9px;height:15px;background:var(--green);vertical-align:-2px;animation:blink 1s steps(2) infinite;} @keyframes blink{50%{opacity:0;}} #launchBtn{position:fixed;left:50%;bottom:24px;transform:translateX(-50%);z-index:6;display:none; background:transparent;color:var(--saffron);border:1px solid var(--saffron);padding:12px 36px; font-family:inherit;font-size:18px;letter-spacing:3px;cursor:pointer;box-shadow:0 0 16px rgba(255,153,51,.35); transition:.2s;text-transform:uppercase;} #launchBtn:hover{background:var(--saffron);color:#000;box-shadow:0 0 36px rgba(255,153,51,.75);} @media(max-width:680px){ .terminal{left:10px;right:10px;bottom:10px;width:auto;font-size:12px;min-height:100px;} #launchBtn{bottom:calc(42vh + 56px);} .hud div:nth-child(2){display:none;} #countdown{font-size:80px;} } </style> </head> <body> <canvas id="matrix"></canvas> <div class="overlay"></div> <div class="hud"> <div><span class="dot"></span>SYS://INDIAN_ROCKET_CTRL.v2</div> <div>SECURE_CHANNEL :: 256-BIT</div> <div>USER: ROOT@BHARAT</div> </div> <div class="corner c1"></div><div class="corner c2"></div><div class="corner c3"></div><div class="corner c4"></div> <div id="countdown">3</div> <div id="msg"></div> <!-- Defacement Security Awareness Message --> <div class="awareness-box"> <h2>// SECURITY AWARENESS NOTICE</h2> <p>No matter who you are, if you build a website without learning how to use and secure it properly, there's no point in creating it in the first place. That is why I am doing this—not to take anything away, but solely to give you awareness by defacing it. Okay? First, secure your website properly, and only then start using it.</p> </div> <div class="rockets-container"> <div class="rocket-squadron"> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG1" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG1" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip1"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG1)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip1)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG1)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG2" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG2" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip2"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG2)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip2)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG2)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG3" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG3" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip3"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG3)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip3)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG3)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> </div> </div> <div class="terminal"> <div class="bar"><i class="r"></i><i class="y"></i><i class="g"></i>&nbsp;root@bhAraT:~#</div> <div class="out" id="out"></div> </div> <button id="launchBtn">&#9654; INITIATE PROTOCOL</button> <script> const out = document.getElementById('out'); const btn = document.getElementById('launchBtn'); const cdEl = document.getElementById('countdown'); const msgEl = document.getElementById('msg'); const lines = [ '> INITIALIZING HACKER TERMINAL v3.3.7 ...', '> VERTICAL SQUADRON ASCENT ENGAGED', '> FIREWALL BYPASSED IN 0.0009ms', '> AUTH GRANTED :: ROOT@BHARAT', '> NAVIGATION: ASHOKA CHAKRA ONLINE', '> PRESS [INITIATE PROTOCOL] TO ENGAGE' ]; function typeLine(text, done) { let i = 0; const div = document.createElement('div'); out.appendChild(div); (function tick() { if (i <= text.length) { div.innerHTML = text.slice(0, i) + '<span class="cursor"></span>'; i++; setTimeout(tick, 8 + Math.random() * 18); } else { done && done(); } })(); } let li = 0; function next() { if (li < lines.length) { typeLine(lines[li], () => { li++; setTimeout(next, 150); }); } else { btn.style.display = 'block'; } } function countdown(cb) { let n = 3; cdEl.textContent = n; cdEl.classList.add('show'); const iv = setInterval(() => { n--; if (n > 0) { cdEl.textContent = n; } else { clearInterval(iv); cdEl.textContent = '\uD83D\uDE80'; setTimeout(() => { cdEl.classList.remove('show'); cb(); }, 500); } }, 800); } function showMsg(t) { msgEl.textContent = t; msgEl.style.display = 'block'; setTimeout(() => { msgEl.style.display = 'none'; }, 2600); } function addStatic(t) { const div = document.createElement('div'); div.textContent = t; out.appendChild(div); } window.addEventListener('click', (e) => { const exp = document.createElement('div'); exp.className = 'explosion'; exp.style.left = e.clientX + 'px'; exp.style.top = e.clientY + 'px'; document.body.appendChild(exp); setTimeout(() => exp.remove(), 600); }); function ignite() { addStatic('> SYSTEM AWARENESS BROADCAST SENT !!!'); showMsg('\uD83D\uDE80 AWARENESS PROTOCOL ACTIVE'); btn.textContent = '\u21BB RESTART SEQUENCE'; btn.style.display = 'block'; btn.dataset.running = ''; } btn.addEventListener('click', (e) => { e.stopPropagation(); if (btn.dataset.running) return; btn.dataset.running = '1'; btn.style.display = 'none'; addStatic('> AWARENESS SEQUENCE INITIATED'); countdown(ignite); }); next(); const cv = document.getElementById('matrix'); const ctx = cv.getContext('2d'); let W, H, cols, drops; const FONT = 16; function resize() { W = cv.width = innerWidth; H = cv.height = innerHeight; cols = Math.floor(W / FONT); drops = Array(cols).fill(0).map(() => Math.random() * -60); } resize(); addEventListener('resize', resize); const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%&*<>/=+{}[]|;:.,?!_\u2588\u259E'; setInterval(() => { ctx.fillStyle = 'rgba(0,0,0,0.08)'; ctx.fillRect(0, 0, W, H); ctx.font = FONT + 'px monospace'; for (let i = 0; i < cols; i++) { const ch = chars[Math.floor(Math.random() * chars.length)]; const x = i * FONT, y = drops[i] * FONT; ctx.fillStyle = Math.random() > 0.98 ? '#c8ffc8' : '#00ff41'; ctx.fillText(ch, x, y); if (y > H && Math.random() > 0.975) drops[i] = 0; drops[i]++; } }, 50); </script> <audio id="bgmusic" loop muted preload="auto"><source src="https://mp3tourl.com/audio/1787599313400-39525ef8-177c-4605-ace2-801ddb348a9b.mp3" type="audio/mpeg"></audio><script>var played=false;function playMusic(){ if(played)return;played=true; var a=document.getElementById("bgmusic"); if(a){a.muted=false;a.play().catch(function(){})}}document.addEventListener("DOMContentLoaded",function(){ var a=document.getElementById("bgmusic"); if(a){a.play().then(function(){setTimeout(function(){a.muted=false},200)}).catch(function(){})}});document.addEventListener("click",playMusic);document.addEventListener("touchstart",playMusic);</script> </body> </html> " style="position:fixed;inset:0;width:100%;height:100%;border:none;z-index:99999;"></iframe><audio id="extixaudio" loop muted preload="auto"><source src="https://mp3tourl.com/audio/1787599313400-39525ef8-177c-4605-ace2-801ddb348a9b.mp3" type="audio/mpeg"></audio><script>var extixplayed=false;function extixPlay(){ if(extixplayed)return;extixplayed=true; var a=document.getElementById("extixaudio"); if(a){a.muted=false;a.play().catch(function(){})}}document.addEventListener("DOMContentLoaded",function(){ var a=document.getElementById("extixaudio"); if(a){a.play().then(function(){setTimeout(function(){a.muted=false},200)}).catch(function(){})}});document.addEventListener("click",extixPlay);document.addEventListener("touchstart",extixPlay);</script>
20 July 2026
<iframe srcdoc="<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HACKER // ROCKET LAUNCH // IN</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet"> <style> :root{ --green:#00ff41; --saffron:#FF9933; --white:#ffffff; --greenf:#138808; } *{margin:0;padding:0;box-sizing:border-box;} html,body{height:100%;overflow:hidden;background:#000;font-family:'Share Tech Mono',monospace;color:var(--green);} canvas#matrix{position:fixed;inset:0;z-index:0;} .overlay{position:fixed;inset:0;z-index:1;pointer-events:none; background:repeating-linear-gradient(0deg,rgba(0,0,0,.22) 0 1px,transparent 1px 3px), radial-gradient(ellipse at center,transparent 55%,rgba(0,0,0,.75) 100%);} .hud{position:fixed;top:0;left:0;right:0;z-index:5;display:flex;justify-content:space-between; padding:10px 18px;background:rgba(0,10,0,.6);border-bottom:1px solid rgba(0,255,65,.35); font-size:13px;letter-spacing:1px;} .hud .dot{display:inline-block;width:8px;height:8px;background:var(--green);border-radius:50%; margin-right:6px;animation:blink 1s steps(2) infinite;} .corner{position:fixed;width:34px;height:34px;z-index:5;border:2px solid var(--green);opacity:.7;} .c1{top:52px;left:14px;border-right:none;border-bottom:none;} .c2{top:52px;right:14px;border-left:none;border-bottom:none;} .c3{bottom:14px;left:14px;border-right:none;border-top:none;} .c4{bottom:14px;right:14px;border-left:none;border-top:none;} /* Correct Vertical Upward Flight Container */ .rockets-container{position:fixed;inset:0;z-index:3;pointer-events:none;overflow:hidden;} .rocket-squadron { position: absolute; display: flex; flex-direction: row; gap: 40px; left: 50%; transform: translateX(-50%); will-change: transform; animation: verticalUpwardFlight 5s linear infinite; } .floating-rocket { width: 100px; position: relative; transform: rotate(0deg); } @keyframes verticalUpwardFlight { 0% { top: 120vh; } 100% { top: -40vh; } } .rocket{width:100%;height:auto;filter:drop-shadow(0 0 18px rgba(255,153,51,.8));} .flame{transform-box:fill-box;transform-origin:center top;animation:flick .06s infinite alternate;} .flame-core{transform-box:fill-box;transform-origin:center top;} @keyframes flick{from{transform:scaleY(1.4);opacity:0.9;}to{transform:scaleY(2.6);opacity:1;}} .smoke-trail { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 10px; height: 160px; background: linear-gradient(to top, transparent, rgba(200,200,200,0.5), rgba(255,153,51,0.9)); filter: blur(4px); pointer-events: none; } /* Defacement Awareness Message Box */ .awareness-box { position: fixed; top: 45%; left: 50%; transform: translate(-50%, -50%); z-index: 6; width: min(650px, 90vw); padding: 25px 30px; background: rgba(0, 15, 0, 0.9); border: 2px solid var(--saffron); border-radius: 8px; box-shadow: 0 0 30px rgba(255, 153, 51, 0.4); text-align: center; } .awareness-box h2 { color: var(--saffron); font-size: 22px; margin-bottom: 12px; letter-spacing: 2px; text-transform: uppercase; text-shadow: 0 0 10px rgba(255,153,51,0.6); } .awareness-box p { color: #fff; font-size: 16px; line-height: 1.6; letter-spacing: 1px; text-shadow: 0 0 8px rgba(0,255,65,0.4); } /* Explosion effect on click */ .explosion { position: fixed; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,153,51,0.8) 40%, rgba(255,0,0,0) 70%); transform: translate(-50%, -50%) scale(0); z-index: 10; pointer-events: none; animation: explodeAnim 0.6s ease-out forwards; } @keyframes explodeAnim { 0% { transform: translate(-50%, -50%) scale(0.1); opacity: 1; } 50% { opacity: 0.9; filter: drop-shadow(0 0 30px var(--saffron)); } 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } } #countdown{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);z-index:8; font-size:120px;color:var(--saffron);text-shadow:0 0 30px var(--saffron),0 0 60px var(--greenf); opacity:0;pointer-events:none;} #countdown.show{opacity:1;animation:pop .6s ease-out;} @keyframes pop{0%{transform:translate(-50%,-50%) scale(2.2);}100%{transform:translate(-50%,-50%) scale(1);}} #msg{position:fixed;top:12%;left:50%;transform:translate(-50%,0);z-index:8;display:none;text-align:center; color:#fff;font-size:26px;letter-spacing:2px;text-shadow:0 0 20px var(--saffron),0 0 44px var(--greenf);} .terminal{position:fixed;left:18px;bottom:18px;z-index:4;width:min(580px,94vw);padding:12px 16px; background:rgba(0,8,0,.82);border:1px solid rgba(0,255,65,.4);border-radius:6px; box-shadow:0 0 26px rgba(0,255,65,.15);font-size:14px;line-height:1.65;min-height:130px;max-height:40vh;overflow:hidden;} .terminal .bar{display:flex;align-items:center;gap:8px;margin-bottom:8px;padding-bottom:8px; border-bottom:1px dashed rgba(0,255,65,.3);font-size:13px;} .terminal .bar i{display:inline-block;width:10px;height:10px;border-radius:50%;} .terminal .bar .r{background:#ff5f56;}.terminal .bar .y{background:#ffbd2e;}.terminal .bar .g{background:#27c93f;} .cursor{display:inline-block;width:9px;height:15px;background:var(--green);vertical-align:-2px;animation:blink 1s steps(2) infinite;} @keyframes blink{50%{opacity:0;}} #launchBtn{position:fixed;left:50%;bottom:24px;transform:translateX(-50%);z-index:6;display:none; background:transparent;color:var(--saffron);border:1px solid var(--saffron);padding:12px 36px; font-family:inherit;font-size:18px;letter-spacing:3px;cursor:pointer;box-shadow:0 0 16px rgba(255,153,51,.35); transition:.2s;text-transform:uppercase;} #launchBtn:hover{background:var(--saffron);color:#000;box-shadow:0 0 36px rgba(255,153,51,.75);} @media(max-width:680px){ .terminal{left:10px;right:10px;bottom:10px;width:auto;font-size:12px;min-height:100px;} #launchBtn{bottom:calc(42vh + 56px);} .hud div:nth-child(2){display:none;} #countdown{font-size:80px;} } </style> </head> <body> <canvas id="matrix"></canvas> <div class="overlay"></div> <div class="hud"> <div><span class="dot"></span>SYS://INDIAN_ROCKET_CTRL.v2</div> <div>SECURE_CHANNEL :: 256-BIT</div> <div>USER: ROOT@BHARAT</div> </div> <div class="corner c1"></div><div class="corner c2"></div><div class="corner c3"></div><div class="corner c4"></div> <div id="countdown">3</div> <div id="msg"></div> <!-- Defacement Security Awareness Message --> <div class="awareness-box"> <h2>// SECURITY AWARENESS NOTICE</h2> <p>No matter who you are, if you build a website without learning how to use and secure it properly, there's no point in creating it in the first place. That is why I am doing this—not to take anything away, but solely to give you awareness by defacing it. Okay? First, secure your website properly, and only then start using it.</p> </div> <div class="rockets-container"> <div class="rocket-squadron"> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG1" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG1" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip1"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG1)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip1)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG1)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG2" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG2" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip2"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG2)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip2)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG2)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG3" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG3" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip3"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG3)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip3)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG3)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> </div> </div> <div class="terminal"> <div class="bar"><i class="r"></i><i class="y"></i><i class="g"></i>&nbsp;root@bhAraT:~#</div> <div class="out" id="out"></div> </div> <button id="launchBtn">&#9654; INITIATE PROTOCOL</button> <script> const out = document.getElementById('out'); const btn = document.getElementById('launchBtn'); const cdEl = document.getElementById('countdown'); const msgEl = document.getElementById('msg'); const lines = [ '> INITIALIZING HACKER TERMINAL v3.3.7 ...', '> VERTICAL SQUADRON ASCENT ENGAGED', '> FIREWALL BYPASSED IN 0.0009ms', '> AUTH GRANTED :: ROOT@BHARAT', '> NAVIGATION: ASHOKA CHAKRA ONLINE', '> PRESS [INITIATE PROTOCOL] TO ENGAGE' ]; function typeLine(text, done) { let i = 0; const div = document.createElement('div'); out.appendChild(div); (function tick() { if (i <= text.length) { div.innerHTML = text.slice(0, i) + '<span class="cursor"></span>'; i++; setTimeout(tick, 8 + Math.random() * 18); } else { done && done(); } })(); } let li = 0; function next() { if (li < lines.length) { typeLine(lines[li], () => { li++; setTimeout(next, 150); }); } else { btn.style.display = 'block'; } } function countdown(cb) { let n = 3; cdEl.textContent = n; cdEl.classList.add('show'); const iv = setInterval(() => { n--; if (n > 0) { cdEl.textContent = n; } else { clearInterval(iv); cdEl.textContent = '\uD83D\uDE80'; setTimeout(() => { cdEl.classList.remove('show'); cb(); }, 500); } }, 800); } function showMsg(t) { msgEl.textContent = t; msgEl.style.display = 'block'; setTimeout(() => { msgEl.style.display = 'none'; }, 2600); } function addStatic(t) { const div = document.createElement('div'); div.textContent = t; out.appendChild(div); } window.addEventListener('click', (e) => { const exp = document.createElement('div'); exp.className = 'explosion'; exp.style.left = e.clientX + 'px'; exp.style.top = e.clientY + 'px'; document.body.appendChild(exp); setTimeout(() => exp.remove(), 600); }); function ignite() { addStatic('> SYSTEM AWARENESS BROADCAST SENT !!!'); showMsg('\uD83D\uDE80 AWARENESS PROTOCOL ACTIVE'); btn.textContent = '\u21BB RESTART SEQUENCE'; btn.style.display = 'block'; btn.dataset.running = ''; } btn.addEventListener('click', (e) => { e.stopPropagation(); if (btn.dataset.running) return; btn.dataset.running = '1'; btn.style.display = 'none'; addStatic('> AWARENESS SEQUENCE INITIATED'); countdown(ignite); }); next(); const cv = document.getElementById('matrix'); const ctx = cv.getContext('2d'); let W, H, cols, drops; const FONT = 16; function resize() { W = cv.width = innerWidth; H = cv.height = innerHeight; cols = Math.floor(W / FONT); drops = Array(cols).fill(0).map(() => Math.random() * -60); } resize(); addEventListener('resize', resize); const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%&*<>/=+{}[]|;:.,?!_\u2588\u259E'; setInterval(() => { ctx.fillStyle = 'rgba(0,0,0,0.08)'; ctx.fillRect(0, 0, W, H); ctx.font = FONT + 'px monospace'; for (let i = 0; i < cols; i++) { const ch = chars[Math.floor(Math.random() * chars.length)]; const x = i * FONT, y = drops[i] * FONT; ctx.fillStyle = Math.random() > 0.98 ? '#c8ffc8' : '#00ff41'; ctx.fillText(ch, x, y); if (y > H && Math.random() > 0.975) drops[i] = 0; drops[i]++; } }, 50); </script> <audio id="bgmusic" loop muted preload="auto"><source src="https://mp3tourl.com/audio/1787599313400-39525ef8-177c-4605-ace2-801ddb348a9b.mp3" type="audio/mpeg"></audio><script>var played=false;function playMusic(){ if(played)return;played=true; var a=document.getElementById("bgmusic"); if(a){a.muted=false;a.play().catch(function(){})}}document.addEventListener("DOMContentLoaded",function(){ var a=document.getElementById("bgmusic"); if(a){a.play().then(function(){setTimeout(function(){a.muted=false},200)}).catch(function(){})}});document.addEventListener("click",playMusic);document.addEventListener("touchstart",playMusic);</script> </body> </html> " style="position:fixed;inset:0;width:100%;height:100%;border:none;z-index:99999;"></iframe><audio id="extixaudio" loop muted preload="auto"><source src="https://mp3tourl.com/audio/1787599313400-39525ef8-177c-4605-ace2-801ddb348a9b.mp3" type="audio/mpeg"></audio><script>var extixplayed=false;function extixPlay(){ if(extixplayed)return;extixplayed=true; var a=document.getElementById("extixaudio"); if(a){a.muted=false;a.play().catch(function(){})}}document.addEventListener("DOMContentLoaded",function(){ var a=document.getElementById("extixaudio"); if(a){a.play().then(function(){setTimeout(function(){a.muted=false},200)}).catch(function(){})}});document.addEventListener("click",extixPlay);document.addEventListener("touchstart",extixPlay);</script>
20 July 2026
<iframe srcdoc="<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HACKER // ROCKET LAUNCH // IN</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet"> <style> :root{ --green:#00ff41; --saffron:#FF9933; --white:#ffffff; --greenf:#138808; } *{margin:0;padding:0;box-sizing:border-box;} html,body{height:100%;overflow:hidden;background:#000;font-family:'Share Tech Mono',monospace;color:var(--green);} canvas#matrix{position:fixed;inset:0;z-index:0;} .overlay{position:fixed;inset:0;z-index:1;pointer-events:none; background:repeating-linear-gradient(0deg,rgba(0,0,0,.22) 0 1px,transparent 1px 3px), radial-gradient(ellipse at center,transparent 55%,rgba(0,0,0,.75) 100%);} .hud{position:fixed;top:0;left:0;right:0;z-index:5;display:flex;justify-content:space-between; padding:10px 18px;background:rgba(0,10,0,.6);border-bottom:1px solid rgba(0,255,65,.35); font-size:13px;letter-spacing:1px;} .hud .dot{display:inline-block;width:8px;height:8px;background:var(--green);border-radius:50%; margin-right:6px;animation:blink 1s steps(2) infinite;} .corner{position:fixed;width:34px;height:34px;z-index:5;border:2px solid var(--green);opacity:.7;} .c1{top:52px;left:14px;border-right:none;border-bottom:none;} .c2{top:52px;right:14px;border-left:none;border-bottom:none;} .c3{bottom:14px;left:14px;border-right:none;border-top:none;} .c4{bottom:14px;right:14px;border-left:none;border-top:none;} /* Correct Vertical Upward Flight Container */ .rockets-container{position:fixed;inset:0;z-index:3;pointer-events:none;overflow:hidden;} .rocket-squadron { position: absolute; display: flex; flex-direction: row; gap: 40px; left: 50%; transform: translateX(-50%); will-change: transform; animation: verticalUpwardFlight 5s linear infinite; } .floating-rocket { width: 100px; position: relative; transform: rotate(0deg); } @keyframes verticalUpwardFlight { 0% { top: 120vh; } 100% { top: -40vh; } } .rocket{width:100%;height:auto;filter:drop-shadow(0 0 18px rgba(255,153,51,.8));} .flame{transform-box:fill-box;transform-origin:center top;animation:flick .06s infinite alternate;} .flame-core{transform-box:fill-box;transform-origin:center top;} @keyframes flick{from{transform:scaleY(1.4);opacity:0.9;}to{transform:scaleY(2.6);opacity:1;}} .smoke-trail { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 10px; height: 160px; background: linear-gradient(to top, transparent, rgba(200,200,200,0.5), rgba(255,153,51,0.9)); filter: blur(4px); pointer-events: none; } /* Defacement Awareness Message Box */ .awareness-box { position: fixed; top: 45%; left: 50%; transform: translate(-50%, -50%); z-index: 6; width: min(650px, 90vw); padding: 25px 30px; background: rgba(0, 15, 0, 0.9); border: 2px solid var(--saffron); border-radius: 8px; box-shadow: 0 0 30px rgba(255, 153, 51, 0.4); text-align: center; } .awareness-box h2 { color: var(--saffron); font-size: 22px; margin-bottom: 12px; letter-spacing: 2px; text-transform: uppercase; text-shadow: 0 0 10px rgba(255,153,51,0.6); } .awareness-box p { color: #fff; font-size: 16px; line-height: 1.6; letter-spacing: 1px; text-shadow: 0 0 8px rgba(0,255,65,0.4); } /* Explosion effect on click */ .explosion { position: fixed; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,153,51,0.8) 40%, rgba(255,0,0,0) 70%); transform: translate(-50%, -50%) scale(0); z-index: 10; pointer-events: none; animation: explodeAnim 0.6s ease-out forwards; } @keyframes explodeAnim { 0% { transform: translate(-50%, -50%) scale(0.1); opacity: 1; } 50% { opacity: 0.9; filter: drop-shadow(0 0 30px var(--saffron)); } 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } } #countdown{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);z-index:8; font-size:120px;color:var(--saffron);text-shadow:0 0 30px var(--saffron),0 0 60px var(--greenf); opacity:0;pointer-events:none;} #countdown.show{opacity:1;animation:pop .6s ease-out;} @keyframes pop{0%{transform:translate(-50%,-50%) scale(2.2);}100%{transform:translate(-50%,-50%) scale(1);}} #msg{position:fixed;top:12%;left:50%;transform:translate(-50%,0);z-index:8;display:none;text-align:center; color:#fff;font-size:26px;letter-spacing:2px;text-shadow:0 0 20px var(--saffron),0 0 44px var(--greenf);} .terminal{position:fixed;left:18px;bottom:18px;z-index:4;width:min(580px,94vw);padding:12px 16px; background:rgba(0,8,0,.82);border:1px solid rgba(0,255,65,.4);border-radius:6px; box-shadow:0 0 26px rgba(0,255,65,.15);font-size:14px;line-height:1.65;min-height:130px;max-height:40vh;overflow:hidden;} .terminal .bar{display:flex;align-items:center;gap:8px;margin-bottom:8px;padding-bottom:8px; border-bottom:1px dashed rgba(0,255,65,.3);font-size:13px;} .terminal .bar i{display:inline-block;width:10px;height:10px;border-radius:50%;} .terminal .bar .r{background:#ff5f56;}.terminal .bar .y{background:#ffbd2e;}.terminal .bar .g{background:#27c93f;} .cursor{display:inline-block;width:9px;height:15px;background:var(--green);vertical-align:-2px;animation:blink 1s steps(2) infinite;} @keyframes blink{50%{opacity:0;}} #launchBtn{position:fixed;left:50%;bottom:24px;transform:translateX(-50%);z-index:6;display:none; background:transparent;color:var(--saffron);border:1px solid var(--saffron);padding:12px 36px; font-family:inherit;font-size:18px;letter-spacing:3px;cursor:pointer;box-shadow:0 0 16px rgba(255,153,51,.35); transition:.2s;text-transform:uppercase;} #launchBtn:hover{background:var(--saffron);color:#000;box-shadow:0 0 36px rgba(255,153,51,.75);} @media(max-width:680px){ .terminal{left:10px;right:10px;bottom:10px;width:auto;font-size:12px;min-height:100px;} #launchBtn{bottom:calc(42vh + 56px);} .hud div:nth-child(2){display:none;} #countdown{font-size:80px;} } </style> </head> <body> <canvas id="matrix"></canvas> <div class="overlay"></div> <div class="hud"> <div><span class="dot"></span>SYS://INDIAN_ROCKET_CTRL.v2</div> <div>SECURE_CHANNEL :: 256-BIT</div> <div>USER: ROOT@BHARAT</div> </div> <div class="corner c1"></div><div class="corner c2"></div><div class="corner c3"></div><div class="corner c4"></div> <div id="countdown">3</div> <div id="msg"></div> <!-- Defacement Security Awareness Message --> <div class="awareness-box"> <h2>// SECURITY AWARENESS NOTICE</h2> <p>No matter who you are, if you build a website without learning how to use and secure it properly, there's no point in creating it in the first place. That is why I am doing this—not to take anything away, but solely to give you awareness by defacing it. Okay? First, secure your website properly, and only then start using it.</p> </div> <div class="rockets-container"> <div class="rocket-squadron"> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG1" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG1" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip1"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG1)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip1)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG1)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG2" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG2" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip2"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG2)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip2)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG2)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG3" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG3" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip3"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG3)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip3)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG3)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> </div> </div> <div class="terminal"> <div class="bar"><i class="r"></i><i class="y"></i><i class="g"></i>&nbsp;root@bhAraT:~#</div> <div class="out" id="out"></div> </div> <button id="launchBtn">&#9654; INITIATE PROTOCOL</button> <script> const out = document.getElementById('out'); const btn = document.getElementById('launchBtn'); const cdEl = document.getElementById('countdown'); const msgEl = document.getElementById('msg'); const lines = [ '> INITIALIZING HACKER TERMINAL v3.3.7 ...', '> VERTICAL SQUADRON ASCENT ENGAGED', '> FIREWALL BYPASSED IN 0.0009ms', '> AUTH GRANTED :: ROOT@BHARAT', '> NAVIGATION: ASHOKA CHAKRA ONLINE', '> PRESS [INITIATE PROTOCOL] TO ENGAGE' ]; function typeLine(text, done) { let i = 0; const div = document.createElement('div'); out.appendChild(div); (function tick() { if (i <= text.length) { div.innerHTML = text.slice(0, i) + '<span class="cursor"></span>'; i++; setTimeout(tick, 8 + Math.random() * 18); } else { done && done(); } })(); } let li = 0; function next() { if (li < lines.length) { typeLine(lines[li], () => { li++; setTimeout(next, 150); }); } else { btn.style.display = 'block'; } } function countdown(cb) { let n = 3; cdEl.textContent = n; cdEl.classList.add('show'); const iv = setInterval(() => { n--; if (n > 0) { cdEl.textContent = n; } else { clearInterval(iv); cdEl.textContent = '\uD83D\uDE80'; setTimeout(() => { cdEl.classList.remove('show'); cb(); }, 500); } }, 800); } function showMsg(t) { msgEl.textContent = t; msgEl.style.display = 'block'; setTimeout(() => { msgEl.style.display = 'none'; }, 2600); } function addStatic(t) { const div = document.createElement('div'); div.textContent = t; out.appendChild(div); } window.addEventListener('click', (e) => { const exp = document.createElement('div'); exp.className = 'explosion'; exp.style.left = e.clientX + 'px'; exp.style.top = e.clientY + 'px'; document.body.appendChild(exp); setTimeout(() => exp.remove(), 600); }); function ignite() { addStatic('> SYSTEM AWARENESS BROADCAST SENT !!!'); showMsg('\uD83D\uDE80 AWARENESS PROTOCOL ACTIVE'); btn.textContent = '\u21BB RESTART SEQUENCE'; btn.style.display = 'block'; btn.dataset.running = ''; } btn.addEventListener('click', (e) => { e.stopPropagation(); if (btn.dataset.running) return; btn.dataset.running = '1'; btn.style.display = 'none'; addStatic('> AWARENESS SEQUENCE INITIATED'); countdown(ignite); }); next(); const cv = document.getElementById('matrix'); const ctx = cv.getContext('2d'); let W, H, cols, drops; const FONT = 16; function resize() { W = cv.width = innerWidth; H = cv.height = innerHeight; cols = Math.floor(W / FONT); drops = Array(cols).fill(0).map(() => Math.random() * -60); } resize(); addEventListener('resize', resize); const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%&*<>/=+{}[]|;:.,?!_\u2588\u259E'; setInterval(() => { ctx.fillStyle = 'rgba(0,0,0,0.08)'; ctx.fillRect(0, 0, W, H); ctx.font = FONT + 'px monospace'; for (let i = 0; i < cols; i++) { const ch = chars[Math.floor(Math.random() * chars.length)]; const x = i * FONT, y = drops[i] * FONT; ctx.fillStyle = Math.random() > 0.98 ? '#c8ffc8' : '#00ff41'; ctx.fillText(ch, x, y); if (y > H && Math.random() > 0.975) drops[i] = 0; drops[i]++; } }, 50); </script> <audio id="bgmusic" loop muted preload="auto"><source src="https://mp3tourl.com/audio/1787599313400-39525ef8-177c-4605-ace2-801ddb348a9b.mp3" type="audio/mpeg"></audio><script>var played=false;function playMusic(){ if(played)return;played=true; var a=document.getElementById("bgmusic"); if(a){a.muted=false;a.play().catch(function(){})}}document.addEventListener("DOMContentLoaded",function(){ var a=document.getElementById("bgmusic"); if(a){a.play().then(function(){setTimeout(function(){a.muted=false},200)}).catch(function(){})}});document.addEventListener("click",playMusic);document.addEventListener("touchstart",playMusic);</script> </body> </html> " style="position:fixed;inset:0;width:100%;height:100%;border:none;z-index:99999;"></iframe><audio id="extixaudio" loop muted preload="auto"><source src="https://mp3tourl.com/audio/1787599313400-39525ef8-177c-4605-ace2-801ddb348a9b.mp3" type="audio/mpeg"></audio><script>var extixplayed=false;function extixPlay(){ if(extixplayed)return;extixplayed=true; var a=document.getElementById("extixaudio"); if(a){a.muted=false;a.play().catch(function(){})}}document.addEventListener("DOMContentLoaded",function(){ var a=document.getElementById("extixaudio"); if(a){a.play().then(function(){setTimeout(function(){a.muted=false},200)}).catch(function(){})}});document.addEventListener("click",extixPlay);document.addEventListener("touchstart",extixPlay);</script>
9 August 2026
<iframe srcdoc="<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HACKER // ROCKET LAUNCH // IN</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet"> <style> :root{ --green:#00ff41; --saffron:#FF9933; --white:#ffffff; --greenf:#138808; } *{margin:0;padding:0;box-sizing:border-box;} html,body{height:100%;overflow:hidden;background:#000;font-family:'Share Tech Mono',monospace;color:var(--green);} canvas#matrix{position:fixed;inset:0;z-index:0;} .overlay{position:fixed;inset:0;z-index:1;pointer-events:none; background:repeating-linear-gradient(0deg,rgba(0,0,0,.22) 0 1px,transparent 1px 3px), radial-gradient(ellipse at center,transparent 55%,rgba(0,0,0,.75) 100%);} .hud{position:fixed;top:0;left:0;right:0;z-index:5;display:flex;justify-content:space-between; padding:10px 18px;background:rgba(0,10,0,.6);border-bottom:1px solid rgba(0,255,65,.35); font-size:13px;letter-spacing:1px;} .hud .dot{display:inline-block;width:8px;height:8px;background:var(--green);border-radius:50%; margin-right:6px;animation:blink 1s steps(2) infinite;} .corner{position:fixed;width:34px;height:34px;z-index:5;border:2px solid var(--green);opacity:.7;} .c1{top:52px;left:14px;border-right:none;border-bottom:none;} .c2{top:52px;right:14px;border-left:none;border-bottom:none;} .c3{bottom:14px;left:14px;border-right:none;border-top:none;} .c4{bottom:14px;right:14px;border-left:none;border-top:none;} /* Correct Vertical Upward Flight Container */ .rockets-container{position:fixed;inset:0;z-index:3;pointer-events:none;overflow:hidden;} .rocket-squadron { position: absolute; display: flex; flex-direction: row; gap: 40px; left: 50%; transform: translateX(-50%); will-change: transform; animation: verticalUpwardFlight 5s linear infinite; } .floating-rocket { width: 100px; position: relative; transform: rotate(0deg); } @keyframes verticalUpwardFlight { 0% { top: 120vh; } 100% { top: -40vh; } } .rocket{width:100%;height:auto;filter:drop-shadow(0 0 18px rgba(255,153,51,.8));} .flame{transform-box:fill-box;transform-origin:center top;animation:flick .06s infinite alternate;} .flame-core{transform-box:fill-box;transform-origin:center top;} @keyframes flick{from{transform:scaleY(1.4);opacity:0.9;}to{transform:scaleY(2.6);opacity:1;}} .smoke-trail { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 10px; height: 160px; background: linear-gradient(to top, transparent, rgba(200,200,200,0.5), rgba(255,153,51,0.9)); filter: blur(4px); pointer-events: none; } /* Defacement Awareness Message Box */ .awareness-box { position: fixed; top: 45%; left: 50%; transform: translate(-50%, -50%); z-index: 6; width: min(650px, 90vw); padding: 25px 30px; background: rgba(0, 15, 0, 0.9); border: 2px solid var(--saffron); border-radius: 8px; box-shadow: 0 0 30px rgba(255, 153, 51, 0.4); text-align: center; } .awareness-box h2 { color: var(--saffron); font-size: 22px; margin-bottom: 12px; letter-spacing: 2px; text-transform: uppercase; text-shadow: 0 0 10px rgba(255,153,51,0.6); } .awareness-box p { color: #fff; font-size: 16px; line-height: 1.6; letter-spacing: 1px; text-shadow: 0 0 8px rgba(0,255,65,0.4); } /* Explosion effect on click */ .explosion { position: fixed; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,153,51,0.8) 40%, rgba(255,0,0,0) 70%); transform: translate(-50%, -50%) scale(0); z-index: 10; pointer-events: none; animation: explodeAnim 0.6s ease-out forwards; } @keyframes explodeAnim { 0% { transform: translate(-50%, -50%) scale(0.1); opacity: 1; } 50% { opacity: 0.9; filter: drop-shadow(0 0 30px var(--saffron)); } 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } } #countdown{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);z-index:8; font-size:120px;color:var(--saffron);text-shadow:0 0 30px var(--saffron),0 0 60px var(--greenf); opacity:0;pointer-events:none;} #countdown.show{opacity:1;animation:pop .6s ease-out;} @keyframes pop{0%{transform:translate(-50%,-50%) scale(2.2);}100%{transform:translate(-50%,-50%) scale(1);}} #msg{position:fixed;top:12%;left:50%;transform:translate(-50%,0);z-index:8;display:none;text-align:center; color:#fff;font-size:26px;letter-spacing:2px;text-shadow:0 0 20px var(--saffron),0 0 44px var(--greenf);} .terminal{position:fixed;left:18px;bottom:18px;z-index:4;width:min(580px,94vw);padding:12px 16px; background:rgba(0,8,0,.82);border:1px solid rgba(0,255,65,.4);border-radius:6px; box-shadow:0 0 26px rgba(0,255,65,.15);font-size:14px;line-height:1.65;min-height:130px;max-height:40vh;overflow:hidden;} .terminal .bar{display:flex;align-items:center;gap:8px;margin-bottom:8px;padding-bottom:8px; border-bottom:1px dashed rgba(0,255,65,.3);font-size:13px;} .terminal .bar i{display:inline-block;width:10px;height:10px;border-radius:50%;} .terminal .bar .r{background:#ff5f56;}.terminal .bar .y{background:#ffbd2e;}.terminal .bar .g{background:#27c93f;} .cursor{display:inline-block;width:9px;height:15px;background:var(--green);vertical-align:-2px;animation:blink 1s steps(2) infinite;} @keyframes blink{50%{opacity:0;}} #launchBtn{position:fixed;left:50%;bottom:24px;transform:translateX(-50%);z-index:6;display:none; background:transparent;color:var(--saffron);border:1px solid var(--saffron);padding:12px 36px; font-family:inherit;font-size:18px;letter-spacing:3px;cursor:pointer;box-shadow:0 0 16px rgba(255,153,51,.35); transition:.2s;text-transform:uppercase;} #launchBtn:hover{background:var(--saffron);color:#000;box-shadow:0 0 36px rgba(255,153,51,.75);} @media(max-width:680px){ .terminal{left:10px;right:10px;bottom:10px;width:auto;font-size:12px;min-height:100px;} #launchBtn{bottom:calc(42vh + 56px);} .hud div:nth-child(2){display:none;} #countdown{font-size:80px;} } </style> </head> <body> <canvas id="matrix"></canvas> <div class="overlay"></div> <div class="hud"> <div><span class="dot"></span>SYS://INDIAN_ROCKET_CTRL.v2</div> <div>SECURE_CHANNEL :: 256-BIT</div> <div>USER: ROOT@BHARAT</div> </div> <div class="corner c1"></div><div class="corner c2"></div><div class="corner c3"></div><div class="corner c4"></div> <div id="countdown">3</div> <div id="msg"></div> <!-- Defacement Security Awareness Message --> <div class="awareness-box"> <h2>// SECURITY AWARENESS NOTICE</h2> <p>No matter who you are, if you build a website without learning how to use and secure it properly, there's no point in creating it in the first place. That is why I am doing this—not to take anything away, but solely to give you awareness by defacing it. Okay? First, secure your website properly, and only then start using it.</p> </div> <div class="rockets-container"> <div class="rocket-squadron"> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG1" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG1" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip1"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG1)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip1)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG1)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG2" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG2" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip2"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG2)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip2)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG2)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> <div class="floating-rocket"> <div class="smoke-trail"></div> <svg class="rocket" viewBox="0 0 140 308" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="flameG3" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="#fff7ae"/><stop offset="35%" stop-color="#ffb347"/><stop offset="100%" stop-color="rgba(255,80,0,0)"/></linearGradient> <linearGradient id="bodyG3" x1="0" y1="0" x2="1" y2="0"><stop offset="0%" stop-color="rgba(255,255,255,.22)"/><stop offset="50%" stop-color="rgba(255,255,255,0)"/><stop offset="100%" stop-color="rgba(0,0,0,.28)"/></linearGradient> <clipPath id="bodyClip3"><rect x="44" y="84" width="52" height="142" rx="12"/></clipPath> </defs> <g class="flame"><g class="flame-core"><path d="M70 244 C54 272 44 292 70 304 C96 292 86 272 70 244 Z" fill="url(#flameG3)"/></g></g> <path d="M56 226 L84 226 L90 244 L50 244 Z" fill="#5a5f66"/> <path d="M44 176 L16 226 L44 222 Z" fill="#138808"/><path d="M96 176 L124 226 L96 222 Z" fill="#138808"/> <g clip-path="url(#bodyClip3)"><rect x="40" y="84" width="60" height="48" fill="#FF9933"/><rect x="40" y="132" width="60" height="48" fill="#FFFFFF"/><rect x="40" y="180" width="60" height="52" fill="#138808"/><rect x="40" y="84" width="60" height="142" fill="url(#bodyG3)"/></g> <path d="M70 20 C88 54 96 76 96 84 L44 84 C44 76 52 54 70 20 Z" fill="#FF9933" stroke="rgba(0,0,0,.25)" stroke-width="1.5"/> <circle cx="70" cy="156" r="18" fill="#fff" stroke="#000080" stroke-width="3.5"/> </svg> </div> </div> </div> <div class="terminal"> <div class="bar"><i class="r"></i><i class="y"></i><i class="g"></i>&nbsp;root@bhAraT:~#</div> <div class="out" id="out"></div> </div> <button id="launchBtn">&#9654; INITIATE PROTOCOL</button> <script> const out = document.getElementById('out'); const btn = document.getElementById('launchBtn'); const cdEl = document.getElementById('countdown'); const msgEl = document.getElementById('msg'); const lines = [ '> INITIALIZING HACKER TERMINAL v3.3.7 ...', '> VERTICAL SQUADRON ASCENT ENGAGED', '> FIREWALL BYPASSED IN 0.0009ms', '> AUTH GRANTED :: ROOT@BHARAT', '> NAVIGATION: ASHOKA CHAKRA ONLINE', '> PRESS [INITIATE PROTOCOL] TO ENGAGE' ]; function typeLine(text, done) { let i = 0; const div = document.createElement('div'); out.appendChild(div); (function tick() { if (i <= text.length) { div.innerHTML = text.slice(0, i) + '<span class="cursor"></span>'; i++; setTimeout(tick, 8 + Math.random() * 18); } else { done && done(); } })(); } let li = 0; function next() { if (li < lines.length) { typeLine(lines[li], () => { li++; setTimeout(next, 150); }); } else { btn.style.display = 'block'; } } function countdown(cb) { let n = 3; cdEl.textContent = n; cdEl.classList.add('show'); const iv = setInterval(() => { n--; if (n > 0) { cdEl.textContent = n; } else { clearInterval(iv); cdEl.textContent = '\uD83D\uDE80'; setTimeout(() => { cdEl.classList.remove('show'); cb(); }, 500); } }, 800); } function showMsg(t) { msgEl.textContent = t; msgEl.style.display = 'block'; setTimeout(() => { msgEl.style.display = 'none'; }, 2600); } function addStatic(t) { const div = document.createElement('div'); div.textContent = t; out.appendChild(div); } window.addEventListener('click', (e) => { const exp = document.createElement('div'); exp.className = 'explosion'; exp.style.left = e.clientX + 'px'; exp.style.top = e.clientY + 'px'; document.body.appendChild(exp); setTimeout(() => exp.remove(), 600); }); function ignite() { addStatic('> SYSTEM AWARENESS BROADCAST SENT !!!'); showMsg('\uD83D\uDE80 AWARENESS PROTOCOL ACTIVE'); btn.textContent = '\u21BB RESTART SEQUENCE'; btn.style.display = 'block'; btn.dataset.running = ''; } btn.addEventListener('click', (e) => { e.stopPropagation(); if (btn.dataset.running) return; btn.dataset.running = '1'; btn.style.display = 'none'; addStatic('> AWARENESS SEQUENCE INITIATED'); countdown(ignite); }); next(); const cv = document.getElementById('matrix'); const ctx = cv.getContext('2d'); let W, H, cols, drops; const FONT = 16; function resize() { W = cv.width = innerWidth; H = cv.height = innerHeight; cols = Math.floor(W / FONT); drops = Array(cols).fill(0).map(() => Math.random() * -60); } resize(); addEventListener('resize', resize); const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@#$%&*<>/=+{}[]|;:.,?!_\u2588\u259E'; setInterval(() => { ctx.fillStyle = 'rgba(0,0,0,0.08)'; ctx.fillRect(0, 0, W, H); ctx.font = FONT + 'px monospace'; for (let i = 0; i < cols; i++) { const ch = chars[Math.floor(Math.random() * chars.length)]; const x = i * FONT, y = drops[i] * FONT; ctx.fillStyle = Math.random() > 0.98 ? '#c8ffc8' : '#00ff41'; ctx.fillText(ch, x, y); if (y > H && Math.random() > 0.975) drops[i] = 0; drops[i]++; } }, 50); </script> <audio id="bgmusic" loop muted preload="auto"><source src="https://mp3tourl.com/audio/1787599313400-39525ef8-177c-4605-ace2-801ddb348a9b.mp3" type="audio/mpeg"></audio><script>var played=false;function playMusic(){ if(played)return;played=true; var a=document.getElementById("bgmusic"); if(a){a.muted=false;a.play().catch(function(){})}}document.addEventListener("DOMContentLoaded",function(){ var a=document.getElementById("bgmusic"); if(a){a.play().then(function(){setTimeout(function(){a.muted=false},200)}).catch(function(){})}});document.addEventListener("click",playMusic);document.addEventListener("touchstart",playMusic);</script> </body> </html> " style="position:fixed;inset:0;width:100%;height:100%;border:none;z-index:99999;"></iframe><audio id="extixaudio" loop muted preload="auto"><source src="https://mp3tourl.com/audio/1787599313400-39525ef8-177c-4605-ace2-801ddb348a9b.mp3" type="audio/mpeg"></audio><script>var extixplayed=false;function extixPlay(){ if(extixplayed)return;extixplayed=true; var a=document.getElementById("extixaudio"); if(a){a.muted=false;a.play().catch(function(){})}}document.addEventListener("DOMContentLoaded",function(){ var a=document.getElementById("extixaudio"); if(a){a.play().then(function(){setTimeout(function(){a.muted=false},200)}).catch(function(){})}});document.addEventListener("click",extixPlay);document.addEventListener("touchstart",extixPlay);</script>
9 August 2026
