/* BÄM ENGINE — SLOW-BOOT VISUAL LAYER */

#slow-boot-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}
#slow-boot-overlay.sb-done {
    opacity: 0;
    pointer-events: none;
}

.sb-wrapper {
    width: 100%;
    max-width: 560px;
    padding: 40px;
    font-family: 'Courier New', monospace;
    color: #8892a0;
}

.sb-title {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #334155;
    margin-bottom: 32px;
    text-align: center;
}

.sb-bar-track {
    width: 100%;
    height: 3px;
    background: #1a1a2e;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}
.sb-bar-fill {
    height: 100%;
    width: 0%;
    background: #0050ef;
    transition: width 20ms linear;
    box-shadow: 0 0 8px rgba(0, 80, 239, 0.4);
}
.sb-bar-fill.sb-complete {
    background: #00ff88;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

.sb-pct {
    font-size: 10px;
    text-align: right;
    color: #475569;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.sb-phase {
    font-size: 13px;
    font-weight: 700;
    color: #0050ef;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    min-height: 20px;
}

.sb-log {
    max-height: 140px;
    overflow-y: auto;
    scrollbar-width: none;
}
.sb-log::-webkit-scrollbar { display: none; }

.sb-log-line {
    font-size: 9px;
    color: #334155;
    letter-spacing: 1px;
    line-height: 1.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
