/* ================================================================
   IyahGames — Leaderboard Widget Styles
   Matches the dark theme of the lobby page.
================================================================ */

/* ── Section wrapper ─────────────────────────────────────────── */
.leaderboard-section {
  padding: 60px 40px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.leaderboard-section .section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00aaff;
  margin-bottom: 12px;
}

.leaderboard-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 36px;
}

/* ── Filter tabs ─────────────────────────────────────────────── */
.lb-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.lb-filter-btn {
  background: transparent;
  border: 1px solid #1e3a6e;
  color: #8899bb;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Segoe UI', Arial, sans-serif;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lb-filter-btn:hover {
  background: #16213e;
  border-color: #00aaff;
  color: #ffffff;
}

.lb-filter-btn.active {
  background: #0a2060;
  border-color: #00aaff;
  color: #00aaff;
}

/* ── Table card ──────────────────────────────────────────────── */
.lb-card {
  background: #16213e;
  border: 1px solid #1e3a6e;
  border-radius: 14px;
  overflow: hidden;
}

.lb-table-wrap {
  overflow-x: auto;
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.lb-table thead {
  background: #0d1730;
}

.lb-table th {
  text-align: left;
  padding: 14px 16px;
  color: #8899bb;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lb-table td {
  padding: 13px 16px;
  border-top: 1px solid #1a2a45;
  color: #ccd6f0;
}

.lb-table tbody tr:hover {
  background: rgba(0, 170, 255, 0.05);
}

/* Column styles */
.lb-rank {
  width: 56px;
  text-align: center;
  font-weight: 700;
  color: #8899bb;
  font-size: 12px;
}

.lb-flag-col {
  width: 26px;
  text-align: center;
  padding: 0 4px;
}

.lb-name {
  font-weight: 700;
  color: #00aaff;
}

.lb-game {
  color: #7b61ff;
}

.lb-diff {
  color: #8899bb;
  font-size: 12px;
}

.lb-score {
  text-align: right;
  font-weight: 700;
  font-size: 14px;
  color: #ffd700;
  font-variant-numeric: tabular-nums;
}

/* ── Footer row (refresh + status) ──────────────────────────── */
.lb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid #1a2a45;
  font-size: 12px;
  color: #8899bb;
}

.lb-refresh-btn {
  background: transparent;
  border: 1px solid #1e3a6e;
  color: #8899bb;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-family: 'Segoe UI', Arial, sans-serif;
  transition: border-color 0.2s, color 0.2s;
}

.lb-refresh-btn:hover {
  border-color: #00aaff;
  color: #00aaff;
}

/* ── States ──────────────────────────────────────────────────── */
#lb-loading {
  text-align: center;
  padding: 16px;
  color: #8899bb;
  font-size: 13px;
  display: none;
}

#lb-error {
  text-align: center;
  padding: 12px 16px;
  background: rgba(204, 0, 0, 0.08);
  border-radius: 8px;
  color: #ff7070;
  font-size: 13px;
  margin-top: 12px;
  display: none;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .leaderboard-section {
    padding: 40px 16px 60px;
  }
  .lb-game,
  .lb-diff {
    display: none; /* hide on small screens */
  }
  .lb-table th:nth-child(3),
  .lb-table th:nth-child(4) {
    display: none;
  }
}
