#ngr-pwa-splash {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    pointer-events: none;
    font-family: inherit;
}

#ngr-pwa-splash.is-active {
    display: flex;
}

.ngr-pwa-splash__backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.92));
    backdrop-filter: blur(18px);
    opacity: 0.95;
}

.ngr-pwa-splash__content {
    position: relative;
    width: min(90vw, 420px);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    background: rgba(15, 23, 42, 0.92);
    box-shadow: 0 40px 80px -30px rgba(15, 23, 42, 0.65);
    text-align: center;
    color: #f8fafc;
    pointer-events: auto;
}

.ngr-pwa-splash__logo {
    width: 96px;
    height: auto;
    margin-inline: auto;
    margin-bottom: 1.25rem;
    border-radius: 22px;
    box-shadow: 0 18px 40px -20px rgba(37, 99, 235, 0.65);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(148, 163, 184, 0.15));
    padding: 0.75rem;
}

.ngr-pwa-splash__title {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.ngr-pwa-splash__subtitle {
    margin: 0 0 1.75rem;
    font-size: 0.95rem;
    line-height: 1.9rem;
    color: rgba(226, 232, 240, 0.85);
}

.ngr-pwa-splash__loader {
    display: inline-flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.ngr-pwa-splash__dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    animation: ngrPwaSplashPulse 1.4s infinite ease-in-out;
}

.ngr-pwa-splash__dot:nth-child(2) {
    animation-delay: 0.2s;
}

.ngr-pwa-splash__dot:nth-child(3) {
    animation-delay: 0.4s;
}

.ngr-pwa-splash__hint {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.9);
}

@keyframes ngrPwaSplashPulse {
    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (prefers-color-scheme: light) {
    .ngr-pwa-splash__content {
        background: rgba(255, 255, 255, 0.97);
        color: #0f172a;
    }

    .ngr-pwa-splash__subtitle {
        color: rgba(71, 85, 105, 0.85);
    }

    .ngr-pwa-splash__hint {
        color: rgba(71, 85, 105, 0.8);
    }
}
