/* ===========================
   IGBO TONE QUIZ
=========================== */

.igbo-tone-quiz{
    max-width:760px;
    margin:40px auto;
    padding:30px;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    font-family:inherit;
}

.quiz-title{
    font-size:32px;
    font-weight:700;
    color:#6E2C91;
    margin-bottom:10px;
}

.quiz-description{
    color:#666;
    margin-bottom:30px;
}

.practice-grid{
    display:grid;
    gap:20px;
}

.practice-card{
    border:1px solid #ececec;
    border-radius:16px;
    padding:24px;
    transition:.25s;
}

.practice-card:hover{
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transform:translateY(-3px);
}

.practice-card h3{
    margin:0 0 12px;
    color:#6E2C91;
    font-size:24px;
}

.practice-card p{
    margin:8px 0;
}

.practice-button{
    display:inline-block;
    margin-top:18px;
    background:#F39C12;
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
    transition:.25s;
}

.practice-button:hover{
    background:#e67e22;
    color:white;
}

.progress{
    width:100%;
    height:10px;
    background:#eeeeee;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:30px;
}

.progress-bar{
    height:100%;
    width:0%;
    background:#F39C12;
    transition:.4s;
}

.quiz-question{
    font-size:34px;
    font-weight:700;
    text-align:center;
    margin:25px 0;
}

.answer-grid{
    display:grid;
    gap:15px;
}

.answer-button{
    background:white;
    border:2px solid #dddddd;
    border-radius:14px;
    padding:18px;
    font-size:22px;
    cursor:pointer;
    transition:.25s;
}

.answer-button:hover{
    border-color:#F39C12;
}

.answer-button.correct{
    background:#2ecc71;
    color:white;
    border-color:#2ecc71;
}

.answer-button.wrong{
    background:#e74c3c;
    color:white;
    border-color:#e74c3c;
}

.correct-card{
    margin-top:25px;
    padding:18px;
    border-radius:12px;
    background:#f7f7f7;
    border-left:5px solid #6E2C91;
}

.audio-button{
    display:block;
    margin:25px auto;
    background:#6E2C91;
    color:white;
    border:none;
    padding:14px 28px;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
}

.audio-button:hover{
    background:#5b2377;
}

@media(max-width:768px){

.quiz-title{
font-size:28px;
}

.quiz-question{
font-size:28px;
}

.answer-button{
font-size:20px;
padding:16px;
}

.igbo-tone-quiz{
padding:20px;
}

}