/* ============================================================
   EVENT RADAR — Redesigned Design System
   Fonts: Plus Jakarta Sans (display) + Inter (body)
   Aesthetic: Premium, editorial, Nigerian energy
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --brand:        #E8593C;
  --brand-dark:   #C44328;
  --brand-light:  #FFF0EC;
  --brand-glow:   rgba(232,89,60,0.15);
  --ink:          #0A0A0F;
  --ink-mid:      #2D2D3A;
  --ink-soft:     #6B6B80;
  --ink-faint:    #A8A8BC;
  --surface:      #FFFFFF;
  --surface-2:    #F8F8FC;
  --surface-3:    #F0F0F7;
  --border:       #E8E8F0;
  --border-strong:#D0D0E0;
  --success:      #16A34A;
  --warning:      #D97706;
  --danger:       #DC2626;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --radius-2xl:   32px;
  --shadow-xs:    0 1px 3px rgba(10,10,15,0.06);
  --shadow-sm:    0 2px 8px rgba(10,10,15,0.08);
  --shadow-md:    0 8px 24px rgba(10,10,15,0.10);
  --shadow-lg:    0 20px 48px rgba(10,10,15,0.14);
  --shadow-brand: 0 8px 32px rgba(232,89,60,0.28);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --topbar-h:     64px;
}

[data-theme="dark"] {
  --ink:          #F2F2FA;
  --ink-mid:      #C0C0D4;
  --ink-soft:     #7878A0;
  --ink-faint:    #4A4A68;
  --surface:      #0C0C14;
  --surface-2:    #14141E;
  --surface-3:    #1C1C28;
  --border:       #242434;
  --border-strong:#303048;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.65;
  color: var(--ink); background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p { color: var(--ink-mid); line-height: 1.7; }
a { color: var(--brand); text-decoration: none; transition: opacity 0.15s; }
a:hover { opacity: 0.8; }

/* ── Layout ─────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 740px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ── Navigation ──────────────────────────────────────── */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--topbar-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232,232,240,0.8);
}
[data-theme="dark"] .topnav { background: rgba(12,12,20,0.88); border-bottom-color: rgba(36,36,52,0.8); }
.topnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.logo {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  color: var(--ink); text-decoration: none; letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.logo span { color: var(--brand); }
.logo-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 3px rgba(232,89,60,0.2);
  animation: pulse-dot 2.5s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(232,89,60,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(232,89,60,0.08); }
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  padding: 7px 14px; border-radius: var(--radius-md);
  transition: all 0.15s; text-decoration: none;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.25s; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; cursor: pointer; border: none;
  transition: all 0.2s; font-family: var(--font-body);
  text-decoration: none; white-space: nowrap; letter-spacing: -0.01em;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 14px 36px rgba(232,89,60,0.35); opacity: 1; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); opacity: 1; }
.btn-surface { background: var(--surface-2); color: var(--ink); border: 1px solid var(--border); }
.btn-surface:hover { background: var(--surface-3); opacity: 1; }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: var(--radius-lg); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Category icon cards ─────────────────────────────── */
.cat-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  background: var(--brand-light); color: var(--brand);
}
.cat-icon i { font-size: 22px; }

/* ── Featured Event Banner ───────────────────────────── */
.featured-banner {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 21/9; min-height: 280px;
  background: linear-gradient(135deg, #1a0a2e, #2d1460);
  display: flex; align-items: flex-end;
  transition: transform 0.3s, box-shadow 0.3s; box-shadow: var(--shadow-lg);
}
.featured-banner:hover { transform: translateY(-3px); box-shadow: 0 28px 60px rgba(10,10,15,0.18); }
.featured-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); }
.featured-banner-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.15; }
.featured-banner-icon i { font-size: 100px; color: #fff; }
.featured-banner-content { position: relative; z-index: 1; padding: 28px; width: 100%; }
.featured-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #F59E0B, #F97316);
  color: #fff; padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 10px;
}
.featured-label i { font-size: 13px; }
.featured-banner-title {
  font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800; color: #fff; margin-bottom: 10px;
  letter-spacing: -0.02em; line-height: 1.2;
}
.featured-banner-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.featured-banner-meta span { display: flex; align-items: center; gap: 5px; font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }
.featured-banner-meta span i { font-size: 15px; }
.featured-dots { display: flex; gap: 6px; justify-content: center; margin-top: 14px; }
.featured-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); cursor: pointer; transition: all 0.2s; border: none; }
.featured-dot.active { background: var(--brand); width: 22px; border-radius: 4px; }

