.fa-player {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform-origin: center center; /* مهم جداً لتكبير الصورة من المنتصف */
    z-index: 5;
}

.fa-player img {
    width: 75px;               /* الحجم الطبيعي أثناء الوقوف */
    height: 75px;
    border-radius: 50%;
    border: 2px solid #fff;
    transition: all 0.8s ease;
    object-fit: cover;          /* تركيز على الوجه داخل الدائرة */
    object-position: 50% 25%;   /* رفع الصورة للأعلى قليلاً لزيادة تركيز الوجه */
    max-width: none !important; /* إزالة أي حدود للتكبير */
    max-height: none !important;
    will-change: transform, width, height;
}

.fa-player-name {
    text-align: center;
    font-size: 12px;
    margin-top: 2px;
    color: #fff;                /* اسم اللاعب باللون الأبيض */
    font-weight: bold;
    text-shadow: 1px 1px 3px #000; /* تظليل خفيف لزيادة الوضوح */
    pointer-events: none;
    z-index: 10;
}
