:root {
    --bg-dark: #0a0a0c;
    --card-bg: #161b22;
    --text-main: #e6edf3;
    --accent-blue: #58a6ff;
    --neon-green: #2ecc71;
    --neon-orange: #f39c12;
    --neon-red: #e74c3c;
    --glass: rgba(255, 255, 255, 0.05);
}

body {
    background: url('img/apocalypse.avif') no-repeat center center fixed; 
    background-color: #0a0a0c;
    background-size: cover;
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}


.leaderboard-section {
    margin-top: 30px;
    background: var(--glass);
    padding: 15px;
    width: 50%;
    border-radius: 12px;
    border: 1px solid gray;
}

#leaderboardTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

#leaderboardTable th {
    color: var(--accent-blue);
    text-align: left;
    font-size: 1rem;
    padding: 8px;
    border-bottom: 1px solid black;
   
}

#leaderboardTable td {
    padding: 10px 8px;
    font-size: 1rem;
}

/* .score {
    color: var(--neon-green);
    font-family: monospace;
    font-weight: bold;
} */