/* Loading screen */
.loading-screen {
    text-align: center;
    padding: 40px 16px;
}

.loading-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
}

/* Progress steps */
.progress-steps {
    max-width: 320px;
    margin: 0 auto 24px;
    text-align: left;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    transition: opacity 0.3s;
}
.progress-step.pending {
    opacity: 0.35;
}
.progress-step.active {
    opacity: 1;
}
.progress-step.done {
    opacity: 0.7;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.3s;
}
.progress-step.pending .step-dot {
    background: var(--card2);
    color: var(--text3);
    border: 2px solid var(--border);
}
.progress-step.active .step-dot {
    background: var(--green);
    color: white;
    border: 2px solid var(--green);
    animation: pulse 1.5s ease infinite;
}
.progress-step.done .step-dot {
    background: var(--green);
    color: white;
    border: 2px solid var(--green);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(76,175,80,0); }
}

.step-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text2);
}
.progress-step.active .step-text {
    color: var(--text);
    font-weight: 700;
}

/* Progress bar */
.progress-bar-container {
    width: 100%;
    height: 6px;
    background: var(--card2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 16px;
}
.progress-bar-fill {
    height: 100%;
    background: var(--green);
    border-radius: 3px;
    transition: width 0.5s ease;
    width: 0%;
}

.loading-hint {
    font-size: 0.8rem;
    color: var(--text3);
    font-weight: 600;
    font-style: italic;
}
