/* ═══════════════════════════════════════════════════
   GreyApple Design System — ga-style.css
   Fonts: Outfit (Uber Move Display) + Inter (Uber Move Text)
 ═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:     #080808;
  --surface:   #0d0d0d;
  --card:      #111;
  --card2:     #161616;
  --border:    #1d1d1d;
  --border2:   #272727;
  --pink:      #FF4FA5;
  --pink-dark: #d93e87;
  --pink-dim:  rgba(255,79,165,0.10);
  --pink-glow: rgba(255,79,165,0.18);
  --white:     #fff;
  --t1:        #fff;
  --t2:        #999;
  --t3:        #444;
  --t4:        #2a2a2a;
  --fd:        'Outfit', sans-serif;
  --fb:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r:         12px;
  --rl:        18px;
  --rll:       24px;
}
html { scroll-behavior: smooth; }
body {
  background: var(--black); color: var(--t1);
  font-family: var(--fb); font-size: 14px;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select {
  font-family: var(--fb); outline: none;
  border: none; background: none;
}
button { cursor: pointer; }
img { display: block; max-width: 100%; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

/* ══════════════ NAV ══════════════ */
.ga-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 40px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.ga-nav.scrolled { background: rgba(8,8,8,0.99); }
.nav-left { display: flex; align-items: center; gap: 36px; }
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-wordmark {
  font-family: var(--fd); font-weight: 800;
  font-size: 18px; letter-spacing: -.04em;
}
.nav-wordmark .pink { color: var(--pink); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--t2); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--t1); }
.nav-right { display: flex; align-items: center; gap: 8px; }

/* Location widget */
.loc-w {
  position: relative; display: flex; align-items: center;
  gap: 7px; padding: 6px 14px; border: 1px solid var(--border2);
  border-radius: 100px; cursor: pointer; font-size: 12px;
  font-weight: 600; color: var(--t2); transition: all .2s; user-select: none;
}
.loc-w:hover { border-color: var(--pink); color: var(--t1); }
.loc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0;
  animation: ploc 2.5s infinite;
}
@keyframes ploc { 0%,100%{box-shadow:0 0 4px var(--pink);} 50%{box-shadow:0 0 10px var(--pink);} }
.loc-chevron { opacity:.45; transition: transform .2s; }
.loc-w.open .loc-chevron { transform: rotate(180deg); }
.loc-dd {
  position: absolute; top: calc(100% + 6px); right: 0;
  width: 160px; background: #161616; border: 1px solid var(--border2);
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .18s; z-index: 400;
}
.loc-w.open .loc-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.loc-opt {
  padding: 10px 14px; font-size: 13px; font-weight: 600;
  color: var(--t2); display: flex; align-items: center;
  justify-content: space-between; cursor: pointer; transition: all .15s;
}
.loc-opt:hover { background: rgba(255,255,255,.04); color: var(--t1); }
.loc-opt.active { color: var(--pink); background: var(--pink-dim); }
.loc-opt .chk { opacity: 0; }
.loc-opt.active .chk { opacity: 1; }

/* Nav buttons */
.btn-ghost {
  padding: 7px 16px; border: 1px solid var(--border2);
  border-radius: 100px; font-size: 13px; font-weight: 500;
  color: var(--t2); transition: all .2s;
}
.btn-ghost:hover { color: var(--t1); border-color: #444; }
.btn-pink {
  padding: 8px 20px; background: var(--pink); color: var(--white);
  border-radius: 100px; font-size: 13px; font-weight: 600;
  transition: all .22s;
}
.btn-pink:hover {
  background: var(--pink-dark); transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,79,165,.3);
}
.btn-outline-pink {
  padding: 8px 20px; border: 1px solid var(--pink);
  color: var(--pink); border-radius: 100px;
  font-size: 13px; font-weight: 600; transition: all .2s;
}
.btn-outline-pink:hover { background: var(--pink-dim); }
.btn-sm-ghost { padding: 5px 12px; }

