.masp-live-wrap{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.masp-box{
    background: linear-gradient(135deg, #181818, #252525);
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    margin: 20px 0;
    text-align:center;
}

.masp-top{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.masp-count{
    width:100%;
    text-align:center;
}
}

.masp-players-title {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
}

.masp-player-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.masp-player-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    transition: transform .2s ease, background .2s ease;
}

.masp-player-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.11);
}

.masp-player-card img {
    width: auto;
    height: 96px;
    max-width: 96px;
    image-rendering: pixelated;
    display: block;
    margin: 0 auto 8px;
}

.masp-player-name {
    font-weight: 700;
    font-size: 14px;
    word-break: break-word;
}

.masp-empty {
    color: #cfcfcf;
    margin-bottom: 0;
}

.masp-updated {
    color: #aaa;
    font-size: 12px;
    margin-top: 18px;
}

