/* Styles pour le compteur d'utilisateurs en ligne dans l'overlay */
.users-online-overlay {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: rgba(20, 241, 149, 0.1);
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
    animation: pulse-green 2s infinite;
    border: 1px solid rgba(20, 241, 149, 0.3);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 241, 149, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(20, 241, 149, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(20, 241, 149, 0);
    }
}

.users-online-overlay i {
    color: #14F195;
    margin-right: 8px;
    font-size: 14px;
}

.online-count-overlay {
    font-weight: bold;
    color: #14F195;
    margin-right: 5px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    font-size: 14px;
}

.online-label-overlay {
    opacity: 0.9;
    font-size: 13px;
}

/* Ajout d'un effet de "hot" pour attirer l'attention */
.users-online-overlay::after {
    content: "🔥";
    position: absolute;
    top: -7px;
    right: -7px;
    font-size: 14px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
