/* ==========================================================================
   Outsyd - shared design system
   Brand: navy base, cyan/teal + violet accents. Modern, glassy, NGN/Nigeria.
   ========================================================================== */

/* ---- tokens ---- */
:root {
  --navy-900: #060b18;
  --navy-850: #08101f;
  --navy-800: #0b1324;
  --navy-700: #0e1830;
  --navy-650: #121f3a;
  --navy-600: #16233f;
  --line: rgba(148, 175, 230, 0.12);
  --line-strong: rgba(148, 175, 230, 0.22);

  --cyan: #34e0d0;
  --cyan-bright: #22d3ee;
  --teal: #2ee6c5;
  --violet: #7c5cff;
  --violet-bright: #8b5cf6;

  --ink: #f4f8ff;
  --ink-soft: #c7d3ea;
  --ink-mute: #8a99b8;
  --ink-faint: #5f6f90;

  /* solid brand color for buttons (no gradient, mature look) */
  --brand: var(--cyan);
  --brand-ink: #04141a; /* readable text on the cyan button */
  --grad-brand-soft: linear-gradient(120deg, rgba(52,224,208,0.16), rgba(124,92,255,0.16));
  --grad-text: linear-gradient(100deg, #5af0e0 0%, #34e0d0 35%, #9b7bff 100%);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 50px -22px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 0 1px rgba(52, 224, 208, 0.25), 0 22px 60px -24px rgba(52, 224, 208, 0.45);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 48px);
  /* body uses an editorial serif; headings keep the Sora display weight */
  --font: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--navy-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; }

/* ---- ambient background ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 12% -5%, rgba(52, 224, 208, 0.16), transparent 60%),
    radial-gradient(55% 45% at 92% 4%, rgba(124, 92, 255, 0.18), transparent 62%),
    radial-gradient(70% 60% at 50% 110%, rgba(34, 211, 238, 0.08), transparent 65%),
    var(--navy-900);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(100% 60% at 50% 0%, #000 35%, transparent 80%);
}

/* ---- layout ---- */
.container { width: min(100% - 2 * var(--pad), var(--maxw)); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--cyan); opacity: 0.7; }
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--ink-soft); font-size: clamp(1.02rem, 1.6vw, 1.18rem); }
.center { text-align: center; }
.center .eyebrow::before { display: none; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(8, 16, 31, 0.66);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(8, 16, 31, 0.86); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.28rem; letter-spacing: -0.01em; }
.brand img { width: 42px; height: auto; filter: drop-shadow(0 4px 14px rgba(52, 224, 208, 0.35)); }
.brand span { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__cta .btn { border-radius: 12px; }
.nav__toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(255,255,255,0.03); align-items: center; justify-content: center; }
.nav__toggle svg { width: 20px; height: 20px; stroke: var(--ink); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 12px; font-weight: 700; font-size: 0.96rem;
  border: 1px solid transparent; transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--brand); color: var(--brand-ink); box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-2px); background: #45e8d9; box-shadow: 0 0 0 1px rgba(52,224,208,0.4), 0 26px 70px -22px rgba(52,224,208,0.6); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }

/* ---- store badges ---- */
.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.card .stores { justify-content: center; }
.store {
  display: inline-flex; align-items: center; gap: 13px;
  padding: 12px 20px 12px 18px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-strong);
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
}
.store:hover { transform: translateY(-3px); border-color: var(--cyan); background: rgba(52,224,208,0.06); }
.store svg { width: 30px; height: 30px; flex: none; }
.store__txt { display: flex; flex-direction: column; line-height: 1.15; }
.store__txt small { font-size: 0.7rem; color: var(--ink-mute); letter-spacing: 0.02em; }
.store__txt strong { font-size: 1.02rem; font-weight: 700; }

