/* ============================================================
   HOME — sections LIVE maintenant + Demarre bientot + etat vide
   ============================================================ */

/* Pastille LIVE qui pulse devant le titre */
.jb-live-dot-pulse {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff3b6b;
    margin-right: 8px;
    position: relative;
    vertical-align: middle;
    box-shadow: 0 0 0 0 rgba(255, 59, 107, 0.6);
    animation: jbLiveDotPulse 1.6s ease-out infinite;
}
@keyframes jbLiveDotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 59, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 107, 0);
    }
}

/* Compteur a cote du titre de section */
.jb-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 10px;
    margin-left: 10px;
    background: rgba(255, 59, 107, 0.15);
    color: var(--jb-accent, #ff3b6b);
    border: 1px solid rgba(255, 59, 107, 0.3);
    border-radius: 13px;
    font-size: 12px;
    font-weight: 700;
    vertical-align: middle;
}

/* Etat vide engageant si pas de rooms du tout */
.jb-empty-hero {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(255, 59, 107, 0.08), rgba(91, 140, 255, 0.06));
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}
.jb-empty-hero__icon {
    font-size: 64px;
    margin-bottom: 12px;
    animation: jbEmptyBounce 2s ease-in-out infinite;
    display: inline-block;
}
@keyframes jbEmptyBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.jb-empty-hero h3 {
    font-size: 22px;
    color: var(--jb-text);
    margin: 0 0 8px;
    font-weight: 700;
}
.jb-empty-hero p {
    color: var(--jb-text-muted);
    font-size: 14px;
    margin: 0 0 22px;
    line-height: 1.5;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
