/* ========================================
   FUTSAL ATHLETES CARDS - Cache Busting v2
   Updated: 2025 (Force refresh in IIS)
   ======================================== */

.athlete-card {
    @apply bg-white rounded-2xl overflow-hidden shadow-xl hover:shadow-2xl transition-all group border-2 border-orange-600;
}

.athlete-card-image {
    @apply relative w-full h-56 bg-white flex items-center justify-center overflow-hidden;
}

.athlete-card-image img {
    @apply w-full h-full object-contain object-center group-hover:scale-110 transition-transform duration-300;
}

.athlete-card-number {
    @apply absolute top-2 left-2 bg-orange-600 text-white rounded-full w-10 h-10 flex items-center justify-center font-black text-sm shadow-md;
}

.athlete-card-footer {
    @apply p-5 text-center;
}

.athlete-card-name {
    @apply text-sm font-bold text-slate-950 mb-2 line-clamp-2 min-h-[2.5rem] flex items-center justify-center;
}

.athlete-placeholder {
    @apply fa-solid fa-user text-6xl text-slate-200;
}