/* User menu (when logged in) */
.user-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 12px 4px 6px; border: 1px solid var(--border2);
  border-radius: 100px; cursor: pointer; transition: all .2s;
  font-size: 13px; font-weight: 600; color: var(--t2);
  position: relative;
}
.user-chip:hover { border-color: var(--border2); color: var(--t1); }
.user-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pink); display: flex; align-items: center;
  justify-content: center; font-size: 12px; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.user-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 200px; background: #050505; border: 1px solid var(--border2);
  border-radius: var(--rl); overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.9);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .18s; z-index: 1000;
}
.user-chip.open .user-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.user-menu-item {
  padding: 11px 16px; font-size: 13px; font-weight: 500;
  color: var(--t2); display: flex; align-items: center; gap: 10px;
  cursor: pointer; transition: all .15s;
}
.user-menu-item:hover { background: rgba(255,255,255,.04); color: var(--t1); }
.user-menu-item.danger:hover { color: #ef4444; }
.user-menu-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* ══════════════ PAGE LAYOUT ══════════════ */
.page-body { padding-top: 64px; min-height: 100vh; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }

/* ══════════════ TYPOGRAPHY ══════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 10px;
}
.eyebrow-dot { width: 4px; height: 4px; background: var(--pink); border-radius: 50%; }
.h1 {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(44px,7vw,84px); line-height: .96;
  letter-spacing: -.045em;
}
.h2 {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(26px,3.2vw,38px); letter-spacing: -.03em; line-height: 1.1;
}
.h3 {
  font-family: var(--fd); font-weight: 700;
  font-size: 20px; letter-spacing: -.02em;
}
.accent { color: var(--pink); }
.text-muted { color: var(--t2); }
.text-xs { font-size: 11px; }
.text-sm { font-size: 12px; }

/* ══════════════ CARDS ══════════════ */
.card {
  background: rgba(17,17,17,0.75); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rl); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.card:hover { border-color: rgba(255,79,165,0.3); }
.card-p { padding: 24px; }

/* Event card */
.event-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column; cursor: pointer;
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,79,165,.2);
  box-shadow: 0 12px 40px rgba(255,79,165,.07);
}
.event-thumb {
  width: 100%; aspect-ratio: 16/9; position: relative; overflow: hidden;
  background: var(--card2);
}
.event-thumb-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; transition: transform .5s;
}
.event-card:hover .event-thumb-bg { transform: scale(1.05); }
.event-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--t2);
  padding: 3px 9px; border-radius: 100px;
}
.event-feat {
  position: absolute; top: 10px; right: 10px;
  background: var(--pink); color: var(--white);
  font-size: 9px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 100px;
}
.event-price {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.72); backdrop-filter: blur(6px);
  color: var(--t1); font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
.event-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.event-cat {
  font-size: 9px; font-weight: 700; color: var(--t3);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px;
}
.event-name {
  font-family: var(--fd); font-weight: 700; font-size: 16px;
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: 10px;
}
.event-meta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.meta-r {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--t2);
}
.meta-r svg { opacity: .35; flex-shrink: 0; }
.event-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto;
}
.btn-tix {
  background: var(--pink); color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px; transition: all .2s;
}
.btn-tix:hover { background: var(--pink-dark); }
.city-chip {
  font-size: 10px; color: var(--t3); font-weight: 600;
  background: var(--card2); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 100px;
}

/* Events grid */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; }

/* ══════════════ FILTERS ══════════════ */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.f-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--t2); font-size: 12px; font-weight: 500;
  padding: 6px 16px; border-radius: 100px; transition: all .18s;
}
.f-btn:hover { color: var(--t1); border-color: #3a3a3a; }
.f-btn.active {
  background: var(--pink); border-color: var(--pink);
  color: var(--white); font-weight: 600;
}

/* City group */
.city-grp { margin-bottom: 44px; }
.city-grp-label {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
}
.city-grp-title {
  font-family: var(--fd); font-weight: 700;
  font-size: 17px; letter-spacing: -.02em;
}
.city-grp-count {
  font-size: 10px; font-weight: 700; color: var(--pink);
  background: var(--pink-dim); border: 1px solid rgba(255,79,165,.2);
  padding: 2px 9px; border-radius: 100px;
}

/* ══════════════ CAROUSEL ══════════════ */
.carousel-wrap { overflow: hidden; margin: 0 -40px; padding: 0 40px; }
.carousel {
  display: flex; gap: 14px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 6px;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel > * { scroll-snap-align: start; flex-shrink: 0; }

/* ══════════════ AI CARD ══════════════ */
.ai-card {
  width: 252px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.ai-card:hover { transform: translateY(-4px); border-color: rgba(255,79,165,.25); }
.ai-thumb { height: 140px; position: relative; }
.ai-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,79,165,.35); color: var(--pink);
  font-size: 8px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 100px;
}
.ai-body { padding: 14px 16px; }
.ai-cat { font-size: 9px; font-weight: 700; color: var(--t3); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.ai-name { font-family: var(--fd); font-weight: 700; font-size: 15px; letter-spacing: -.02em; margin-bottom: 10px; line-height: 1.2; }
.ai-meta-r { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--t2); margin-bottom: 3px; }
.ai-meta-r svg { opacity: .35; flex-shrink: 0; }
.ai-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; margin-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--pink); font-size: 12px; font-weight: 600;
}