/* ---- hero ---- */
.hero { padding-top: clamp(40px, 7vw, 84px); padding-bottom: clamp(40px, 6vw, 80px); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); font-weight: 850; }
.hero p.lead { margin-top: 22px; max-width: 30ch; }
.hero__actions { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: clamp(40px, 5vw, 64px); }
.hero__cta .btn { font-size: 1.02rem; padding: 16px 32px; border-radius: 12px; min-width: 200px; }
.hero__rating { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-mute); font-size: 0.9rem; }
.hero__rating .stars { color: #ffc94d; letter-spacing: 2px; }

/* phone mockup */
.phone {
  position: relative; width: min(300px, 78vw); margin-inline: auto; aspect-ratio: 300 / 620;
  border-radius: 46px; padding: 12px;
  background: linear-gradient(165deg, #1b2742, #0a1120);
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 120px -40px rgba(52, 224, 208, 0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #05080f; border-radius: 14px; z-index: 3;
}
.phone__screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: var(--navy-850); position: relative; }
.phone__glow { position: absolute; inset: -30% -20% auto -20%; height: 60%; background: radial-gradient(circle, rgba(124,92,255,0.4), transparent 70%); filter: blur(30px); z-index: 0; }
.phone img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.phone__float {
  position: absolute; z-index: 4; padding: 12px 16px; border-radius: 16px;
  background: rgba(11, 19, 36, 0.82); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 11px; font-size: 0.84rem; font-weight: 600;
}
.phone__float small { color: var(--ink-mute); font-weight: 500; display: block; font-size: 0.72rem; }
.phone__float--a { top: 16%; left: -42px; }
.phone__float--b { bottom: 13%; right: -40px; }
.phone__float .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; background: var(--grad-brand-soft); }
.phone__float .ic svg { width: 18px; height: 18px; }

/* ---- stat strip ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 22px 14px; border-radius: var(--radius); background: rgba(255,255,255,0.025); border: 1px solid var(--line); }
.stat b { display: block; font-size: clamp(1.7rem, 3.4vw, 2.5rem); background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--ink-mute); font-size: 0.86rem; }

/* ---- feature cards ---- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  padding: 28px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.card__ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; background: var(--grad-brand-soft); border: 1px solid var(--line-strong); }
.card__ic svg { width: 26px; height: 26px; stroke: var(--cyan); }
.card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.card p { color: var(--ink-mute); font-size: 0.96rem; }

/* ---- organiser pricing note ---- */
.pricing { display: grid; gap: 12px; margin-bottom: 24px; }
.pricing__row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
}
.pricing__amt { flex: none; font-weight: 850; font-size: 1.15rem; color: var(--ink); line-height: 1; }
.pricing__amt--accent { color: var(--cyan); }
.pricing__lbl { color: var(--ink-mute); font-size: 0.9rem; line-height: 1.45; }

/* ---- category chips ---- */
.cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.cat {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  font-weight: 600; font-size: 0.95rem; transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
}
.cat:hover { transform: translateY(-3px); border-color: var(--line-strong); background: rgba(52,224,208,0.05); }
.cat__ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.cat__ic svg { width: 21px; height: 21px; stroke: #fff; }

/* ---- steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.025); border: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: 22px; right: 26px; font-size: 2.6rem; font-weight: 850; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.5; }
.step h3 { font-size: 1.18rem; margin-bottom: 9px; max-width: 80%; }
.step p { color: var(--ink-mute); font-size: 0.95rem; }

/* ---- CTA banner ---- */
.cta-banner {
  border-radius: var(--radius-lg); padding: clamp(38px, 6vw, 64px); text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(120deg, rgba(52,224,208,0.12), rgba(124,92,255,0.14));
  border: 1px solid var(--line-strong);
}
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(52,224,208,0.18), transparent 60%); pointer-events: none; }
.cta-banner h2 { font-size: clamp(1.9rem, 4vw, 3rem); position: relative; }
.cta-banner p { position: relative; margin: 16px auto 28px; max-width: 46ch; color: var(--ink-soft); }
.cta-banner .stores { position: relative; justify-content: center; }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--line); padding-block: 56px 30px; margin-top: 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer__brand p { color: var(--ink-mute); font-size: 0.92rem; margin-top: 14px; max-width: 34ch; }
.footer h4 { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--ink-soft); font-size: 0.94rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--cyan); }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03); transition: 0.2s; }
.footer__socials a:hover { border-color: var(--cyan); background: rgba(52,224,208,0.06); }
.footer__socials svg { width: 18px; height: 18px; fill: var(--ink-soft); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: 0.86rem; }
.footer__bottom a { color: var(--ink-mute); }
.footer__bottom a:hover { color: var(--cyan); }

/* ---- legal / content pages ---- */
.page-head { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(28px, 4vw, 48px); }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-head p { color: var(--ink-mute); margin-top: 14px; }
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--ink); }
.prose p { color: var(--ink-soft); margin-bottom: 14px; }
.prose ul, .prose ol { color: var(--ink-soft); padding-left: 22px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.prose a:not(.btn) { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
/* Buttons keep their own colour/underline even inside prose (the cyan prose-link
   rule would otherwise paint .btn--primary text cyan on a cyan background). */
.prose a.btn { text-decoration: none; }
.prose a.btn--primary { color: var(--brand-ink); }
.prose a.btn--ghost { color: var(--ink); }
.prose strong { color: var(--ink); }
.toc { position: sticky; top: 90px; align-self: start; }
.toc h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 14px; }
.toc ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.toc a { color: var(--ink-mute); font-size: 0.9rem; transition: color 0.2s; }
.toc a:hover { color: var(--cyan); }
.legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }

/* ---- contact ---- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.contact-card { padding: 26px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.03); border: 1px solid var(--line); }
.contact-card .card__ic { margin-bottom: 16px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.contact-card p { color: var(--ink-mute); font-size: 0.94rem; }
.contact-card a { color: var(--cyan); font-weight: 600; }

/* ---- reveal animation ----
   Fail-safe: content is visible by default. Only when JS is active (html.js)
   do we hide-then-animate, so a JS/observer failure never leaves the page blank. */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- responsive ---- */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-inline: auto; }
  .hero__actions { align-items: center; }
  .hero .stores, .hero__rating { justify-content: center; }
  .phone__float--a { left: 0; }
  .phone__float--b { right: 0; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
  .legal-grid { grid-template-columns: 1fr; gap: 24px; }
  .toc { position: static; }
}
@media (max-width: 680px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: var(--pad); right: var(--pad);
    background: rgba(8,16,31,0.96); backdrop-filter: blur(16px); border: 1px solid var(--line-strong);
    border-radius: var(--radius); padding: 18px 22px; gap: 16px; align-items: flex-start;
  }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .phone__float { display: none; }
  /* CTA buttons stack full-width and stay inside the viewport on phones. */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; min-width: 0; }
}

