← All Games
◐ LIGHT MODE
EPSTEIN MODE — DECLASSIFIED Act III: The Interregnum
PATTERN LIBRARY — CLASSIFIED EDITION
✕
In Epstein Mode, patterns may be partially redacted. Reveal at your own cost.
// ── SHARE BUTTON ───────────────────────────────────────────────── function shareVerdict(claimText, verdict, annotation) { const short = claimText.length > 100 ? claimText.slice(0,97)+'...' : claimText; const ann = annotation.length > 120 ? annotation.slice(0,117)+'...' : annotation; const text = `DECLASSIFIED by Sean\n\nClaim: ${short}\nVerdict: ${verdict}\n\n${ann}\n\ndeclassifiedbysean.com`; if (navigator.share) { navigator.share({title:'DECLASSIFIED: '+verdict, text}).catch(()=>{}); } else { navigator.clipboard.writeText(text).then(()=>{ const btn = document.querySelector('.share-verdict-btn'); if(btn){const orig=btn.textContent;btn.textContent='COPIED ✓';setTimeout(()=>btn.textContent=orig,2000);} }).catch(()=>{}); } } // ── PERSISTENT PROGRESS REPORTER ───────────────────────────────── function reportActProgress(actId, score, total, correct) { try { const key = 'declassified_progress'; const data = JSON.parse(localStorage.getItem(key)||'{}'); data[actId] = {score, total, correct, ts: Date.now()}; localStorage.setItem(key, JSON.stringify(data)); } catch(e) {} }