/* ===== LEADERBOARD - Dark Modern Design ===== */
#status {
    position: absolute;
    width: 200px;
    background: linear-gradient(135deg, rgba(6, 6, 10, 0.97) 0%, rgba(3, 3, 8, 0.98) 100%);
    color: #e8e8e8;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(132, 94, 247, 0.12);
    top: 15px;
    right: 15px;
    border-radius: 10px;
    border: 1px solid rgba(132, 94, 247, 0.15);
    backdrop-filter: blur(20px) saturate(150%);
    font-size: 13px;
    display: none;
    flex-direction: column;
    z-index: 100;
    pointer-events: all;
    overflow: hidden;
}

#status.visible {
    display: flex;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#status .title {
    padding: 10px 14px;
    background: linear-gradient(90deg, rgba(132, 94, 247, 0.12) 0%, rgba(20, 255, 220, 0.06) 100%);
    border-bottom: 1px solid rgba(132, 94, 247, 0.2);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#status div:not(.title) {
    padding: 8px 14px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
    font-size: 12px;
}

#status div:not(.title):hover {
    background: rgba(255, 255, 255, 0.04);
}

#status div:not(.title):last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

#status .me {
    color: #b197fc;
    background: rgba(132, 94, 247, 0.12);
    font-weight: 600;
    box-shadow: inset 2px 0 0 #845ef7;
}

#status .me:hover {
    background: rgba(132, 94, 247, 0.18);
}

#status .position {
    margin-right: 6px;
    opacity: 0.7;
    font-weight: 600;
    min-width: 20px;
}
