#ssp-splash {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .6s ease;
}

.ssp-content {
    text-align: center;
    padding: 20px;
}

.ssp-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 20px;
}

.ssp-text {
    font-size: 24px;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.ssp-loader {
    width: 45px;
    height: 45px;
    border: 4px solid rgba(255,255,255,.2);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: ssp-spin 1s linear infinite;
    margin: auto;
}

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

#ssp-preload-frame {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}