/* Effet de lueur et de soulèvement au survol */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.3) !important;
    border-color: #00e5ff;
}

/* On change la couleur du titre au survol de la carte parente */
.card-podium:hover h2 {
    color: #00e5ff !important;
}

/* Badge de rang spécifique au podium */
.rank-badge-gold {
    position: absolute;
    top: -15px;
    left: -10px;
    z-index: 10;
    background: linear-gradient(45deg, #ffd700, #ffae00);
    color: #000;
    padding: 6px 18px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transform: rotate(-5deg);
}

.live-stats-big {
    background: #000 !important; /* Fond noir pur pour le contraste */
    min-width: 140px;
    border: 1px solid rgba(0, 229, 255, 0.3) !important;
}

.live-stats-big .text-white {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5); /* Petit glow cyan */
}

.pulse-dot {
    animation: pulse-green 2s infinite;
    font-size: 0.8rem;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}
