/* Container Principale Widget Lout.fm API */
.radio-live-widget {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(18, 18, 22, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    /* 4px in alto (molto meno arrotondato), 0px in basso (dritto) */
    border-radius: 4px 4px 0 0; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    user-select: none;
	margin-top: 35px;
}

/* Badge LIVE con Pallino Rosso */
.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 59, 48, 0.4);
    color: #ff3b30;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

/* Pallino Rosso Pulsante */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3b30;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff3b30;
    animation: pulse-red 1.5s infinite ease-in-out;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(255, 59, 48, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

/* Sezione Contatore Ascoltatori */
.listeners-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.listeners-icon {
    display: inline-flex;
    align-items: center;
    color: #a0a0ab;
}

.listeners-count-number {
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-variant-numeric: tabular-nums; /* Mantiene la larghezza dei numeri fissa durante le animazioni */
}

.listeners-label {
    font-size: 12px;
    color: #a0a0ab;
    font-weight: 400;
}