/* ══════════════ VENUE CARD ══════════════ */
.venue-card {
  width: 280px; height: 200px; border-radius: var(--rl);
  overflow: hidden; position: relative; cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.venue-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.5); }
.venue-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s; }
.venue-card:hover .venue-bg { transform: scale(1.06); }
.venue-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 55%, transparent 100%); }
.venue-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
.venue-tag {
  display: inline-block; margin-bottom: 6px; padding: 2px 9px;
  border-radius: 100px; background: rgba(255,255,255,.1);
  font-size: 8px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; backdrop-filter: blur(6px);
}
.venue-name { font-family: var(--fd); font-weight: 700; font-size: 16px; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 4px; }
.venue-row { display: flex; justify-content: space-between; align-items: center; }
.venue-type { font-size: 11px; color: rgba(255,255,255,.55); }
.venue-cap { font-size: 11px; color: var(--pink); font-weight: 700; }

/* ══════════════ FEE SECTION ══════════════ */
.fee-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rll); padding: 44px 48px;
  display: flex; align-items: flex-start; gap: 40px;
}
.fee-icon {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 16px;
  background: var(--pink-dim); border: 1px solid rgba(255,79,165,.2);
  display: flex; align-items: center; justify-content: center; color: var(--pink);
}
.fee-h { font-family: var(--fd); font-weight: 700; font-size: 20px; letter-spacing: -.02em; margin-bottom: 8px; }
.fee-p { font-size: 13px; color: var(--t2); line-height: 1.7; max-width: 500px; margin-bottom: 20px; }
.fee-list { display: flex; gap: 24px; flex-wrap: wrap; }
.fee-item { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; }
.fee-chk {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--pink-dim); border: 1px solid rgba(255,79,165,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); flex-shrink: 0;
}

/* ══════════════ PROMO STRIP ══════════════ */
.promo {
  background: var(--pink); border-radius: var(--rll);
  padding: 52px 48px; display: flex;
  align-items: center; justify-content: space-between;
  gap: 24px; position: relative; overflow: hidden;
}
.promo::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(0,0,0,.07); pointer-events: none;
}
.promo-h { font-family: var(--fd); font-weight: 800; font-size: clamp(22px,3vw,36px); color: var(--black); letter-spacing: -.04em; line-height: 1; margin-bottom: 8px; }
.promo-p { font-size: 13px; color: rgba(0,0,0,.5); max-width: 340px; }
.btn-dark {
  background: var(--black); color: var(--white);
  font-weight: 700; font-size: 14px; padding: 14px 30px;
  border-radius: 100px; white-space: nowrap;
  transition: all .22s; flex-shrink: 0; position: relative; z-index: 1;
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.35); }

