.network-request-guard {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99995;
    pointer-events: none;
    display: flex;
    justify-content: center;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px) + var(--nrg-bar-lift, 0px));
    box-sizing: border-box;
}

.network-request-guard__toast {
    pointer-events: none;
    margin: 0;
    max-width: min(420px, calc(100vw - 28px));
    padding: 11px 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: #f1f5f9;
    border: 1px solid rgba(248, 250, 252, 0.12);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.45);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, sans-serif;
    font-size: clamp(12px, 3.2vw, 14px);
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.01em;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.network-request-guard__toast.is-out {
    opacity: 0;
    transform: translateY(6px);
}

.network-request-guard__toast--info {
    background: linear-gradient(180deg, #134e4a 0%, #0f766e 100%);
    border-color: rgba(167, 243, 208, 0.35);
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.4);
}
