const quizContainer = document.getElementById('quiz'); const scoreContainer = document.getElementById('score'); const quizInfoContainer = document.getElementById('quiz-info'); let totalQuestions = 0; let correctAnswers = 0; // Remove the DOMContentLoaded event listener since initialization is now handled in index.html // The displayQuiz function will be called from the HTML after quiz data is loaded function displayQuiz(data) { const quizContainer = document.getElementById('quiz'); // Clear any existing content quizContainer.innerHTML = ''; data.cards.forEach((question, index) => { const questionDiv = document.createElement('div'); questionDiv.className = 'question-container'; if (index === 0) questionDiv.classList.add('active'); if (question.type === 'concept') { questionDiv.innerHTML = `
${question.content.sentence1}
${question.content.sentence2}
${question.content.sentence3}