@import url(https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap);.leaderboard {
  padding: 40px 0;
  background-color: #000;
  min-height: 100vh;
  color: #fff;
}

.leaderboard-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.event-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Inter Tight", sans-serif;
  color: #BC2023;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.leaderboard-table {
  background: #111;
  border: 2px solid #BC2023;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(188, 32, 35, 0.3);
}

.leaderboard-table table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.leaderboard-table thead {
  background: linear-gradient(135deg, #BC2023, #8B1518);
}

.leaderboard-table thead th {
  padding: 20px 15px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  font-family: "Inter Tight", sans-serif;
}

.leaderboard-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #333;
}

.leaderboard-table tbody tr:hover {
  background: #222;
  transform: scale(1.02);
}

.leaderboard-table tbody tr:last-child {
  border-bottom: none;
}

.leaderboard-table tbody td {
  padding: 18px 15px;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  border: none;
  font-family: "Inter Tight", sans-serif;
}

.rank-cell {
  font-weight: bold;
  font-size: 1.2rem;
  color: #BC2023;
  width: 80px;
}

.rank-cell.gold {
  color: #FFD700;
  font-size: 1.4rem;
}

.rank-cell.silver {
  color: #C0C0C0;
  font-size: 1.3rem;
}

.rank-cell.bronze {
  color: #CD7F32;
  font-size: 1.2rem;
}

.player-name {
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
  padding-left: 20px;
}

.points-cell {
  font-weight: bold;
  color: #BC2023;
  font-size: 1.1rem;
}

.no-leaders {
  text-align: center;
  padding: 60px 20px;
  background: #111;
  border: 2px solid #BC2023;
  box-shadow: 0 10px 30px rgba(188, 32, 35, 0.3);
}

.no-leaders-icon {
  font-size: 4rem;
  color: #BC2023;
  margin-bottom: 20px;
}

.no-leaders h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
  font-family: "Inter Tight", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.no-leaders p {
  font-size: 1.1rem;
  color: #ccc;
  margin: 0;
}

.back-to-event {
  text-align: center;
  margin-top: 40px;
}

.btn-back {
  display: inline-block;
  background: #BC2023;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: "Inter Tight", sans-serif;
}

.btn-back:hover {
  background: #fff;
  color: #BC2023;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(188, 32, 35, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .event-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .leaderboard-table thead th {
    padding: 15px 10px;
    font-size: 1rem;
  }
  .leaderboard-table tbody td {
    padding: 15px 10px;
    font-size: 0.9rem;
  }
  .player-name {
    padding-left: 10px;
    font-size: 1rem;
  }
  .rank-cell {
    width: 60px;
    font-size: 1.1rem;
  }
  .rank-cell.gold {
    font-size: 1.2rem;
  }
  .rank-cell.silver {
    font-size: 1.15rem;
  }
  .no-leaders-icon {
    font-size: 3rem;
  }
  .no-leaders h3 {
    font-size: 1.5rem;
  }
  .no-leaders p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .leaderboard-container {
    padding: 0 10px;
  }
  .event-title {
    font-size: 1.25rem;
  }
  .leaderboard-table thead th {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
  .leaderboard-table tbody td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }
  .player-name {
    padding-left: 8px;
    font-size: 0.9rem;
  }
}