﻿#loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

    #loading-overlay.lo-visible {
        opacity: 1;
        pointer-events: all;
    }

.lo-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 28, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lo-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 40px 48px;
    background: rgba(20, 30, 50, 0.6);
    border: 1px solid rgba(100, 160, 255, 0.12);
    border-radius: 16px;
    min-width: 280px;
}

.lo-bird-stage {
    width: 220px;
    height: 100px;
    overflow: hidden;
    position: relative;
}

#lo-bird-svg {
    display: block;
}

.lo-title {
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    color: rgba(220, 238, 255, 0.95);
    margin: 0;
    letter-spacing: 0.01em;
}

.lo-subtitle {
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    color: rgba(160, 200, 255, 0.55);
    margin: 0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lo-bar-wrap {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}

.lo-bar-fill {
    height: 100%;
    width: 0%;
    background: rgba(100, 180, 255, 0.75);
    border-radius: 99px;
    transition: width 0.12s linear;
}
