/*
 * KWENCHY.COM — Dark Mode Design System
 * Colours, typography, components — all from the build spec
 */

/* ─── Fonts ──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: 'DM Sans', sans-serif; background: #0B0F1A; color: #F1F5F9; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --orange: #FF6B35;
  --gold: #FFC233;
  --teal: #00B4D8;
  --green: #06D6A0;
  --pink: #FF006E;
  --purple: #A855F7;
  --navy: #0B0F1A;
  --card-bg: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.06);
  --text: #F1F5F9;
  --muted: #94A3B8;
  --dim: #64748B;
  --gradient: linear-gradient(135deg, #FF6B35, #FFC233);
  --radius-card: 18px;
  --radius-btn: 13px;
  --radius-pill: 20px;
  --max-w: 480px;
  --glass: rgba(11,15,26,0.85);
}

/* ─── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.page { padding-bottom: 90px; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, .score-num { font-family: 'Outfit', sans-serif; }
h1 { font-size: 1.75rem; font-weight: 800; line-height: 1.2; }
h2 { font-size: 1.35rem; font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.1rem; font-weight: 700; }
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--dim); text-transform: uppercase; margin-bottom: 12px;
}
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.text-orange { color: var(--orange); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-pink { color: var(--pink); }
.text-purple { color: var(--purple); }
.text-teal { color: var(--teal); }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 20px;
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover { border-color: rgba(255,255,255,0.1); }
.card-glow { box-shadow: 0 0 30px rgba(255,107,53,0.08); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-btn); font-weight: 600;
  font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary {
  background: var(--gradient); color: #0B0F1A;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.06); color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-green {
  background: var(--green); color: #0B0F1A;
}
.btn-outline {
  background: transparent; border: 1px dashed var(--border); color: var(--muted);
}
.btn-full { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ─── Tags / Pills ───────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  transition: all 0.2s; white-space: nowrap;
}
.tag:hover { border-color: rgba(255,255,255,0.15); }
.tag.active {
  background: var(--gradient); color: #0B0F1A;
  border-color: transparent; box-shadow: 0 0 20px rgba(255,107,53,0.3);
}

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--glass); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
}
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar .logo {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.3rem;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.navbar .energy-dot {
  width: 8px; height: 8px; border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ─── Bottom Nav ─────────────────────────────────────────── */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--glass); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.bottom-nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-around;
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 0.65rem; font-weight: 600; color: var(--dim);
  padding: 4px 12px; transition: color 0.2s;
}
.bottom-nav a.active, .bottom-nav a:hover { color: var(--orange); }
.bottom-nav .nav-icon { font-size: 1.3rem; }

