.chat-player-card-overlay {

    position: fixed;

    inset: 0;

    background:
        rgba(0,0,0,0.45);

    backdrop-filter: blur(4px);

    z-index: 100000;

    display: flex;
    align-items: center;
    justify-content: center;

    animation:
        chatFade .2s ease;
}

.chat-player-card {

    width: 380px;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(18,18,18,0.98),
            rgba(10,10,10,0.98)
        );

    border:
        1px solid rgba(255,255,255,0.06);

    padding: 26px;

    box-shadow:
        0 0 60px rgba(0,0,0,0.55);

    backdrop-filter: blur(18px);

    animation:
        chatFade .18s ease;
}

.chat-player-top {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.chat-player-name {

    color: white;

    font-size: 22px;
    font-weight: 800;
}

.chat-player-name.vip {

    background:
        linear-gradient(
            90deg,
            #ffd95e,
            #ff9f43
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color:
        transparent;
}

.chat-player-level {

    margin-top: 4px;

    color:
        rgba(255,255,255,0.45);

    font-size: 13px;
}

.chat-player-vip {

    height: 30px;

    padding: 0 12px;

    border-radius: 30px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            #ffd95e,
            #ff9f43
        );

    color: #111;

    font-size: 12px;
    font-weight: 800;
}

.chat-player-stats {

    display: flex;

    gap: 10px;

    margin-bottom: 24px;
}

.chat-player-stat {

    flex: 1;

    height: 58px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,0.04);

    color: white;

    font-weight: 700;
}

.chat-player-actions {

    display: flex;

    gap: 10px;
}

.chat-player-button {

    flex: 1;

    height: 54px;

    border: none;

    border-radius: 16px;

    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            #ff4747,
            #ff2525
        );

    color: white;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: .3px;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

    box-shadow:
        0 10px 24px rgba(255,70,70,0.16);
}

.chat-player-button:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 36px rgba(255,70,70,0.26);
}