/* ── Event Cards ─────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.event-card { cursor: pointer; position: relative; }
.card-banner { width: 100%; aspect-ratio: 16/8; object-fit: cover; display: block; background: var(--surface-3); }
.card-banner-placeholder {
  width: 100%; aspect-ratio: 16/8;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--surface-3) 0%, var(--border) 100%);
}
.card-banner-placeholder i { font-size: 40px; color: var(--ink-faint); }
.card-body { padding: 16px; }
.card-category {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 7px;
}
.card-category i { font-size: 14px; }
.card-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--ink); line-height: 1.35;
  margin-bottom: 10px; letter-spacing: -0.01em;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta { display: flex; flex-direction: column; gap: 5px; }
.card-meta-row { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ink-soft); }
.card-meta-row i { font-size: 14px; flex-shrink: 0; color: var(--ink-faint); }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-top: 1px solid var(--border); background: var(--surface-2); }

/* ── Badges ──────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
}
.badge i { font-size: 12px; }
.badge-free { background: #DCFCE7; color: #15803D; }
.badge-paid { background: var(--brand-light); color: var(--brand-dark); }
.badge-pending { background: #FEF3C7; color: #92400E; }
.badge-approved { background: #DCFCE7; color: #15803D; }
.badge-cancelled { background: #FEE2E2; color: #991B1B; }
.badge-expired { background: var(--surface-3); color: var(--ink-faint); }
.badge-featured { background: linear-gradient(135deg,#FCD34D,#F59E0B); color: #78350F; }

/* ── Grid ────────────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }

/* ── Section Header ──────────────────────────────────── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.section-header h2 { font-size: 1.35rem; }
.section-header a { font-size: 13px; color: var(--brand); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ── Category Chips ──────────────────────────────────── */
.chips-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.chips-row::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 24px; font-size: 13px; font-weight: 500;
  cursor: pointer; border: 1.5px solid var(--border); background: var(--surface);
  color: var(--ink-mid); transition: all 0.15s; white-space: nowrap; font-family: var(--font-body);
}
.chip i { font-size: 15px; }
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 4px 12px rgba(232,89,60,0.25); }

/* ── Search ──────────────────────────────────────────── */
.search-wrap { position: relative; width: 100%; }
.search-input {
  width: 100%; padding: 13px 18px 13px 46px;
  border: 1.5px solid var(--border); border-radius: var(--radius-xl);
  background: var(--surface-2); font-size: 14px;
  color: var(--ink); outline: none; font-family: var(--font-body); transition: all 0.2s;
}
.search-input:focus { border-color: var(--brand); background: var(--surface); box-shadow: 0 0 0 4px var(--brand-glow); }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); font-size: 18px; pointer-events: none; }
.search-results-dropdown { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 50; overflow: hidden; display: none; }
.search-results-dropdown.open { display: block; }
.search-result-item { display: flex; align-items: center; gap: 12px; padding: 11px 16px; cursor: pointer; transition: background 0.1s; border-bottom: 1px solid var(--border); }
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--surface-2); }
.search-result-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.search-result-sub { font-size: 11px; color: var(--ink-soft); margin-top: 1px; }