/* ─── Hero Carousel ──────────────────────────────────────── */
.hero-carousel {
  position: relative; width: 100%; height: 280px;
  overflow: hidden; border-radius: 0 0 24px 24px;
}
.hero-carousel img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 0.7rem; font-weight: 700;
  backdrop-filter: blur(10px);
}
.hero-badge.owner { background: rgba(255,255,255,0.9); color: #0B0F1A; }
.hero-badge.community { background: rgba(168,85,247,0.8); color: white; }
.hero-placeholder {
  width: 100%; height: 280px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; font-size: 3rem;
  background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(168,85,247,0.15));
}
.hero-placeholder .initial {
  font-family: 'Outfit'; font-weight: 900; font-size: 4rem;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Vibe Score ─────────────────────────────────────────── */
.score-display { text-align: center; padding: 24px 0; }
.score-num {
  font-family: 'Outfit', sans-serif; font-weight: 900;
  font-size: 4rem; line-height: 1;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.score-ring-wrap { position: relative; display: inline-block; }
.score-ring { transform: rotate(-90deg); }
.score-ring-bg { fill: none; stroke: rgba(255,255,255,0.06); }
.score-ring-fill { fill: none; stroke: url(#scoreGradient); stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
.score-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.cold-start {
  text-align: center; padding: 24px; color: var(--muted);
}
.cold-start .progress-bar {
  height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px;
  margin: 12px auto; max-width: 200px; overflow: hidden;
}
.cold-start .progress-fill {
  height: 100%; background: var(--gradient); border-radius: 3px;
  transition: width 0.5s;
}

/* ─── Energy Orb ─────────────────────────────────────────── */
.energy-orb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600;
}
.energy-orb .dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.energy-orb .dot.hot { background: var(--pink); animation: pulse 1.5s ease-in-out infinite; }
.energy-orb .dot.warm { background: var(--orange); animation: pulse 2s ease-in-out infinite; }
.energy-orb .dot.steady { background: var(--gold); }
.energy-orb .dot.quiet { background: var(--dim); }

/* ─── Category Bars ──────────────────────────────────────── */
.cat-bars { display: flex; flex-direction: column; gap: 14px; }
.cat-bar { display: flex; align-items: center; gap: 12px; }
.cat-bar .label {
  font-size: 0.8rem; font-weight: 600; min-width: 110px;
  display: flex; align-items: center; gap: 6px;
}
.cat-bar .track {
  flex: 1; height: 8px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.cat-bar .fill {
  height: 100%; border-radius: 4px; transition: width 0.8s ease;
}
.cat-bar .fill.pint { background: var(--orange); }
.cat-bar .fill.music { background: var(--teal); }
.cat-bar .fill.energy { background: var(--pink); }
.cat-bar .fill.social { background: var(--green); }
.cat-bar .fill.visual { background: var(--purple); }
.cat-bar .value {
  font-family: 'Outfit'; font-weight: 700; font-size: 0.85rem;
  min-width: 30px; text-align: right; color: var(--muted);
}

/* ─── Check-in Button ────────────────────────────────────── */
.checkin-section { padding: 16px 0; }
.checkin-btn {
  width: 100%; padding: 16px; border-radius: var(--radius-btn);
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: all 0.3s;
}
.checkin-btn.ready { background: var(--gradient); color: #0B0F1A; }
.checkin-btn.done { background: var(--green); color: #0B0F1A; }
.share-buttons {
  display: flex; gap: 10px; margin-top: 10px;
  animation: slideUp 0.3s ease;
}
.share-buttons .btn { flex: 1; }

/* ─── Tabs ───────────────────────────────────────────────── */
.tabs {
  display: flex; gap: 4px; padding: 4px;
  background: rgba(255,255,255,0.03); border-radius: var(--radius-pill);
  margin: 20px 0;
}
.tab-btn {
  flex: 1; padding: 10px; text-align: center;
  font-weight: 600; font-size: 0.85rem;
  border-radius: calc(var(--radius-pill) - 4px);
  border: none; cursor: pointer;
  background: transparent; color: var(--muted);
  transition: all 0.2s;
}
.tab-btn.active {
  background: var(--gradient); color: #0B0F1A;
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s; }

/* ─── Review Cards ───────────────────────────────────────── */
.review-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 18px; margin-bottom: 14px;
}
.review-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.8rem;
}
.review-meta { flex: 1; }
.review-meta .username { font-weight: 700; font-size: 0.9rem; }
.review-meta .date { font-size: 0.75rem; color: var(--dim); }
.review-badge {
  font-size: 0.65rem; padding: 3px 8px; border-radius: 10px;
  background: rgba(255,107,53,0.15); color: var(--orange); font-weight: 600;
}
.review-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.review-tags .tag { font-size: 0.7rem; padding: 5px 10px; }
.review-comment { font-size: 0.9rem; line-height: 1.5; color: var(--text); margin: 10px 0; }
.review-photo {
  width: 100%; border-radius: 12px; max-height: 250px;
  object-fit: cover; margin-top: 10px;
}

/* ─── Photo Gallery ──────────────────────────────────────── */
.photo-gallery {
  display: flex; gap: 10px; overflow-x: auto; padding: 10px 0;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.photo-gallery::-webkit-scrollbar { display: none; }
.photo-thumb {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; border: 2px solid var(--border);
}

/* ─── Pub Card (leaderboard) ─────────────────────────────── */
.pub-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 16px;
  margin-bottom: 10px; cursor: pointer; transition: all 0.2s;
}
.pub-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-1px); }
.pub-card .rank {
  font-family: 'Outfit'; font-weight: 900; font-size: 1.3rem;
  color: var(--dim); min-width: 30px;
}
.pub-card .rank.top { color: var(--gold); }
.pub-card .info { flex: 1; }
.pub-card .name { font-weight: 700; font-size: 1rem; }
.pub-card .sub { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.pub-card .tags { display: flex; gap: 4px; margin-top: 6px; flex-wrap: wrap; }
.pub-card .score-mini {
  font-family: 'Outfit'; font-weight: 900; font-size: 1.5rem;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Filter Pills ───────────────────────────────────────── */
.filters {
  display: flex; gap: 8px; overflow-x: auto; padding: 12px 0;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }

/* ─── City Grid ──────────────────────────────────────────── */
.city-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.city-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 20px;
  text-align: center; transition: all 0.2s;
}
.city-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }
.city-card .city-name { font-weight: 700; font-size: 1.05rem; }
.city-card .pub-count { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* ─── Stats Row ──────────────────────────────────────────── */
.stats-row {
  display: flex; gap: 12px; justify-content: center; padding: 16px 0;
}
.stat-box {
  text-align: center; flex: 1;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 12px;
}
.stat-box .stat-num {
  font-family: 'Outfit'; font-weight: 800; font-size: 1.4rem;
}
.stat-box .stat-label { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }

/* ─── Pioneer Challenge ──────────────────────────────────── */
.pioneer-card {
  background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(168,85,247,0.08));
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-card); padding: 20px;
  margin: 16px 0;
}

/* ─── Empty States ───────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 40px 20px;
  border: 1px dashed var(--border); border-radius: var(--radius-card);
  color: var(--muted);
}
.empty-state .emoji { font-size: 2.5rem; margin-bottom: 12px; }

/* ─── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--muted); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text); font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--orange);
}
.form-textarea { resize: vertical; min-height: 100px; }

/* ─── Rating Selector ────────────────────────────────────── */
.rating-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.rating-row .cat-label {
  font-size: 0.9rem; font-weight: 600; min-width: 120px;
  display: flex; align-items: center; gap: 6px;
}
.rating-dots { display: flex; gap: 6px; }
.rating-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.rating-dot.active {
  background: var(--gradient); color: #0B0F1A;
  border-color: transparent; transform: scale(1.1);
}

/* ─── Flash Messages ─────────────────────────────────────── */
.flash {
  padding: 14px 18px; border-radius: 12px; margin: 12px 0;
  font-weight: 600; font-size: 0.9rem;
}
.flash.success { background: rgba(6,214,160,0.15); color: var(--green); border: 1px solid rgba(6,214,160,0.3); }
.flash.error { background: rgba(255,0,110,0.15); color: var(--pink); border: 1px solid rgba(255,0,110,0.3); }
.flash.info { background: rgba(0,180,216,0.15); color: var(--teal); border: 1px solid rgba(0,180,216,0.3); }

/* ─── Boost Cards ────────────────────────────────────────── */
.boost-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 20px; text-align: center;
  transition: all 0.3s;
}
.boost-card:hover { border-color: var(--orange); }
.boost-card .emoji { font-size: 2rem; margin-bottom: 8px; }
.boost-card .tier-name { font-weight: 800; font-size: 1.1rem; }
.boost-card .price {
  font-family: 'Outfit'; font-weight: 900; font-size: 1.5rem;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; margin: 8px 0;
}
.boost-card .reach { font-size: 0.85rem; color: var(--muted); }