/* ══════════════ FOOTER ══════════════ */
.ga-footer { border-top: 1px solid var(--border); padding: 52px 0 32px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 200px; }
.footer-tagline { font-size: 12px; color: var(--t3); line-height: 1.7; margin-top: 10px; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.fc h4 { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--t3); margin-bottom: 14px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fc a { color: var(--t2); font-size: 13px; transition: color .2s; }
.fc a:hover { color: var(--t1); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 12px; color: var(--t3); }
.footer-soc { display: flex; gap: 18px; }
.soc-l { color: var(--t3); font-size: 12px; font-weight: 500; transition: color .2s; }
.soc-l:hover { color: var(--pink); }

/* ══════════════ SECTION HEADER ══════════════ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.sec-head .text-muted { font-size: 13px; margin-top: 4px; }
.sec-btns { display: flex; gap: 8px; flex-shrink: 0; }
.car-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: transparent; border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--t2); transition: all .2s; cursor: pointer;
}
.car-btn:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-dim); }

/* ══════════════ HERO (homepage only) ══════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; pointer-events: none;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,79,165,.09) 0%, transparent 65%);
  top: 50%; left: 55%; transform: translate(-50%,-50%);
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--pink-dim); border: 1px solid rgba(255,79,165,.25);
  border-radius: 100px; padding: 5px 13px;
  font-size: 10px; font-weight: 700; color: var(--pink);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 24px; width: fit-content;
}
.hero-sub { font-size: 16px; color: var(--t2); max-width: 440px; line-height: 1.7; margin: 16px 0 36px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-hero {
  background: var(--pink); color: var(--white);
  font-weight: 700; font-size: 14px; padding: 14px 28px;
  border-radius: 100px; display: inline-flex; align-items: center; gap: 8px;
  transition: all .22s;
}
.btn-hero:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(255,79,165,.3); }
.btn-hero-ghost {
  background: transparent; color: var(--t1); font-weight: 600;
  font-size: 14px; padding: 14px 28px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.14); transition: all .22s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.04); }
.hero-stats { display: flex; align-items: center; gap: 36px; margin-top: 52px; }
.stat-n { font-family: var(--fd); font-weight: 800; font-size: 32px; letter-spacing: -.04em; line-height: 1; }
.stat-l { font-size: 10px; font-weight: 600; color: var(--t3); letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ══════════════ AUTH PAGES ══════════════ */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 80px 20px; }
.auth-box {
  width: 100%; max-width: 440px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--rll); padding: 40px;
}
.auth-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; }
.auth-title { font-family: var(--fd); font-weight: 800; font-size: 26px; letter-spacing: -.03em; margin-bottom: 6px; }
.auth-sub { font-size: 13px; color: var(--t2); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--t2); margin-bottom: 6px; letter-spacing: .02em; }
.form-input {
  width: 100%; padding: 12px 14px;
  background: var(--black); border: 1px solid var(--border2);
  border-radius: var(--r); color: var(--t1); font-size: 14px;
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--pink); }
.form-input::placeholder { color: var(--t3); }
.form-input.error { border-color: #ef4444; }
.form-hint { font-size: 11px; color: var(--t3); margin-top: 5px; }
.auth-btn {
  width: 100%; padding: 13px; background: var(--pink); color: var(--white);
  border-radius: var(--r); font-size: 14px; font-weight: 700;
  transition: all .22s; margin-top: 8px;
}
.auth-btn:hover { background: var(--pink-dark); }
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0; font-size: 12px; color: var(--t3);
}
.auth-divider::before,.auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-social-btn {
  width: 100%; padding: 12px; background: var(--card2);
  border: 1px solid var(--border2); border-radius: var(--r);
  color: var(--t1); font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .2s; margin-bottom: 10px;
}
.auth-social-btn:hover { border-color: #444; background: #1a1a1a; }
.auth-foot { text-align: center; font-size: 13px; color: var(--t2); margin-top: 20px; }
.auth-foot a { color: var(--pink); font-weight: 600; }
.tab-row { display: flex; gap: 0; margin-bottom: 28px; background: var(--black); border-radius: var(--r); padding: 4px; }
.tab-btn {
  flex: 1; padding: 9px; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--t2);
  transition: all .2s;
}
.tab-btn.active { background: var(--card2); color: var(--t1); }

/* ══════════════ DASHBOARD ══════════════ */
.dash-layout { display: flex; min-height: calc(100vh - 64px); }
.dash-sidebar {
  width: 220px; flex-shrink: 0; border-right: 1px solid var(--border);
  padding: 28px 16px; display: flex; flex-direction: column; gap: 4px;
  position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto;
}
.dash-sidebar-section { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--t3); padding: 12px 12px 6px; margin-top: 6px; }
.dash-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: var(--r); font-size: 13px; font-weight: 500;
  color: var(--t2); transition: all .2s; cursor: pointer; position: relative;
}
.dash-link:hover { background: var(--card2); color: var(--t1); }
.dash-link.active { background: var(--pink-dim); color: var(--pink); font-weight: 600; }
.dash-link svg { opacity: .5; flex-shrink: 0; }
.dash-link.active svg { opacity: 1; }
.dash-badge {
  margin-left: auto; background: var(--pink); color: var(--white);
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 100px;
}
.dash-main { flex: 1; padding: 36px 40px; overflow-y: auto; }
.mobile-dash-nav { display: none; }
.dash-header { margin-bottom: 32px; }
.dash-header h1 { font-family: var(--fd); font-weight: 800; font-size: 24px; letter-spacing: -.03em; }
.dash-header p { font-size: 13px; color: var(--t2); margin-top: 4px; }

