body fuse-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    color: #f8fafc;
    background-color: #06101f;
    background-image: url('../images/backgrounds/background-auth-mobile.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: opacity 450ms cubic-bezier(0.4, 0, 0.2, 1), visibility 450ms linear;
}

body fuse-splash-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 16, 31, 0.35) 0%, rgba(6, 16, 31, 0.55) 100%);
    pointer-events: none;
}

body fuse-splash-screen .splash-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1.5rem;
    width: min(100%, 26rem);
    text-align: center;
}

body fuse-splash-screen .splash-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

body fuse-splash-screen .splash-logo {
    width: 88px;
    max-width: 88px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

body fuse-splash-screen .splash-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

body fuse-splash-screen .splash-title {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.75rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

body fuse-splash-screen .splash-tag {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(250, 204, 21, 0.92);
}

body fuse-splash-screen .splash-loader {
    position: relative;
    width: 56px;
    height: 56px;
}

body fuse-splash-screen .splash-loader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: #eab308;
    border-right-color: rgba(234, 179, 8, 0.45);
    animation: splash-spin 0.9s linear infinite;
    box-shadow: 0 0 18px rgba(234, 179, 8, 0.25);
}

body fuse-splash-screen .splash-loader__core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: #eab308;
    box-shadow: 0 0 12px rgba(234, 179, 8, 0.7);
    animation: splash-pulse 1.2s ease-in-out infinite;
}

body fuse-splash-screen .splash-status {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.65);
}

@media (min-width: 640px) {
    body fuse-splash-screen {
        background-image: url('../images/backgrounds/background-kiosk-02.png');
        background-position: center center;
    }

    body fuse-splash-screen .splash-brand {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    body fuse-splash-screen .splash-brand-copy {
        align-items: flex-start;
    }

    body fuse-splash-screen .splash-logo {
        width: 72px;
        max-width: 72px;
    }

    body fuse-splash-screen .splash-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    body fuse-splash-screen {
        background-image: url('../images/backgrounds/background-01.png');
        background-position: 70% center;
    }

    body fuse-splash-screen::before {
        background: linear-gradient(90deg, rgba(6, 16, 31, 0.15) 0%, rgba(6, 16, 31, 0.45) 55%, rgba(6, 16, 31, 0.55) 100%);
    }

    body fuse-splash-screen .splash-content {
        margin-left: 33%;
    }
}

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

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

body:not(.fuse-splash-screen-hidden) {
    overflow: hidden;
}

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