.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 8, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}

.admin-modal-overlay.active {
  display: flex !important;
}

.admin-dashboard-card {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(160deg, rgba(14, 21, 38, 0.98) 0%, rgba(6, 9, 18, 0.99) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(255, 85, 0, 0.2);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.admin-title-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-badge-crown {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #03050a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.admin-stat-num { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: #fff; }
.admin-stat-lbl { font-size: 0.72rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; }

.admin-section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-fan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-fan-table th {
  text-align: left;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.admin-fan-table td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.admin-fan-table tr:hover td { background: rgba(255, 255, 255, 0.02); color: #fff; }

.btn-admin-pill {
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-fast);
}

.btn-verify-action { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.35); color: #10b981; }
.btn-verify-action:hover { background: #10b981; color: #03050a; }

/* Elevated Gaming HUD Tab Navigation */
.admin-tabs-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(13, 18, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.5rem;
  margin-bottom: 1.75rem;
  width: fit-content;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  user-select: none;
}

.admin-tab-btn .tab-icon {
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.admin-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.admin-tab-btn:hover .tab-icon {
  transform: scale(1.15);
}

.admin-tab-btn.active {
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.25) 0%, rgba(255, 45, 85, 0.15) 100%);
  border-color: rgba(255, 85, 0, 0.45);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 85, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.admin-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-flame), transparent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-flame);
}

.collab-badge {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.25) 0%, rgba(0, 240, 255, 0.1) 100%);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.4);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
  transition: all 0.2s ease;
}

.admin-tab-btn.active .collab-badge {
  background: var(--accent-flame);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 12px rgba(255, 85, 0, 0.5);
}

/* End of admin base styles - pagination is in admin_pagination.css */
