QUIZ
Geboortejaar zegt niks.
Jouw vibe zegt alles.
Ontdek welke generatie jij echt bent β en of je een rebel bent of precies in het hokje past. πΉοΈ
`;
const blob = new Blob([html], {type:'text/html'}); const url = URL.createObjectURL(blob); const win = window.open(url,'_blank'); if(!win) alert('Sta pop-ups toe om de PDF te exporteren!'); }
// ============================================================
// UTILS
// ============================================================
function switchScreen(id){
document.querySelectorAll('.screen').forEach(s=>s.classList.remove('active'));
document.getElementById(id).classList.add('active');
}
function restart(){
birthInput.value='';
startBtn.disabled=true;
switchScreen('screen-intro');
}
