/* VYBE shared social card/button styles. Included by /explore, /people, /profile. */

.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 rgba(239, 68, 68, 0.7);
    animation: vybePulse 1.6s infinite;
    display: inline-block;
}
@keyframes vybePulse {
    0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.live-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 100px;
    background: rgba(239, 68, 68, 0.12); color: #f87171;
    font-size: 0.78em; font-weight: 600;
}

.dj-grid {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.dj-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 20px 18px;
    transition: border-color 0.2s;
}
.dj-card:hover { border-color: rgba(255,255,255,0.12); }
.dj-card-link {
    display: block; text-align: center; text-decoration: none; color: inherit;
}
.dj-card-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    margin: 0 auto 10px; object-fit: cover;
}
.dj-card-avatar--initials {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.4em;
}
.dj-card-name { font-weight: 700; margin-bottom: 4px; color: #f0f0f5; }
.dj-card-bio {
    font-size: 0.82em; color: rgba(255,255,255,0.55);
    margin: 0 auto 8px; max-width: 28ch;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.dj-card-count { font-size: 0.78em; color: rgba(255,255,255,0.3); }
.follow-form { margin: 12px 0 0; display: flex; justify-content: center; }
.btn-follow {
    display: inline-block;
    padding: 8px 22px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.12); background: transparent;
    color: #f0f0f5; font-weight: 600; font-size: 0.85em;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-follow:hover {
    background: #7c3aed; color: #fff; border-color: #7c3aed;
}
.btn-follow[data-following="true"] {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
    border-color: transparent;
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    border-radius: 100px;
    background: #ef4444;
    color: #fff;
    font-size: 0.68em;
    font-weight: 700;
    margin-left: 6px;
    line-height: 1;
    vertical-align: middle;
}

.nav-wallet-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.22);
    color: #a78bfa;
    font-size: 0.82em;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-wallet-pill:hover {
    background: rgba(124, 58, 237, 0.22);
    color: #fff;
    border-color: rgba(124, 58, 237, 0.4);
}
.nav-wallet-icon { font-size: 0.9em; opacity: 0.9; }
.nav-wallet-num { font-variant-numeric: tabular-nums; }
