body portai-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    color: #F9FAFB;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body portai-splash-screen img {
    width: 20%;
    animation: pulse-scale 2s infinite ease-in-out;
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

body.portai-splash-screen-hidden portai-splash-screen {
    visibility: hidden;
    opacity: 0;
}
