/* Player List Styles */
.player-list-container {
    max-width: 600px;
    margin: 20px auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--mc-border);
    padding: 20px;
    border-radius: 8px;
    animation: fadeIn 0.5s ease;
}

.player-list-title {
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    color: var(--mc-blue-light);
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid var(--mc-border);
    padding-bottom: 10px;
}

.online-players-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.online-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.online-player img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-bottom: 5px;
    border: 2px solid var(--mc-border);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.online-player span {
    font-size: 0.7rem;
    color: var(--text-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}