
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: url('../assets/backgroundleaderboard.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: red;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.join-button {
  background-color: #5865F2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

a {
  all: unset;
  display: inline;
  cursor: pointer;
}

.leaderboard-table {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  overflow: hidden;
}

.leaderboard-table th, .leaderboard-table td {
  padding: 12px 15px;
  color: #fff;
}

.leaderboard-table thead {
  background-color: #111;
  color: #ff2a2a;
}

.leaderboard-table tbody tr.odd-row {
  background-color: rgba(255, 255, 255, 0.05);
}

.leaderboard-table tbody tr.even-row {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer {
  text-align: center;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 20px;
}