/* Stat cards */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 14px; margin-bottom: 32px; }
.admin-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 20px;
}
.stat-label { font-size: 11px; font-weight: 600; color: var(--t2); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.stat-value { font-family: var(--fd); font-weight: 800; font-size: 28px; letter-spacing: -.04em; line-height: 1.1; }
.stat-change { font-size: 11px; margin-top: 5px; }
.stat-up { color: #22c55e; }
.stat-down { color: #ef4444; }

/* Table */
.dash-table-wrap { background: var(--card); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; }
.dash-table { width: 100%; border-collapse: collapse; }
.dash-table th { padding: 12px 16px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--t3); text-align: left; border-bottom: 1px solid var(--border); }
.dash-table td { padding: 14px 16px; font-size: 13px; color: var(--t2); border-bottom: 1px solid var(--border); }
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover td { background: rgba(255,255,255,.02); color: var(--t1); }
.dash-table td:first-child { font-weight: 600; color: var(--t1); }
.status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  border-radius: 100px; letter-spacing: .06em; text-transform: uppercase;
}
.status-live { background: rgba(34,197,94,.12); color: #22c55e; border: 1px solid rgba(34,197,94,.2); }
.status-draft { background: var(--card2); color: var(--t2); border: 1px solid var(--border); }
.status-ended { background: rgba(239,68,68,.1); color: #ef4444; border: 1px solid rgba(239,68,68,.18); }
.status-confirmed { background: rgba(34,197,94,.12); color: #22c55e; border: 1px solid rgba(34,197,94,.2); }
.status-pending { background: rgba(245,158,11,.1); color: #f59e0b; border: 1px solid rgba(245,158,11,.2); }

/* Mini chart bar */
.chart-bar-wrap { display: flex; align-items: flex-end; gap: 4px; height: 48px; }
.chart-bar { flex: 1; background: var(--pink-dim); border-radius: 4px 4px 0 0; min-width: 10px; transition: background .2s; }
.chart-bar:hover { background: rgba(255,79,165,.3); }
.chart-bar.active { background: var(--pink); }

/* Event creation wizard */
.wizard-steps { display: flex; gap: 0; margin-bottom: 36px; }
.wizard-step { display: flex; align-items: center; gap: 10px; flex: 1; }
.wizard-step:not(:last-child)::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border); margin: 0 8px;
}
.step-n {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; border: 1px solid var(--border2);
  background: var(--card); color: var(--t3); transition: all .25s;
}
.wizard-step.done .step-n { background: var(--pink); border-color: var(--pink); color: var(--white); }
.wizard-step.active .step-n { background: var(--pink-dim); border-color: var(--pink); color: var(--pink); }
.step-l { font-size: 12px; font-weight: 600; color: var(--t3); }
.wizard-step.active .step-l { color: var(--pink); }
.wizard-step.done .step-l { color: var(--t2); }

.form-section { background: var(--card); border: 1px solid var(--border); border-radius: var(--rl); padding: 28px; margin-bottom: 16px; }
.form-section-title { font-family: var(--fd); font-weight: 700; font-size: 15px; letter-spacing: -.02em; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.ticket-tier-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 16px; margin-bottom: 10px;
}
.tier-color { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* Ticket selector (event page) */
.ticket-drawer {
  position: fixed; right: 0; top: 64px; bottom: 0; width: 360px;
  background: var(--surface); border-left: 1px solid var(--border);
  display: flex; flex-direction: column; z-index: 150;
  transform: translateX(100%); transition: transform .3s;
}
.ticket-drawer.open { transform: translateX(0); }
.drawer-head { padding: 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.drawer-head h3 { font-family: var(--fd); font-weight: 700; font-size: 16px; }
.drawer-body { padding: 20px; flex: 1; overflow-y: auto; }
.drawer-foot { padding: 20px; border-top: 1px solid var(--border); }
.tier-pick {
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 14px 16px; margin-bottom: 10px; cursor: pointer;
  transition: all .2s;
}
.tier-pick:hover { border-color: var(--border2); }
.tier-pick.selected { border-color: var(--pink); background: var(--pink-dim); }
.tier-row { display: flex; justify-content: space-between; align-items: flex-start; }
.tier-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.tier-price { font-family: var(--fd); font-weight: 800; font-size: 18px; color: var(--pink); }
.tier-desc { font-size: 12px; color: var(--t2); margin-top: 5px; }
.qty-ctrl { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.qty-btn {
  width: 30px; height: 30px; border-radius: 50%; background: var(--card);
  border: 1px solid var(--border2); display: flex; align-items: center;
  justify-content: center; cursor: pointer; font-size: 16px; transition: all .2s;
}
.qty-btn:hover { border-color: var(--pink); color: var(--pink); }
.qty-num { font-weight: 700; font-size: 16px; min-width: 24px; text-align: center; }
.fee-note { font-size: 11px; color: var(--t3); margin-top: 8px; }
.order-summary { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 16px; margin-bottom: 14px; }
.order-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 5px 0; }
.order-row.total { font-weight: 700; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 5px; }
.order-row.total .amount { color: var(--pink); }

/* Toast */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r); padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.6);
  transform: translateY(80px); opacity: 0;
  transition: all .3s; min-width: 260px; max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: rgba(34,197,94,.3); }
.toast.error { border-color: rgba(239,68,68,.3); }
.toast-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast-icon.s { background: rgba(34,197,94,.15); color: #22c55e; }
.toast-icon.e { background: rgba(239,68,68,.15); color: #ef4444; }
.toast-msg { font-size: 13px; font-weight: 500; }

/* Mobile nav toggle */
.mobile-menu-btn {
  display: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border2); align-items: center; justify-content: center;
  color: var(--t2); cursor: pointer; transition: all .2s;
}
.mobile-menu-btn:hover { border-color: var(--pink); color: var(--t1); }
.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background-color: #000000 !important; z-index: 9999; padding: 40px 24px; display: flex; flex-direction: column;
  gap: 24px; transform: translateY(-100%); opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); visibility: hidden;
}
.mobile-menu.open {
  transform: translateY(0); opacity: 1 !important; visibility: visible !important;
}
.mobile-menu-link {
  font-family: var(--fd); font-size: 28px; font-weight: 700;
  color: var(--t2); transition: color 0.2s; letter-spacing: -.02em;
}
.mobile-menu-link:hover, .mobile-menu-link.active {
  color: var(--pink);
}
.mobile-menu-foot {
  margin-top: auto; border-top: 1px solid var(--border);
  padding-top: 20px; display: flex; flex-direction: column; gap: 14px;
}


/* ══════════════ MODALS ══════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(180deg, rgba(25,25,25,0.95), #050505);
  border: 1px solid rgba(255, 79, 165, 0.2);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 768px) {
  .ga-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .container { padding: 0 20px; }
  .carousel-wrap { margin: 0 -20px; padding: 0 20px; }
  .hero { padding: 80px 0 50px; }
  .hero-stats { display: none; }
  .section { padding: 48px 0; }
  .promo { flex-direction: column; padding: 36px 24px; }
  .fee-card { flex-direction: column; padding: 28px 24px; gap: 20px; }
  .footer-grid { flex-direction: column; gap: 28px; }
  .footer-cols { gap: 32px; }
  .dash-sidebar { display: none; }
  .dash-main { padding: 24px 20px; }
  
  /* Layout Fixes for Mobile */
  .h1 { font-size: clamp(38px,8vw,44px); line-height: 1.05; }
  .h2 { font-size: 26px; line-height: 1.15; }
  .stat-grid, .admin-stats-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .dash-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .dash-table th, .dash-table td { white-space: nowrap; }
  .ev-layout { flex-direction: column; gap: 32px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  
  .mobile-dash-nav {
    display: block !important;
    width: 100%;
    margin-bottom: 24px;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background-color: #111111 !important;
    border: 1px solid var(--border);
    border-radius: var(--r);
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none"><path d="M2 4l4 4 4-4" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
  }
  .form-row { grid-template-columns: 1fr; }
  .ticket-drawer { 
    width: 100%; 
    top: auto; 
    bottom: 0; 
    max-height: 85vh; 
    border-radius: 24px 24px 0 0; 
    border-top: 1px solid var(--border);
  }
  .nav-right .btn-ghost { display: none; }
}
