.splash-screen {
    position: absolute;
    inset: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(circle at top, rgba(249, 241, 231, 0.9), transparent 55%),
        radial-gradient(circle at bottom, rgba(255, 186, 122, 0.3), transparent 65%),
        #ffffff;
    overflow: hidden;
    isolation: isolate;
}

.splash-screen::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
    filter: blur(16px);
    opacity: 0.6;
    animation: splash-glow 5s ease-in-out infinite;
}

.splash-screen .splash-loader {
    position: relative;
    width: clamp(120px, 9vw, 150px);
    height: clamp(120px, 9vw, 150px);
    border-radius: 50%;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation: splash-float 4s ease-in-out infinite;
}

.splash-screen .splash-loader::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(from 90deg, rgba(255, 186, 122, 0.5), rgba(249, 115, 22, 0.35), rgba(255, 186, 122, 0.5));
    filter: blur(24px);
    opacity: 0.85;
    animation: splash-spin 6s linear infinite;
}

.splash-screen .splash-loader .splash-logo {
    position: relative;
    width: clamp(72px, 6vw, 88px);
    height: clamp(72px, 6vw, 88px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    animation: splash-pulse 1.8s ease-in-out infinite;
}

.splash-screen .splash-loader .splash-logo svg {
    width: 100%;
    height: 100%;
    color: #f97316;
    filter: drop-shadow(0 12px 25px rgba(249, 115, 22, 0.4));
}

.splash-screen .splash-loader .splash-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes splash-pulse {
    0%,
    100% {
        transform: scale(0.94);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes splash-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes splash-glow {
    0%,
    100% {
        transform: scale(0.85);
        opacity: 0.45;
    }

    50% {
        transform: scale(1);
        opacity: 0.85;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .splash-loader,
    .splash-loader::before,
    .splash-logo {
        animation: none !important;
    }
}
