/* ===========================
   QUIZ PAGE
=========================== */

.quiz-hero{

    background:linear-gradient(135deg,#2563eb,#1e40af);

    color:white;

    text-align:center;

    padding:70px 20px;

}

.quiz-hero h1{

    font-size:2.5rem;

    margin-bottom:15px;

}

.quiz-hero p{

    max-width:700px;

    margin:auto;

    font-size:1.1rem;

    line-height:1.7;

}

/* Card */

.quiz-container{

    padding:60px 20px;

    display:flex;

    justify-content:center;

}

.quiz-card{

    width:100%;

    max-width:650px;

    background:white;

    border-radius:15px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.quiz-card h2{

    text-align:center;

    margin-bottom:30px;

    color:#1e3a8a;

}

.form-group{

    margin-bottom:25px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-weight:600;

}

.form-group select{

    width:100%;

    padding:14px;

    border:2px solid #dbeafe;

    border-radius:10px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.form-group select:focus{

    border-color:#2563eb;

}

#startQuizBtn{

    width:100%;

    padding:15px;

    border:none;

    border-radius:10px;

    background:#2563eb;

    color:white;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

#startQuizBtn:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

}

.optionBtn{

width:100%;

padding:15px;

margin-bottom:15px;

font-size:16px;

border:none;

border-radius:10px;

background:#f3f4f6;

cursor:pointer;

transition:.3s;

}

.optionBtn:hover{

background:#2563eb;

color:white;

}

.quiz-buttons{

display:flex;

justify-content:space-between;

margin-top:25px;

}

.quiz-buttons button{

padding:12px 25px;

border:none;

border-radius:8px;

background:#2563eb;

color:white;

cursor:pointer;

font-size:16px;

}

/* ===========================
   RESULT SCREEN
=========================== */

#resultScreen{

    text-align:center;

}

#resultScreen h1{

    color:#1e3a8a;

    margin-bottom:20px;

}

#scoreText{

    font-size:2rem;

    color:#1d4ed8;

    margin-bottom:20px;

}

#performanceText{

    font-size:1.4rem;

    margin:25px 0;

    color:#16a34a;

    font-weight:bold;

}

#retryBtn{

    background:#2563eb;

    color:white;

    border:none;

    padding:15px 35px;

    font-size:18px;

    font-weight:bold;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

#retryBtn:hover{

    background:#1d4ed8;

    transform:translateY(-3px);

    box-shadow:0 8px 20px rgba(37,99,235,.3);

}