html,
body {
    height: 100%;
    margin: 0;
    background-color: black;
    z-index: -5;
    color: #fff;
    font-family: 'Exo 2', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    padding: 2rem 2rem 1rem 2rem;
    background: rgba(24,24,24,0.3);
    border-radius: 2rem;
    box-shadow: 0 8px 24px #0008;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 350px;
    width: 90vw;
    max-width: 500px;
    border: 1.5px solid rgba(255,255,255,0.24);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mode-btns {
    width: 100%;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mode-btn {
    flex: 1;
    background: #222;
    color: #fff;
    border: none;
    padding: 0.8rem 0;
    border-radius: 1.2rem;
    font-size: 1.1rem;
    font-family: 'Exo 2', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 1px;
}

.mode-btn.active,
.mode-btn:hover {
    background: #444;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 0.6rem 0.3rem;
    text-align: center;
    font-size: 1.08rem;
}

.leaderboard-table th {
    color: #ffd700;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
}

.leaderboard-table tr.highlight {
    background: #2a2a2a;
    color: #18fff7;
    font-weight: bold;
}

.no-data {
    text-align: center;
    padding: 2rem 0 1rem 0;
    font-size: 1.2rem;
    color: #bbb;
    letter-spacing: 1px;
}

.leaderboard-table tr.gold {
  background: linear-gradient(90deg, #fffbe6 60%, #ffe066 100%);
  color: #aa8700;
  font-weight: bold;
}
.leaderboard-table tr.silver {
  background: linear-gradient(90deg, #b5a96f 60%, #897a32 100%);
  color: #e4e3e3;
  font-weight: bold;
}
.leaderboard-table tr.bronze {
  background: linear-gradient(90deg, #6f5b41bf 60%, #ffc07a 100%);
  font-weight: bold;
}

/* Opcional: efecto suave de sombra para destacar aún más */
.leaderboard-table tr.gold td,
.leaderboard-table tr.silver td,
.leaderboard-table tr.bronze td {
  text-shadow: 0 1px 6px #0002;
}

#globalBtn.active {
    background-color: #ff1414;
}

#weeklyBtn.active {
    background-color: #2411c3;
}

.leaderboard-title {
  margin: 0 0 1.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffd700;
  text-shadow: 0 2px 8px #0006;
  text-align: center;
  font-family: 'Exo 2', Arial, sans-serif;
}

.background-blur {
  position: fixed;
  z-index: -10;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: url('exomars.png') center center / cover no-repeat;
  filter: blur(5px) brightness(0.8);
  /* Blur muy alto, oscurecido */
  pointer-events: none; /* Permite hacer clic en el contenido por delante */
}

#leaderboardBody {
    transition: opacity 0.25s;
    opacity: 1;
}
#leaderboardBody.fade {
    opacity: 0;
}
