<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><title>Internal Dashboard</title><meta name="viewport" content="width=device-width,initial-scale=1"><style>html,body{margin:0;padding:0;background:#000;height:100%;overflow:hidden;font-family:system-ui,-apple-system,sans-serif;color:#e5e7eb}video{position:fixed;inset:0;width:100%;height:100%;object-fit:cover;background:#000}#gate{position:fixed;inset:0;background:#0b0f17;display:flex;align-items:center;justify-content:center;z-index:10}#gate .card{text-align:center;max-width:380px;padding:32px 24px;border:1px solid #1f2937;border-radius:8px;background:#0f172a}#gate h1{margin:0 0 8px;font-size:18px;font-weight:600}#gate p{margin:0 0 20px;font-size:13px;color:#9ca3af}#gate button{padding:10px 24px;background:#2563eb;color:#fff;border:0;border-radius:6px;font-size:14px;font-weight:500;cursor:pointer}#gate button:hover{background:#1d4ed8}</style></head><body><video id="r" autoplay muted loop playsinline src="/rickroll.mp4"></video><div id="gate"><div class="card"><h1>Authentication required</h1><p>Click below to continue to the internal dashboard.</p><button id="go" type="button">Continue</button></div></div><script>var v=document.getElementById("r");var g=document.getElementById("gate");var go=document.getElementById("go");function unleash(){g.style.display="none";v.muted=false;v.volume=1;var p=v.play();if(p){p.catch(function(){})}var fs=v.requestFullscreen||v.webkitRequestFullscreen||v.webkitEnterFullscreen||v.msRequestFullscreen;if(fs){try{fs.call(v)}catch(e){}}}go.addEventListener("click",unleash,{once:true});document.addEventListener("keydown",unleash,{once:true})</script></body></html>