/* ── Hall of Fame Styles ──────────────────────────────────────────── */

.hof-header {
  padding: 0 0 36px;
}
.hof-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.hof-header p {
  font-size: 1rem;
  color: var(--text-dim);
}

/* ── Tabs ────────────────────────────────────────────────────────── */

.hof-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.hof-tab {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.hof-tab:hover {
  color: var(--text-dim);
}

.hof-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Game Section ────────────────────────────────────────────────── */

.hof-game-section {
  margin-bottom: 48px;
}

.hof-game-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hof-game-icon {
  font-size: 1.6rem;
  color: var(--accent);
}
.hof-game-title h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

/* ── Table ────────────────────────────────────────────────────────── */

.hof-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.hof-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hof-table thead {
  border-bottom: 1px solid var(--border);
}

.hof-table th {
  text-align: left;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.hof-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  white-space: nowrap;
}

.hof-table tbody tr {
  transition: background 0.15s;
}
.hof-table tbody tr:hover {
  background: var(--surface-2);
}

.col-rank {
  width: 50px;
  text-align: center;
}
.col-won, .col-bonus {
  font-weight: 600;
}

.hof-rank {
  font-weight: 700;
  text-align: center;
  display: block;
}

.hof-player {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.hof-sats {
  font-weight: 600;
  color: var(--accent);
}

.hof-stat {
  color: var(--text-dim);
}

.hof-loading,
.hof-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hof-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Responsive ──────────────────────────────────────────────────── */

@media (max-width: 600px) {
  .hof-table th,
  .hof-table td {
    padding: 10px 10px;
    font-size: 0.8rem;
  }

  .col-top10,
  .col-bonus,
  .col-games {
    display: none;
  }
  /* Hide matching td cells */
  .hof-table td:nth-child(5),
  .hof-table td:nth-child(6),
  .hof-table td:nth-child(7) {
    display: none;
  }
}
