.follow-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    background-color: var(--accent-red);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* Animations de transition fluides */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.follow-badge i {
    font-size: 10px !important;
    margin: 0;
    filter: none;
    transition: transform 0.2s ease;
}

.follow-badge:active {
    transform: translateX(-50%) scale(0.8);
}

.follow-badge.following i {
    transform: rotate(360deg);
}

/* Classe pour animer les compteurs de followers */
.count-animate {
    animation: bounceScale 0.4s ease-in-out;
}

@keyframes bounceScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
        color: var(--accent-red);
    }

    100% {
        transform: scale(1);
    }
}