/* ===== PROGRESS BAR ===== */
.progress {
    padding: 16px 0 8px;
}

.progress__bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    overflow: hidden;
}

.progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 100px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: progressFill 0.6s ease;
    box-shadow: 0 0 12px rgba(155, 115, 255, 0.6);
}

.progress__text {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== SCENARIO SCREEN ===== */
.scenario { gap: 20px; }

.scenario__card {
    padding: 28px 24px;
    animation: slideUp 0.5s ease;
}

.scenario__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    margin-bottom: 16px;
    opacity: 0.8;
}

.scenario__text {
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--text);
}

.response-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.response-area__label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.response-area__hint {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.response-area__input {
    width: 100%;
    min-height: 150px;
    padding: 18px;
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    resize: vertical;
    transition: var(--transition);
    caret-color: var(--primary-light);
}

.response-area__input:focus {
    outline: none;
    border-color: rgba(155, 115, 255, 0.6);
    background: rgba(155, 115, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(155, 115, 255, 0.1), 0 0 20px rgba(155, 115, 255, 0.12);
}

.response-area__input::placeholder { color: var(--text-muted); }

.response-area__counter {
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
    font-weight: 500;
}

.scenario__actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

/* ===== STICKERS ===== */

/* Scenario card header with sticker */
.scenario__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.scenario__sticker {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(155, 115, 255, 0.3));
    margin-left: 12px;
}

/* Mobile adjustments */
@media (max-width: 360px) {
    .scenario__sticker { width: 48px; height: 48px; }
}

/* ===== SCENARIO IMAGE ===== */
.scenario__image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-top: 12px;
}
