/* Buy Menu */
#buy-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: default;
}

.buy-menu-content {
    background: rgba(20, 22, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    min-width: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.buy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.buy-header h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ddd;
}

.buy-money {
    font-size: 22px;
    font-weight: 700;
    color: #5dff5d;
    font-family: 'Consolas', monospace;
}

.buy-categories {
    display: flex;
    gap: 25px;
}

.buy-category h3 {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.buy-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s;
    min-width: 200px;
}

.buy-item:hover {
    background: rgba(93, 157, 213, 0.1);
    border-color: rgba(93, 157, 213, 0.3);
}

.buy-item.cant-afford {
    opacity: 0.4;
    cursor: not-allowed;
}

.buy-item.purchased {
    border-color: rgba(93, 255, 93, 0.3);
    background: rgba(93, 255, 93, 0.05);
}

.weapon-name {
    flex: 1;
    font-size: 13px;
    color: #ccc;
}

.weapon-price {
    font-size: 12px;
    color: #5dff5d;
    font-family: 'Consolas', monospace;
}

.weapon-key {
    font-size: 10px;
    color: #555;
    font-family: 'Consolas', monospace;
}

.buy-footer {
    margin-top: 15px;
    text-align: center;
    font-size: 11px;
    color: #444;
}

/* Scoreboard */
#scoreboard {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.scoreboard-content {
    background: rgba(15, 18, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px 30px;
    min-width: 550px;
}

.scoreboard-content h2 {
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 15px;
}

.scoreboard-players {
    display: flex;
    flex-direction: column;
}

.sb-player {
    display: flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sb-player.local-player {
    background: rgba(180, 77, 255, 0.08);
}

.sb-name {
    flex: 1;
    color: #ccc;
    font-family: 'Consolas', monospace;
}

.sb-kills, .sb-deaths, .sb-score {
    width: 50px;
    text-align: center;
    color: #888;
    font-family: 'Consolas', monospace;
    font-size: 11px;
}

.sb-header {
    display: flex;
    padding: 2px 10px;
    margin-bottom: 4px;
}

.sb-header span {
    font-size: 10px;
    color: #555;
    letter-spacing: 0.5px;
}

.sb-header .sb-name { color: #555; }
