/* Admin dashboard styles — matches theme.css design tokens */

.admin-wrapper {
  min-height: 100vh;
  padding: 120px 48px 80px;
}
.admin-container {
  max-width: 1200px;
  margin: 0 auto;
}
.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
.admin-title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 8px;
}

/* Outline button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  align-self: flex-start;
}
.btn-outline:hover {
  border-color: var(--lime);
  background: var(--lime-dim);
}

/* Stats row */
.stats-row {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lime);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Table */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.reg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.reg-table th {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  white-space: nowrap;
}
.reg-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  background: var(--surface);
}
.reg-table tr:last-child td { border-bottom: none; }
.reg-table tr:hover td { background: var(--surface-2); }
.player-name { font-weight: 500; }
.player-email { color: var(--text-muted); font-size: 13px; }
.reg-date { color: var(--text-muted); white-space: nowrap; }

/* Game badges */
.game-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
}
.game-nba2k {
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.08);
}
.game-fortnite {
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.08);
}

/* Empty state */
.empty-state {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 64px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.empty-icon { color: var(--text-muted); margin-bottom: 8px; }
.empty-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.empty-body {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
}
.empty-state .btn-primary { margin-top: 16px; width: auto; }

@media (max-width: 768px) {
  .admin-wrapper { padding: 100px 24px 60px; }
  .admin-header { flex-direction: column; gap: 20px; }
  .stats-row { gap: 12px; }
  .stat-card { padding: 18px 24px; }
}