body {
    font-family: Arial, sans-serif;
    background: #000000;
    background-image: radial-gradient(#A87C66, 10%, transparent 50%);
    background-size: 5px 5px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    
}

h2 {
    margin-bottom: 8px;
    font-weight: normal;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

select {
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    background: #ff007f;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.6);
    transition: background 0.3s ease;
}

select:hover {
    background: #ff3399;
}

.leaderboard {
    background: #1a0028;
    border-radius: 15px;
    padding: 20px 40px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.7);
    max-width: 400px;
    width: 100%;
    margin-top: 20px;
}

.leaderboard h1 {
    background: #ff007f;
    border-radius: 10px;
    padding: 10px;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.player {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1em;
}

.rank {
    font-weight: bold;
    width: 30px;
    text-align: center;
}

.name {
    flex: 1;
    text-align: left;
}

.points {
    font-weight: bold;
    color: #ffd700;
}

.pagination {
    margin-top: 15px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-btn {
    background: #ff007f;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.page-btn:hover {
    background: #ff3399;
}

.page-btn.active {
    background: gold;
    color: black;
    font-weight: bold;
}


