.test-header-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.test-counter {
    font-size: 13px;
    color: #AEAEAE;
    font-weight: 500;
}

.question-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.question-block:last-of-type {
    border-bottom: none;
}

.q-num {
    font-size: 11px;
    font-weight: bold;
    color: #E06E37;
    margin-bottom: 6px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.q-text {
    font-size: 15px;
    color: #1d3d66;
    line-height: 1.6;
    margin-bottom: 12px;
    font-weight: 600;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.option-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.5px solid #e8eef4;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: #1d3d66;
    line-height: 1.4;
    user-select: none;
}

.option-label input { display: none; }

.option-label:hover {
    background: #f0f5fa;
    border-color: #1d3d66;
}

.option-label.selected {
    background: #e8eef8;
    border-color: #1d3d66;
    font-weight: 500;
}

.option-label.correct {
    background: #eaf6ee;
    border-color: #27ae60;
    color: #1e7a40;
}

.option-label.wrong {
    background: #fdecea;
    border-color: #e74c3c;
    color: #c0392b;
}

.option-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #AEAEAE;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.2s;
}

.option-label.selected .option-circle {
    border-color: #1d3d66;
    background: #1d3d66;
    color: white;
}

.option-label.correct .option-circle {
    border-color: #27ae60;
    background: #27ae60;
    color: white;
}

.option-label.wrong .option-circle {
    border-color: #e74c3c;
    background: #e74c3c;
    color: white;
}

/* РЕЗУЛЬТАТ */
.result-box {
    display: none;
    margin: 24px 0;
    background: #f7f9fc;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    border: 1.5px solid #e0e8f0;
}

.result-score {
    font-size: 48px;
    font-weight: bold;
    color: #1d3d66;
    line-height: 1;
}

.result-label {
    font-size: 14px;
    color: #AEAEAE;
    margin-top: 6px;
}

.result-msg {
    font-size: 15px;
    color: #1d3d66;
    margin-top: 12px;
    font-weight: 600;
}

/* КНОПКИ */
.test-actions {
    display: flex;
    justify-content: center;
    margin: 24px 0 32px;
}

.btn-check {
    padding: 13px 48px;
    background: #1d3d66;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-check:hover {
    background: #162e4d;
    transform: translateY(-2px);
}

.btn-retry {
    display: none;
    padding: 13px 48px;
    background: #E06E37;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-retry:hover {
    background: #c55e2d;
    transform: translateY(-2px);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 480px) {
    .q-text { font-size: 14px; }
    .option-label { font-size: 13px; padding: 9px 12px; }
    .result-score { font-size: 36px; }
    .btn-check, .btn-retry { padding: 12px 32px; font-size: 14px; }
}