#lyra-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 32px 16px;
    background: #022448;
    color: #ffffff;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

#lyra-splash.lyra-splash--hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#lyra-splash .lyra-splash-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(30, 58, 95, 0.2), transparent);
    pointer-events: none;
}

#lyra-splash .lyra-splash-center {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 24rem;
    z-index: 1;
}

#lyra-splash .lyra-splash-logo-wrap {
    animation: lyra-pulse-soft 3s infinite ease-in-out;
}

#lyra-splash .lyra-splash-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.35));
    display: block;
    margin: 0 auto;
}

#lyra-splash .lyra-splash-tagline {
    text-align: center;
    margin: 32px 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    opacity: 0.9;
}

#lyra-splash .lyra-splash-progress-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lyra-splash .lyra-splash-ring {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lyra-splash .lyra-splash-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

#lyra-splash .lyra-splash-ring-track {
    color: rgba(255, 255, 255, 0.1);
}

#lyra-splash .lyra-splash-ring-fill {
    color: #7db6ff;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

#lyra-splash .lyra-splash-pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

#lyra-splash .lyra-splash-status {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7db6ff;
    padding: 4px 8px;
}

#lyra-splash .lyra-splash-footer {
    width: 100%;
    max-width: 24rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

#lyra-splash .lyra-splash-engine {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(138, 164, 207, 0.8);
}

#lyra-splash .lyra-splash-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7db6ff;
    animation: lyra-pulse-soft 2s infinite ease-in-out;
}

#lyra-splash .lyra-splash-version {
    font-size: 11px;
    color: rgba(138, 164, 207, 0.5);
}

@keyframes lyra-pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
