.splash-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-surface, #ffffff);
    padding: 24px;
}

.splash-logo-wrapper {
    animation: splashPulse 1.6s ease-in-out infinite alternate;
}

@keyframes splashPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}