/* ── Forms ───────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: -0.01em; }
.form-label span { color: var(--brand); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); background: var(--surface); color: var(--ink);
  font-size: 14px; font-family: var(--font-body); outline: none; transition: all 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-glow); }
.form-input.error { border-color: var(--danger); }
.form-error { font-size: 12px; color: var(--danger); margin-top: 5px; font-weight: 500; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--ink-soft); margin-top: 5px; }

.toggle-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-md); }
.toggle-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.toggle-sub { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: var(--border-strong); border-radius: 12px; transition: background 0.2s; }
.toggle-slider::after { content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform 0.2s; box-shadow: var(--shadow-xs); }
.toggle-switch input:checked + .toggle-slider { background: var(--brand); }
.toggle-switch input:checked + .toggle-slider::after { transform: translateX(20px); }

.upload-area { border: 2px dashed var(--border-strong); border-radius: var(--radius-lg); padding: 36px; text-align: center; cursor: pointer; transition: all 0.2s; background: var(--surface-2); }
.upload-area:hover, .upload-area.drag-over { border-color: var(--brand); background: var(--brand-light); }

/* ── Modal ───────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(10,10,15,0.65); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--surface); border-radius: var(--radius-xl); width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); transform: translateY(24px) scale(0.97); transition: transform 0.25s; }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--border); }
.modal-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; }
.modal-close { background: var(--surface-2); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: 18px; transition: background 0.15s; }
.modal-close:hover { background: var(--surface-3); }
.modal-body { padding: 26px; }

/* ── Toast ───────────────────────────────────────────── */
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 300; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { padding: 13px 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 9px; animation: toast-in 0.3s cubic-bezier(0.34,1.56,0.64,1); pointer-events: all; max-width: 340px; }
.toast-success { background: #F0FDF4; color: #166534; border-left: 3px solid #22C55E; }
.toast-error { background: #FEF2F2; color: #991B1B; border-left: 3px solid #EF4444; }
.toast-info { background: #EFF6FF; color: #1E40AF; border-left: 3px solid #3B82F6; }
@keyframes toast-in { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── Skeleton / Loading ──────────────────────────────── */
.skeleton { background: linear-gradient(90deg, var(--surface-3) 25%, var(--border) 50%, var(--surface-3) 75%); background-size: 200% 100%; animation: shimmer 1.6s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--brand); border-radius: 50%; animation: spin 0.7s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Stats ───────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.stat-label { font-size: 12px; color: var(--ink-soft); margin-top: 3px; font-weight: 500; }

/* ── Map ─────────────────────────────────────────────── */
#map { width: 100%; height: calc(100vh - var(--topbar-h)); }

/* ── Footer ──────────────────────────────────────────── */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--ink-faint); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--ink-soft); }

/* ── Empty State ─────────────────────────────────────── */
.empty-state { text-align: center; padding: 72px 24px; }
.empty-state i { font-size: 52px; color: var(--ink-faint); margin-bottom: 18px; display: block; }
.empty-state h3 { color: var(--ink); margin-bottom: 8px; font-size: 1.1rem; }
.empty-state p { color: var(--ink-soft); font-size: 14px; max-width: 320px; margin: 0 auto 24px; }

/* ── Pagination ──────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.page-btn { width: 40px; height: 40px; border-radius: var(--radius-md); border: 1.5px solid var(--border); background: var(--surface); cursor: pointer; font-family: var(--font-body); font-size: 14px; color: var(--ink); transition: all 0.15s; font-weight: 500; }
.page-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.page-btn:hover:not(.active) { border-color: var(--brand); color: var(--brand); }

/* ── Mobile nav drawer overlay ───────────────────────── */
.nav-drawer-overlay { display: none; position: fixed; inset: 0; z-index: 98; background: rgba(10,10,15,0.5); backdrop-filter: blur(4px); }
.nav-drawer-overlay.open { display: block; }
.drawer-auth { display: none; }
.drawer-close { display: none; }

/* ── DESKTOP LOCK ─────────────────────────────────────── */
@media (min-width: 769px) {
  .nav-links { display: flex !important; position: static !important; flex-direction: row !important; background: none !important; border: none !important; padding: 0 !important; box-shadow: none !important; width: auto !important; height: auto !important; overflow: visible !important; animation: none !important; z-index: auto !important; top: auto !important; right: auto !important; bottom: auto !important; }
  .nav-cta { display: flex !important; }
  .nav-hamburger { display: none !important; }
  .nav-drawer-overlay { display: none !important; }
  .drawer-auth { display: none !important; }
}

/* ── MOBILE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: var(--topbar-h); right: 0; bottom: 0;
    width: min(300px, 85vw);
    background: var(--surface);
    border-left: 1px solid var(--border);
    padding: 12px 16px 40px;
    gap: 2px; box-shadow: var(--shadow-lg);
    z-index: 101; overflow-y: auto;
    animation: slide-in-right 0.25s cubic-bezier(0.34,1.56,0.64,1);
  }
  @keyframes slide-in-right {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
  }
  .nav-links.open a {
    display: flex; align-items: center; gap: 8px;
    padding: 13px 16px; font-size: 15px; font-weight: 600;
    color: var(--ink); border-radius: var(--radius-md);
    border-bottom: 1px solid var(--border);
    text-decoration: none; transition: background 0.15s;
  }
  .nav-links.open a:hover { background: var(--surface-2); }
  .nav-links.open a.active { color: var(--brand); }
  .nav-links.open .drawer-auth {
    display: flex; flex-direction: column; gap: 8px;
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .nav-links.open .drawer-auth a {
    width: 100%; justify-content: center;
    border-bottom: none; font-size: 14px;
  }
  .form-row { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 48px 0; }
  .featured-banner { aspect-ratio: 4/3; min-height: 240px; }
  .featured-banner-content { padding: 20px; }
}
@media (max-width: 480px) {
  .events-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}