.elt-results-actions {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

.elt-action-buttons-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.elt-answers-review-section {
    background: #000;
    margin-top: 40px;
    position: relative;
}

.elt-answers-review-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.elt-answers-review-content h3 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-white);
    font-size: var(--fs-med);
    letter-spacing: -2px;
    line-height: 50px;
    font-weight: 400;
}

/* Score display styles */
.score-summary {
    text-align: center;
    background: rgba(8, 8, 8, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.score-percentage {
    font-size: 3.5em;
    font-weight: 500;
    color: var(--text-white);
    display: block;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.score-details {
    font-size: 1.1em;
    color: var(--muted-white);
    margin-bottom: 20px;
    line-height: 26px;
}

.cefr-badge {
    background: linear-gradient(0.07deg, rgba(0, 85, 255, 0.15) 0%, rgba(97, 97, 97, 0.09) 100%);
    border: 1px solid rgba(0, 85, 255, 0.15);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
    font-size: 1.1em;
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 85, 255, 0.25) 0px 5px 25px 0px;
}

/* Skill breakdown styles */
.skill-item {
    margin-bottom: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(0.07deg, rgba(0, 85, 255, 0.08) 0%, rgba(153, 153, 153, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(2px);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-name {
    font-weight: 500;
    color: var(--text-white);
    font-size: 18px;
    letter-spacing: -0.5px;
}

.skill-level {
    background: rgba(0, 85, 255, 0.15);
    border: 1px solid rgba(0, 85, 255, 0.25);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.skill-score {
    font-size: 1.4em;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.skill-feedback {
    color: var(--muted-white);
    font-style: italic;
    line-height: 26px;
}

/* Course recommendation styles */
.course-recommendation {
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.course-recommendation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0.07deg, rgba(0, 85, 255, 0.05) 0%, rgba(97, 97, 97, 0.02) 100%);
    z-index: 0;
}

.course-recommendation>* {
    position: relative;
    z-index: 1;
}

.course-recommendation h5 {
    color: var(--text-white);
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.course-title {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-white);
    letter-spacing: -0.2px;
}

.course-reason {
    color: var(--muted-white);
    margin-bottom: 20px;
    line-height: 26px;
}

.course-link {
    color: #0055ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.course-link:hover {
    color: #4a90e2;
    text-decoration: underline;
}

/* Next steps styles */
.strengths-section,
.improvements-section,
.action-steps {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(8, 8, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(2px);
}

.strengths-section h5,
.improvements-section h5,
.action-steps h5 {
    color: var(--text-white);
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.strengths-section ul,
.improvements-section ul,
.action-steps ul {
    padding-left: 20px;
    list-style: none;
}

.strengths-section li,
.improvements-section li,
.action-steps li {
    margin-bottom: 12px;
    color: var(--muted-white);
    line-height: 26px;
    position: relative;
}

.strengths-section li::before,
.improvements-section li::before,
.action-steps li::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 2px;
    min-width: 4px !important;
    min-height: 4px !important;
    background: #0055ff;
    border-radius: 50%;
}

/* Answer review styles */
.answer-item {
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.question-header h4 {
    color: var(--text-white);
    margin: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 26px;
}

.level-badge {
    background: rgba(0, 85, 255, 0.15);
    border: 1px solid rgba(0, 85, 255, 0.25);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.passage-text {
    background: linear-gradient(0.07deg, rgba(0, 85, 255, 0.08) 0%, rgba(153, 153, 153, 0.05) 100%);
    padding: 20px;
    border-left: 3px solid #0055ff;
    margin-bottom: 20px;
    font-style: italic;
    border-radius: 0 15px 15px 0;
    color: var(--muted-white);
    line-height: 26px;
}

.answer-details {
    margin-top: 20px;
}

.correct-answer {
    margin-bottom: 15px;
    padding: 15px;
    background: linear-gradient(0.07deg, rgba(34, 197, 94, 0.08) 0%, rgba(153, 153, 153, 0.05) 100%);
    border-left: 3px solid #22c55e;
    border-radius: 0 10px 10px 0;
    color: var(--muted-white);
    line-height: 26px;
}

.explanation {
    padding: 20px;
    background: linear-gradient(0.07deg, rgba(0, 85, 255, 0.08) 0%, rgba(153, 153, 153, 0.05) 100%);
    border-left: 3px solid #0055ff;
    border-radius: 0 15px 15px 0;
    color: var(--muted-white);
    line-height: 26px;
}

.correct-answer strong,
.explanation strong {
    color: var(--text-white);
    font-weight: 500;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .elt-answers-review-section {
        padding: 50px 0;
    }

    .elt-answers-review-content {
        padding: 0 15px;
    }

    .elt-answers-review-content h3 {
        font-size: 35px;
        line-height: 32px;
    }

    .score-summary,
    .skill-item,
    .course-recommendation,
    .answer-item {
        padding: 20px;
    }

    .score-percentage {
        font-size: 2.8em;
    }

    .question-header {
        flex-direction: column;
        gap: 10px;
    }

    .question-header h4 {
        font-size: 16px;
    }
}


div#elt-question-loader {
    color: #fff;
}