/* ===== Base Reset & Variables ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-card: #1f1f1f;
  --red: #c8102e;
  --red-dark: #9e0c24;
  --gold: #ffd700;
  --gold-dark: #c9a900;
  --text-primary: #f0f0f0;
  --text-muted: #888;
  --border: #333;
  --pac-color: #c8102e;
  --may-color: #ffd700;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* ===== Nav ===== */
nav {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--red);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255,215,0,0.4);
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); text-decoration: none; }

.nav-coins {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #000; }

.btn-lg { padding: 0.9rem 2.5rem; font-size: 1.15rem; }
.btn-block { width: 100%; }

/* ===== Hero Section ===== */
.hero {
  width: 100%;
  background: #000;
}

.hero-poster {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: block;
}

.hero-img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  text-align: center;
}

.hero-tagline {
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* ===== Fighter Cards ===== */
.fighters {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.fighter-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  width: 280px;
  text-align: center;
  border: 2px solid var(--border);
  transition: border-color 0.3s, transform 0.2s;
}
.fighter-card:hover { transform: translateY(-4px); }
.fighter-card.pac { border-color: var(--pac-color); }
.fighter-card.may { border-color: var(--may-color); }

.fighter-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 3px solid currentColor;
}
.pac .fighter-avatar { color: var(--pac-color); background: rgba(200,16,46,0.1); }
.may .fighter-avatar { color: var(--may-color); background: rgba(255,215,0,0.1); }