/* ─── Verified Badge ─────────────────────────────────────── */
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.75rem; font-weight: 600; color: var(--green);
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.15); } }
@keyframes confetti { 0% { transform: translateY(0) rotate(0); opacity: 1; } 100% { transform: translateY(400px) rotate(720deg); opacity: 0; } }

.animate-in { animation: slideUp 0.4s ease-out; }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (min-width: 768px) {
  .container { padding: 0 24px; }
  :root { --max-w: 520px; }
}

/* ─── Toast Notifications ────────────────────────────────── */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  padding: 12px 24px; border-radius: 14px; font-weight: 600; font-size: 0.9rem;
  z-index: 1000; opacity: 0; transition: all 0.3s ease; pointer-events: none;
  max-width: 90%;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-success { background: rgba(6,214,160,0.9); color: #0B0F1A; }
.toast-error { background: rgba(255,0,110,0.9); color: white; }

/* ─── Reward Popup ───────────────────────────────────────── */
.reward-popup {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,15,26,0.9); backdrop-filter: blur(20px);
  animation: fadeIn 0.3s ease;
}
.reward-inner {
  text-align: center; padding: 40px; max-width: 360px; position: relative;
}
.reward-inner h2 { font-size: 1.8rem; margin-bottom: 16px; }
.xp-earned {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 3rem;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 12px;
}
.xp-line {
  font-size: 0.9rem; color: var(--muted); margin-bottom: 4px; text-transform: capitalize;
}
.level-bar { margin-top: 20px; }
.level-label { font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; }
.level-track {
  height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden;
}
.level-fill {
  height: 100%; background: var(--gradient); border-radius: 4px; transition: width 1s ease;
}

