.nscp-cash-banner-wrap {
    --nscp-bg-start: #111827;
    --nscp-bg-end: #0f766e;
    --nscp-accent: #facc15;
    --nscp-text: #ffffff;
    width: min(1380px, calc(100% - 28px));
    margin: 12px auto 18px;
    position: relative;
    z-index: 4;
    box-sizing: border-box;
}

.nscp-cash-banner {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    padding: 8px 14px 8px 12px;
    color: var(--nscp-text);
    background: linear-gradient(115deg, var(--nscp-bg-start), var(--nscp-bg-end));
    background:
        radial-gradient(circle at 9% 20%, color-mix(in srgb, var(--nscp-accent) 18%, transparent), transparent 34%),
        linear-gradient(115deg, var(--nscp-bg-start), var(--nscp-bg-end));
    border: 1px solid color-mix(in srgb, var(--nscp-text) 15%, transparent);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .16);
    isolation: isolate;
    box-sizing: border-box;
}

.nscp-cash-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.055), transparent);
}

.nscp-cash-banner__shine {
    position: absolute;
    top: -80%;
    right: -20%;
    width: 18%;
    height: 250%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.20), transparent);
    filter: blur(2px);
    animation: nscp-banner-shine 5.5s ease-in-out infinite;
    pointer-events: none;
}

.nscp-cash-banner__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--nscp-bg-start);
    background: var(--nscp-accent);
    border-radius: 12px;
    box-shadow: 0 5px 14px rgba(0,0,0,.16);
}

.nscp-cash-banner__copy {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex: 1 1 auto;
    line-height: 1.35;
}

.nscp-cash-banner__title {
    color: inherit;
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: -.2px;
}

.nscp-cash-banner__subtext {
    color: rgba(255,255,255,.78);
    color: color-mix(in srgb, var(--nscp-text) 78%, transparent);
    font-size: 12.5px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nscp-cash-banner__badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 11px;
    color: var(--nscp-bg-start);
    background: var(--nscp-accent);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

@keyframes nscp-banner-shine {
    0%, 64% { right: -25%; opacity: 0; }
    69% { opacity: .85; }
    83% { right: 112%; opacity: .65; }
    89%, 100% { right: 112%; opacity: 0; }
}

@media (max-width: 767px) {
    .nscp-cash-banner-wrap {
        width: calc(100% - 20px);
        margin-top: 9px;
        margin-bottom: 14px;
    }

    .nscp-cash-banner {
        min-height: 56px;
        gap: 9px;
        padding: 8px 10px;
        border-radius: 12px;
    }

    .nscp-cash-banner__icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 10px;
    }

    .nscp-cash-banner__copy {
        display: block;
        overflow: hidden;
    }

    .nscp-cash-banner__title,
    .nscp-cash-banner__subtext {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nscp-cash-banner__title {
        font-size: 14.5px;
        margin-bottom: 2px;
    }

    .nscp-cash-banner__subtext {
        font-size: 10.5px;
        opacity: .92;
    }

    .nscp-cash-banner__badge {
        min-height: 27px;
        padding-inline: 9px;
        font-size: 10px;
    }
}

@media (max-width: 420px) {
    .nscp-cash-banner__badge {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nscp-cash-banner__shine {
        animation: none;
        display: none;
    }
}