.fighter-name {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pac .fighter-name { color: var(--pac-color); }
.may .fighter-name { color: var(--may-color); }

.fighter-nickname {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.fighter-stats {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== Countdown ===== */
.countdown-section {
  text-align: center;
  padding: 2rem;
}

.countdown-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-unit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  min-width: 80px;
  text-align: center;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.countdown-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 2rem;
}

/* ===== Forms ===== */
.form-container {
  max-width: 440px;
  margin: 3rem auto;
  padding: 2rem;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group select option {
  background: var(--bg-secondary);
}

.form-footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.alert-error { background: rgba(200,16,46,0.15); border: 1px solid var(--red); color: #ff6b6b; }
.alert-success { background: rgba(0,200,100,0.1); border: 1px solid #00c864; color: #00c864; }

/* ===== Bet Page ===== */
.bet-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
}

@media (max-width: 768px) {
  .bet-layout { grid-template-columns: 1fr; }
}

.section-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* Odds Bars */
.odds-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.odds-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.odds-label-pac { color: var(--pac-color); }
.odds-label-may { color: var(--may-color); }

.odds-bar-wrapper {
  height: 28px;
  background: var(--bg-secondary);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  margin-bottom: 1rem;
  position: relative;
}

.odds-bar-pac {
  height: 100%;
  background: linear-gradient(90deg, var(--pac-color), #e63950);
  transition: width 0.8s ease;
  display: flex;
  align-items: center;
  padding-left: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  min-width: 0;
  overflow: hidden;
}

.odds-bar-may {
  height: 100%;
  background: linear-gradient(90deg, #b8a000, var(--may-color));
  transition: width 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  min-width: 0;
  overflow: hidden;
}

.odds-multipliers {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.odds-mult-value { font-weight: 700; font-size: 1rem; }
.odds-mult-pac { color: var(--pac-color); }
.odds-mult-may { color: var(--may-color); }

.odds-pot {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,16,46,0.2);
  border: 1px solid var(--red);
  color: var(--red);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Bet Form */
.bet-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.fighter-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.fighter-radio {
  display: none;
}

.fighter-label {
  display: block;
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid var(--border);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 700;
  font-size: 0.95rem;
}

.fighter-label.pac-label { color: var(--pac-color); }
.fighter-label.may-label { color: var(--may-color); }

.fighter-radio.pac-radio:checked + .pac-label {
  border-color: var(--pac-color);
  background: rgba(200,16,46,0.15);
}

.fighter-radio.may-radio:checked + .may-label {
  border-color: var(--may-color);
  background: rgba(255,215,0,0.1);
}

.fighter-label:hover { transform: scale(1.02); }

.balance-display {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.balance-amount {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Bet History */
.bet-history {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.bet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.bet-table th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.bet-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.bet-table tr:last-child td { border-bottom: none; }

.status-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.status-pending   { background: rgba(255,165,0,0.2); color: #ffa500; }
.status-won       { background: rgba(0,200,100,0.2); color: #00c864; }
.status-lost      { background: rgba(200,16,46,0.2);  color: #ff4d6a; }
.status-processed { background: rgba(0,200,100,0.2); color: #00c864; }
.status-rejected  { background: rgba(200,16,46,0.2);  color: #ff4d6a; }

.fighter-tag-pac { color: var(--pac-color); font-weight: 700; }
.fighter-tag-may { color: var(--may-color); font-weight: 700; }

/* ===== Leaderboard ===== */
.leaderboard-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

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

.leaderboard-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--border);
}

.leaderboard-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.leaderboard-table tr:hover td { background: rgba(255,255,255,0.02); }

.rank-badge {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
}

.rank-1 { background: var(--gold); color: #000; }
.rank-2 { background: #c0c0c0; color: #000; }
.rank-3 { background: #cd7f32; color: #fff; }
.rank-other { background: var(--bg-secondary); color: var(--text-muted); }

.coins-value { color: var(--gold); font-weight: 700; }

/* ===== Settled Banner ===== */
.settled-banner {
  background: linear-gradient(90deg, rgba(0,200,100,0.1), rgba(0,200,100,0.05));
  border: 2px solid #00c864;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.settled-banner h2 { color: #00c864; font-size: 1.5rem; }
.settled-banner p { color: var(--text-muted); margin-top: 0.5rem; }

/* ===== Misc ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.page-header {
  text-align: center;
  padding: 2.5rem 1.5rem 1.5rem;
}

.page-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-header p { color: var(--text-muted); margin-top: 0.5rem; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.empty-state {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

/* ===== Fight Control Card ===== */
.fight-control-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.fight-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0,200,100,0.12);
  border: 1px solid #00c864;
  color: #00c864;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fight-settled-badge {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fight-result-display {
  background: rgba(0,200,100,0.06);
  border: 1px solid rgba(0,200,100,0.3);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.fight-result-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.fight-result-item span:first-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fight-result-item strong {
  font-size: 1.05rem;
  color: var(--text-primary);
}

.settle-form {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.settle-fighter-choice {
  display: flex;
  gap: 0.75rem;
}

.settle-fighter-radio { display: none; }

.settle-fighter-label {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: 2px solid var(--border);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.settle-fighter-label.pac-label { color: var(--pac-color); }
.settle-fighter-label.may-label { color: var(--may-color); }
.settle-fighter-radio.pac-radio:checked + .pac-label {
  border-color: var(--pac-color);
  background: rgba(200,16,46,0.15);
}
.settle-fighter-radio.may-radio:checked + .may-label {
  border-color: var(--may-color);
  background: rgba(255,215,0,0.1);
}

.settle-round-select {
  padding: 0.6rem 0.9rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.settle-round-select:focus {
  outline: none;
  border-color: var(--gold);
}
.settle-round-select option { background: var(--bg-secondary); }

.btn-settle {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-settle:hover:not(:disabled) { background: var(--red-dark); }
.btn-settle:disabled { opacity: 0.5; cursor: not-allowed; }

.bet-pot-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1.1rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}
.bet-pot-info span { color: var(--text-muted); }
.bet-pot-info strong { color: var(--gold); }

/* ===== No-coins Banner ===== */
.no-coins-banner {
  background: linear-gradient(90deg, rgba(200,16,46,0.15), rgba(255,215,0,0.08));
  border: 2px solid var(--red);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.no-coins-banner p { margin: 0; font-weight: 600; }
.no-coins-banner .btn { color: #fff; }

/* ===== Package Cards Grid ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.package-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}
.package-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.package-card.selected { border-color: var(--gold); background: rgba(255,215,0,0.07); }

.pkg-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pkg-coins {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.pkg-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pkg-btn {
  width: 100%;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

/* ===== Payment Form ===== */
.selected-pkg-summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255,215,0,0.05);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.method-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.method-tab {
  flex: 1;
  padding: 0.6rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.method-tab.active {
  background: var(--gold);
  color: #000;
}
.method-tab:not(.active):hover {
  background: rgba(255,215,0,0.08);
  color: var(--gold);
}

.payment-details { margin-bottom: 1rem; }

.payment-info-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.payment-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
}
.payment-info-row:last-child { border-bottom: none; }
.payment-info-row span { color: var(--text-muted); }

/* ===== Table wrapper ===== */
.table-wrapper {
  overflow-x: auto;
}

/* ===== Admin Panel ===== */
.admin-stats-bar {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.admin-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 160px;
}

.admin-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.admin-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.admin-tab.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.admin-tab-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
  font-weight: 800;
}

.admin-table { min-width: 900px; }

.btn-action {
  padding: 0.25rem 0.65rem;
  border-radius: 5px;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  margin-right: 0.3rem;
  transition: opacity 0.15s;
}
.btn-action:hover { opacity: 0.8; }
.btn-approve { background: #00c864; color: #000; }
.btn-reject  { background: var(--red); color: #fff; }

.actions-cell { white-space: nowrap; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  nav { padding: 0.75rem 1rem; }
  .nav-links { gap: 0.75rem; font-size: 0.9rem; }
  .fighters { flex-direction: column; align-items: center; }
  .fighter-card { width: 100%; max-width: 340px; }
  .form-container { padding: 1rem; }
}