/* ─── Confetti ───────────────────────────────────────────── */
.confetti-container {
  position: absolute; top: 0; left: 0; right: 0; height: 100%;
  overflow: hidden; pointer-events: none;
}
.confetti-piece {
  position: absolute; top: -10px; width: 8px; height: 8px;
  border-radius: 2px; animation: confetti 2s ease-out forwards;
}

/* ─── Search Results ─────────────────────────────────────── */
.search-result {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; transition: background 0.2s;
}
.search-result:hover { background: rgba(255,255,255,0.04); }
.search-result:not(:last-child) { border-bottom: 1px solid var(--border); }
.search-name { font-weight: 600; font-size: 0.95rem; }
.search-city { font-size: 0.8rem; color: var(--muted); margin-left: 8px; }
.search-score {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.search-empty { padding: 16px; text-align: center; color: var(--muted); font-size: 0.9rem; }

/* ─── Progress Bar ───────────────────────────────────────── */
.progress-bar {
  height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--gradient); border-radius: 3px;
  transition: width 0.5s;
}

/* ─── Score Mini ─────────────────────────────────────────── */
.score-mini {
  font-family: 'Outfit', sans-serif; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── Form Select ────────────────────────────────────────── */
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px;
}
.form-select option { background: #1a1f2e; color: #F1F5F9; }

/* ─── Admin-specific ─────────────────────────────────────── */
.admin-layout { max-width: 1200px; margin: 0 auto; padding: 20px; }
.admin-sidebar {
  position: fixed; left: 0; top: 0; bottom: 0; width: 240px;
  background: rgba(255,255,255,0.02); border-right: 1px solid var(--border);
  padding: 20px;
}
.admin-main { margin-left: 260px; padding: 20px; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px; margin-bottom: 4px;
  font-size: 0.9rem; color: var(--muted); transition: all 0.2s;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.04); color: var(--text);
}
.admin-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 24px; }
.admin-stat {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px;
}
.admin-stat .num { font-family: 'Outfit'; font-weight: 800; font-size: 1.8rem; }
.admin-stat .label { font-size: 0.8rem; color: var(--muted); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--dim); text-align: left;
  padding: 12px; border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 12px; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.admin-table tr:hover { background: rgba(255,255,255,0.02); }
.status-badge {
  padding: 4px 10px; border-radius: 10px; font-size: 0.7rem; font-weight: 700;
}
.status-badge.pending { background: rgba(255,194,51,0.15); color: var(--gold); }
.status-badge.contacted { background: rgba(0,180,216,0.15); color: var(--teal); }
.status-badge.interested { background: rgba(168,85,247,0.15); color: var(--purple); }
.status-badge.signed_up { background: rgba(6,214,160,0.15); color: var(--green); }
.status-badge.declined { background: rgba(255,0,110,0.15); color: var(--pink); }