.rblt-social-proof {
    position: fixed;
    left: 18px;
    right: auto;
    bottom: 18px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: min(380px, calc(100vw - 36px));
    min-height: 48px;
    padding: 11px 16px;
    border: 1px solid rgba(131, 0, 233, 0.62);
    border-radius: 18px;
    background: rgba(18, 24, 38, 0.97);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(131, 0, 233, 0.08);
    color: #d1d5db;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0;
    opacity: 0;
    overflow-wrap: anywhere;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.38s ease, transform 0.38s ease;
    visibility: hidden;
}

.rblt-social-proof.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.rblt-social-proof__dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #9b2cff;
    box-shadow: 0 0 0 5px rgba(131, 0, 233, 0.15), 0 0 14px rgba(155, 44, 255, 0.65);
}

.rblt-social-proof__content {
    min-width: 0;
}

.rblt-social-proof__name {
    color: #f8fafc;
    font-weight: 700;
}

.rblt-social-proof__action {
    color: #d1d5db;
}

@media (max-width: 767px) {
    .rblt-social-proof {
        left: 12px;
        bottom: 12px;
        max-width: calc(100vw - 24px);
        min-height: 44px;
        gap: 9px;
        padding: 10px 13px;
        border-radius: 16px;
        font-size: 12.5px;
        line-height: 1.4;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .rblt-social-proof {
        max-width: min(360px, calc(100vw - 36px));
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rblt-social-proof {
        transform: none;
        transition: opacity 0.01ms linear;
    }
}
