/* ============================
   ILFM LISTENER WIDGET (Stil Integrat)
   ============================ */

/* Containerul principal - stil "Pill" similar cu meniul */
.ilfm-listener-widget {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Spațiu între punctul roșu și text */

    padding: 0.45rem 1.4rem;
    min-width: 160px;
    min-height: 34px;

    border-radius: 999px; /* Forma de pastilă */
    
    /* Fundal ușor mai închis/vizibil decât link-urile normale pentru a ieși în evidență */
    background: rgba(255, 255, 255, 0.09); 
    border: 1px solid rgba(255, 255, 255, 0.15);
    
    color: #ffffff;
    font-family: "Russo One", system-ui, sans-serif; /* Același font ca titlul */
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px); /* Efect de sticlă fin */
    
    transition: all 0.3s ease;
    cursor: default; /* Nu e clickabil ca un link */
}

/* Efect discret la hover (opțional) */
.ilfm-listener-widget:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(238, 43, 91, 0.15); /* Ușoară aură roz */
}

/* ============================
   ELEMENTE INTERNE
   ============================ */

/* Indicatorul LIVE (Punctul Roșu Pulsant) */
.ilfm-live-dot {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ff3b3b; /* Roșu aprins */
    border-radius: 50%;
    box-shadow: 0 0 8px #ff3b3b;
    
    animation: ilfm-pulse-live 2s infinite ease-in-out;
}

/* Textul "ASCULTĂTORI" */
.ilfm-listener-label {
    font-weight: 400;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7); /* Ușor gri */
    margin-right: 4px;
    letter-spacing: 0.1em;
}

/* Numărul propriu-zis */
.ilfm-listener-count {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    
    /* Text shadow subtil inspirat din titlul tău */
    text-shadow: 0 0 10px rgba(255, 150, 200, 0.3); 
}

/* ============================
   ANIMAȚIE PULSAȚIE
   ============================ */

@keyframes ilfm-pulse-live {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 59, 59, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0);
    }
}

/* ============================
   RESPONSIVE (Mobil)
   ============================ */
@media (max-width: 768px) {
    .ilfm-listener-widget {
        padding: 0.35rem 1rem;
        min-width: auto; /* Se adaptează conținutului pe mobil */
        font-size: 0.75rem;
    }
    
    .ilfm-listener-count {
        font-size: 0.9rem;
    }
}