/* AUTO-GENERATED by scripts/sync-boot-splash.mjs. Do not edit directly. */

.boot-splash {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5ecff;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    overflow: hidden;
}

.boot-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.boot-spinner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid rgba(229, 236, 255, 0.25);
    border-top-color: #e5ecff;
    animation: boot-spin 0.9s linear infinite;
}

.boot-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.boot-status {
    margin: 0;
    min-height: 18px;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(229, 236, 255, 0.78);
    text-align: center;
}

@keyframes boot-spin {
    to {
        transform: rotate(360deg);
    }
}
