@keyframes nu-cap-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes nu-cap-slide-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nu-profit-cap-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 52vh 16px 24px;
    box-sizing: border-box;
    pointer-events: none;
    animation: nu-cap-fade-in 0.35s ease;
}

.nu-profit-cap-card {
    width: 100%;
    max-width: 380px;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    pointer-events: auto;
    animation: nu-cap-slide-up 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.nu-profit-cap-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #facc15;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nu-profit-cap-text {
    margin: 0;
    color: #f3f4f6;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
}

@media (min-width: 768px) {
    .nu-profit-cap-overlay {
        padding-top: 48vh;
    }
}
