.sa-viewers-badge {
    position: fixed;
    left: 8px;
    bottom: 124px;
    z-index: 9999;
    display: none !important;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    font-size: 13px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.sa-viewers-badge.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sa-viewers-badge__icon {
    width: 16px;
    height: 16px;
    display: block;
    animation: sa-viewers-pulse 2s ease-in-out infinite;
}

.sa-viewers-badge__text {
    display: inline-block;
    white-space: nowrap;
}

@keyframes sa-viewers-pulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.18);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.85;
    }
}

@media (min-width: 992px) {
    .sa-viewers-badge {
        bottom: 16px;
    }
}
