/* ===== OBS Follow (heart button + popup) ===== */

.obs-follow-icon-btn {
    background: none; border: none; cursor: pointer;
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; padding: 0;
}
.obs-follow-icon-btn svg {
    width: 22px; height: 22px;
    transition: all 0.25s;
}

/* Host info follow popup */
.obs-follow-popup {
    display: none; position: absolute; bottom: 36px; right: -10px;
    background: rgba(0,0,0,0.92); border-radius: 10px; padding: 10px 16px;
    white-space: nowrap; z-index: 9999; min-width: 180px;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.obs-follow-popup.show { display: flex; align-items: center; gap: 10px; }
.obs-follow-popup .ofp-label { color: #ccc; font-size: 13px; flex: 1; }
.obs-follow-popup .ofp-label b { color: #fff; }
.obs-follow-popup .ofp-btn {
    background: #ff4d6a; color: #fff; border: none; border-radius: 14px;
    padding: 4px 14px; font-size: 12px; font-weight: 600; cursor: pointer;
    white-space: nowrap; flex-shrink: 0;
}
.obs-follow-popup .ofp-btn.followed {
    background: #555; color: #aaa;
}
