.player-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px;
    z-index: 5;
    position: relative;
    width: 85px;
}

.player-image-container {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    overflow: visible;
    position: relative;
    background: #333;
    padding: 2px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.player-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.player-kiss-count {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    background: url('/images/kiss.png') no-repeat center center;
    background-size: contain;
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}


.player-name-new {
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 5px;
    text-align: center;
    width: 100%;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}

.player-name-new.gender-male {
    color: #0ea5e9;
}

.player-name-new.gender-female {
    color: #ec4899;
}

.player-name-new.gender-none {
    color: #fff;
}


.player-card.is-me .player-image-container {
    border: 3px solid #fbbf24;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.player-card.is-me .player-name {
    color: #fbbf24;
    font-weight: 800;
}

/* Turn Indicator Pulse */
.player-card.is-turn .player-image-container {
    border-color: #22c55e !important;
    animation: pulseTurn 1.5s infinite;
}

@keyframes pulseTurn {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.player-card.is-turn .player-name {
    color: #22c55e;
}

.vip-frame {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #fbbf24;
    border-radius: 14px;
    pointer-events: none;
    display: none;
}

.player-card.is-vip .vip-frame {
    display: block;
}