/* ==========================================================================
   Live event blocks (Trending on home + Discover grid) - data from app API
   ========================================================================== */
.ev-section[hidden] { display: none; }
.ev-section .ev-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }

/* Trending list (home). grid-template-columns:minmax(0,1fr) stops the grid track
   from expanding to the no-wrap title's max-content width, which was forcing the
   row (and the whole page) wider than the viewport on mobile. */
.ev-list { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; }
.ev-row {
  display: flex; align-items: center; gap: 16px; padding: 14px 18px; min-width: 0;
  border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
}
.ev-row:hover { transform: translateY(-2px); border-color: var(--line-strong); background: rgba(52,224,208,0.05); }
.ev-rank { width: 30px; height: 30px; flex: none; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 0.9rem; color: var(--cyan); background: rgba(52,224,208,0.14); }
.ev-thumb { width: 60px; height: 60px; flex: none; border-radius: 12px; overflow: hidden; background: var(--navy-700); }
.ev-thumb img, .ev-card-img img { width: 100%; height: 100%; object-fit: cover; }
.ev-ph { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy-650), var(--navy-700)); }
.ev-row-body { flex: 1; min-width: 0; }
.ev-row-title { display: block; font-weight: 700; font-size: 1rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ev-row-host { display: block; font-size: 0.85rem; color: var(--ink-mute); }
.ev-row-price { flex: none; font-weight: 800; color: var(--cyan); font-size: 0.95rem; }

/* Discover grid */
.ev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.ev-card { display: block; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)); border: 1px solid var(--line); transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s; }
.ev-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.ev-card-img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-700); }
.ev-card-body { display: block; padding: 16px 18px 18px; }
.ev-card-kicker { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.ev-card-title { display: block; font-weight: 800; font-size: 1.08rem; color: var(--ink); letter-spacing: -0.01em; }
.ev-card-loc { display: block; font-size: 0.88rem; color: var(--ink-mute); margin-top: 4px; }
.ev-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.ev-card-price { font-weight: 800; color: var(--cyan); }
.ev-card-when { font-size: 0.82rem; color: var(--ink-mute); }
.ev-empty { color: var(--ink-mute); padding: 40px 0; text-align: center; }
.ev-empty a { color: var(--cyan); }

/* Section heading used across discover blocks */
.ev-head-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; margin: 0; }

/* Featured hero event (discover page) */
.ev-hero { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; max-height: 460px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.ev-hero .ev-hero-img, .ev-hero .ev-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ev-hero .ev-ph { position: absolute; inset: 0; }
.ev-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,16,31,0) 30%, rgba(8,16,31,0.55) 65%, rgba(8,16,31,0.92) 100%); }
.ev-hero-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 30px; display: flex; flex-direction: column; gap: 10px; }
.ev-hero-cat { align-self: flex-start; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.16); backdrop-filter: blur(8px); padding: 5px 12px; border-radius: 999px; }
.ev-hero-title { font-size: clamp(1.4rem, 3.4vw, 2.2rem); font-weight: 850; color: #fff; letter-spacing: -0.02em; line-height: 1.1; }
.ev-hero-foot { display: flex; align-items: center; gap: 18px; }
.ev-hero-when { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.ev-hero-price { color: var(--cyan); font-weight: 850; font-size: 1.1rem; }
.ev-hero:hover .ev-hero-img img { transform: scale(1.03); transition: transform 0.5s var(--ease); }

/* Category chips (discover page) */
.ev-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ev-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: rgba(255,255,255,0.03); border: 1px solid var(--line); color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; transition: border-color 0.2s, color 0.2s, transform 0.2s; }
.ev-chip:hover { border-color: var(--cyan); color: var(--ink); transform: translateY(-2px); }
.ev-chip-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }

/* Featured organisers (discover page) */
.ev-hosts { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
.ev-host { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 18px 12px; border-radius: var(--radius); background: rgba(255,255,255,0.025); border: 1px solid var(--line); transition: transform 0.2s, border-color 0.2s; }
.ev-host:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.ev-host-av { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; background: var(--navy-700); border: 1px solid var(--line-strong); }
.ev-host-av img { width: 100%; height: 100%; object-fit: cover; }
.ev-host-ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-weight: 850; font-size: 1.5rem; color: var(--brand-ink); background: var(--brand); }
.ev-host-name { font-weight: 700; color: var(--ink); font-size: 0.96rem; display: inline-flex; align-items: center; gap: 5px; }
.ev-host-verified { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; background: var(--cyan); color: var(--brand-ink); font-size: 0.65rem; font-weight: 900; }
.ev-host-meta { color: var(--ink-mute); font-size: 0.82rem; }
