/* Nervebookings - apex landing. Pure CSS, no framework. The visual
   language matches the artist sites so the platform reads as one product. */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg:       #0A0814;
  --bg2:      #14102A;
  --card:     #1C1638;
  --card-2:   #251B45;
  --line:     #2E2552;
  --ink:      #FAFAFF;
  --dim:      #9B8FBF;
  --hi:       #FFB347;
  --pink:     #FF3B7F;
  --cyan:     #5BE8FF;
  --grn:      #5FE39B;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.55; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--cyan); text-decoration: none; }
img { display: block; max-width: 100%; }

/* ========== nav ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,8,20,0.78); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.nav-brand {
  font-weight: 900; letter-spacing: 2px; font-size: 1.15em;
  background: linear-gradient(92deg, var(--hi), var(--pink), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-decoration: none;
}
.nav-brand:hover { opacity: 0.85; }
.nav-links { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: var(--dim); font-size: 0.92em;
  padding: 8px 14px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover {
  color: var(--ink); background: rgba(255,255,255,0.06);
  text-decoration: none;
}
.nav-links a.cta {
  color: var(--hi); border: 1px solid rgba(255,179,71,0.55);
  margin-left: 6px;
}
.nav-links a.cta:hover { background: rgba(255,179,71,0.14); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 5vw 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(255,59,127,0.45), transparent 60%),
    radial-gradient(ellipse at 75% 65%, rgba(91,232,255,0.32), transparent 62%),
    radial-gradient(ellipse at 50% 100%, rgba(255,179,71,0.2), transparent 70%),
    linear-gradient(160deg, #1B0E36 0%, #0A0814 70%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; width: 100%; margin: 0 auto;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 0.78em; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--hi);
  padding: 6px 14px;
  border: 1px solid rgba(255,179,71,0.5);
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(3em, 9vw, 7.5em);
  font-weight: 900; letter-spacing: -3px; line-height: 1.25;
  /* Big line-height + generous padding-bottom because the gradient
     background-clip:text combined with the drop-shadow filter creates
     a tight bounding box that crops descenders ('g' in Nervebookings)
     when line-height runs tight. */
  background: linear-gradient(92deg, var(--hi), var(--pink) 50%, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 8px 30px rgba(255,59,127,0.35));
  padding-bottom: 22px;
  margin-bottom: 14px;
  position: relative; z-index: 2;
  overflow: visible;
}
.hero .tag {
  font-size: clamp(1.1em, 1.6vw, 1.4em);
  color: var(--ink); opacity: 0.92;
  max-width: 720px; margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
/* The promise pills - sits between the tagline and the CTAs. The whole
   point of this section is being impossible to miss; the no-cut rule
   is the differentiator from Bandzoogle/Linktree/etc. */
.promise {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 30px;
  max-width: 880px;
}
.promise-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(95,227,155,0.08);
  border: 1px solid rgba(95,227,155,0.4);
  color: var(--grn); font-weight: 700; font-size: 0.92em;
  letter-spacing: 0.3px;
}
.promise-pill strong { color: var(--ink); font-weight: 900; font-size: 1.05em; }
/* The cornerstone green-accent treatment - applied to the standalone
   Rule card below the feature grid. */
.feat-cornerstone {
  border-color: rgba(95,227,155,0.55) !important;
  background: linear-gradient(160deg,
    rgba(95,227,155,0.14), rgba(95,227,155,0.04) 55%, var(--card) 100%) !important;
  box-shadow: 0 12px 40px rgba(95,227,155,0.14);
}
.feat-cornerstone h3 { color: var(--grn) !important; }
.feat-cornerstone strong { color: var(--ink); font-weight: 800; }

/* Standalone, below-grid placement - same card shape as a .feat, just
   widened, padded down, and given breathing room so it reads as its
   own declaration. The top margin is intentionally generous so it
   reads as a separate section, not a stragger feature of the grid. */
.rule-standalone {
  margin: 96px auto 0;
  max-width: 820px;
  padding: 44px 44px 42px;
  text-align: center;
}
.rule-standalone h3 {
  font-size: clamp(1.4em, 2.4vw, 1.85em); margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 12px;
}
.rule-standalone .rule-emoji {
  font-size: 1.15em; line-height: 1;
  /* Slight optical lift so the emoji sits visually centered on the
     gradient-text baseline of the h3 - emojis ride low by default. */
  transform: translateY(-2px);
}
.rule-standalone p {
  font-size: 1.02em; line-height: 1.65; max-width: 640px;
  margin: 0 auto; color: var(--dim);
}
.hero-marquee {
  position: relative; z-index: 1;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; padding: 12px 0;
  background: rgba(255,255,255,0.02);
}
.hero-marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.hero-marquee-track span {
  color: var(--dim); font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; font-size: 0.85em;
}
.hero-marquee-track span:nth-child(odd) { color: var(--hi); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== sections ========== */
.bigsec { position: relative; padding: 110px 0; }
.bigsec.alt {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(91,232,255,0.05), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255,59,127,0.06), transparent 55%),
    var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bigsec.alt::before, .bigsec.alt::after {
  content: ""; position: absolute; left: 0; right: 0;
  height: 4px; pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0,
    rgba(255,179,71,0.4) 30%,
    rgba(255,59,127,0.55) 50%,
    rgba(91,232,255,0.4) 70%,
    transparent 100%);
}
.bigsec.alt::before { top: -1px; }
.bigsec.alt::after  { bottom: -1px; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-head { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78em; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--cyan);
  padding: 4px 12px;
  border: 1px solid rgba(91,232,255,0.4);
  border-radius: 999px;
  margin-bottom: 14px;
}
.bigsec h2 {
  font-size: clamp(2.2em, 4vw, 3.4em);
  font-weight: 900; letter-spacing: -1px; line-height: 1.18;
  /* Same descender-clip fix as .hero h1 - gradient bbox crops 'g' / 'y'
     tails when line-height runs tight. Padding-bottom gives the glyph room. */
  background: linear-gradient(92deg, var(--hi), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: 14px;
  margin-bottom: 4px;
  overflow: visible;
}
.bigsec .sub {
  color: var(--dim); font-size: 1.05em; max-width: 640px;
  margin: 0 auto;
}

/* ========== artist grid ========== */
.artist-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.artist-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.artist-card:hover {
  transform: translateY(-6px);
  border-color: var(--hi);
  box-shadow: 0 14px 40px rgba(255,179,71,0.2);
}
/* All artist cards share a 4:5 frame - matches Atrocity Whiteout's
   new poster (1122x1402), Lady Jessica (1024x1280), and SwirvCEO
   (1122x1402) exactly. Stevieontay is 2:3 native so we anchor his
   crop to top; Crackle is square so cover-crops sides slightly. */
.artist-card .art {
  aspect-ratio: 4 / 5;
  background: var(--card-2);
  background-size: cover;
  background-position: center top;
}
.artist-card .meta { padding: 8px 14px 10px; line-height: 1.2; }
.artist-card .name { color: var(--ink); font-weight: 900; font-size: 1.05em; }
.artist-card .sub  { color: var(--dim); font-size: 0.78em; margin-top: 2px; }

/* ========== artist carousel ========== */
/* Desktop: invisible wrapper - .artist-grid stays a 5-up auto-fit grid.
   Mobile (handled in the responsive block below): wrapper enables a
   horizontal scroll-snap strip showing one card at a time, swipeable,
   with dots underneath. */
.artist-carousel { position: relative; }
/* The clone of the first card lives in the DOM purely as a snap-target
   that lets the mobile carousel loop forward without a rewind animation.
   Hide it everywhere by default; the mobile media query re-enables it
   inside the scroll strip. Desktop never sees it. */
.artist-card-clone { display: none !important; }
.artist-dots {
  display: none;     /* hidden on desktop; mobile shows them */
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.artist-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.artist-dot.on {
  background: var(--hi);
  transform: scale(1.4);
}

/* ========== feature grid ========== */
.feat-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feat {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px;
  transition: transform .15s, border-color .15s;
}
.feat:hover { transform: translateY(-4px); border-color: var(--hi); }
.feat .icon { font-size: 2em; margin-bottom: 14px; }
.feat h3 { color: var(--hi); margin-bottom: 8px; font-size: 1.15em; }
.feat p { color: var(--dim); font-size: 0.95em; line-height: 1.55; }

/* ========== join ========== */
.join-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 22px; padding: 40px;
  text-align: center; max-width: 880px; margin: 0 auto;
}
.join-row {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.join-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; color: var(--ink); font-weight: 700;
}
.join-step .num {
  width: 44px; height: 44px;
  border: 1px solid var(--hi);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--hi); font-weight: 900; font-size: 1.15em;
}

/* ========== contact ========== */
.contact-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 36px 28px;
  text-align: center;
}

/* ========== buttons ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 13px;
  font-weight: 800; font-size: 0.98em; cursor: pointer;
  border: 1px solid transparent; transition: all .15s;
  background: none; color: var(--ink); font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--hi), #E0931C);
  color: #2A1700;
  box-shadow: 0 6px 28px rgba(255,179,71,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,179,71,0.55);
}
.btn-ghost { color: var(--ink); border: 1px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* ========== footer ========== */
footer {
  text-align: center; color: var(--dim); font-size: 0.88em;
  padding: 60px 24px; border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-brand {
  font-weight: 900; letter-spacing: 2px; font-size: 1.2em;
  background: linear-gradient(92deg, var(--hi), var(--pink), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.footer-sub { color: var(--dim); margin-bottom: 18px; font-size: 0.92em; }
.footer-links {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-links a { color: var(--dim); font-size: 0.9em; }
.footer-links a:hover { color: var(--hi); }
.footer-copy { color: #6B6480; font-size: 0.82em; }

/* ========== featured 1x3 rotating strip ========== */
.featured-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.featured-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform .2s, box-shadow .2s;
}
.featured-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.55);
}
.featured-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}
.featured-name {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  z-index: 2;
}

/* ========== responsive ========== */
@media (max-width: 760px) {
  .hero { min-height: auto; padding: 60px 5vw 40px; }
  .bigsec { padding: 50px 0; }
  .section-head { margin-bottom: 24px; }
  .nav-brand { font-size: 1em; }
  .featured-strip-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Artist carousel - grid-stack crossfade.
     All cards live in the SAME grid cell (grid-area: 1 / 1) so the
     cell sizes to the NATURAL height of the cards. Tall 4:5 portraits
     stay 4:5. Square portraits stay square. NO forced aspect on the
     stage. NO absolute positioning. */
  .artist-carousel { position: relative; max-width: 360px; margin: 0 auto; }
  .artist-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0;
    gap: 0;
    overflow: visible;
  }
  .artist-card {
    grid-area: 1 / 1;          /* every card stacks in the same cell */
    /* Keep desktop's flex column + border-radius + bg etc untouched. */
    opacity: 0;
    transition: opacity .55s ease, border-color .25s ease,
                box-shadow .25s ease;
    pointer-events: none;
  }
  .artist-card.on {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }
  /* Touch feedback - fan presses the card → orange stroke + glow
     appears, signaling "this card is selectable". Auto-rotate pauses
     for 6s; when it resumes, .touched fades. */
  .artist-card.touched {
    border-color: var(--hi);
    box-shadow: 0 0 0 2px rgba(255, 179, 71, 0.35),
                0 18px 40px rgba(0, 0, 0, 0.4);
  }
  /* The image (.art) keeps its 4:5 natural aspect from the desktop
     rule. No override here. */

  /* Dots row sits under the stage on mobile. */
  .artist-dots { display: flex; }
}
/* ======================================================================
   Auth widget (auth-widget.js) - unified identity chip + sign-in modal.
   Lives at #auth-widget on every page (apex + every artist site). When
   signed out: a "Sign in" link. When signed in: an avatar+name chip
   that opens a dropdown menu tailored to the user's role.
   ====================================================================== */
#auth-widget { display: inline-flex; align-items: center; position: relative; }
.nv-signin {
  color: var(--ink); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
  font-weight: 600; font-size: 0.92em;
  background: rgba(255,255,255,0.04);
}
.nv-signin:hover { border-color: var(--hi); color: var(--hi); }
.nv-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 12px 4px 4px; cursor: pointer;
  color: var(--ink); font: inherit; font-size: 0.9em;
}
.nv-chip:hover { border-color: var(--hi); }
.nv-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--hi); color: var(--on-hi);
  font-weight: 700; font-size: 0.85em;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.nv-avatar-img { object-fit: cover; background: var(--card); }
.nv-chip-text { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nv-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 6px;
  min-width: 240px; z-index: 850;
  box-shadow: 0 14px 36px rgba(0,0,0,0.55);
  display: flex; flex-direction: column;
}
.nv-menu-head { padding: 14px 12px 12px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.nv-menu-head-row { display: flex; align-items: center; gap: 12px; }
.nv-menu-head-ident { min-width: 0; flex: 1; }
.nv-menu-head-name { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nv-avatar-lg { width: 38px; height: 38px; font-size: 1em; flex: 0 0 38px; }
.nv-menu-name { color: var(--ink); font-weight: 700; font-size: 1em; }
.nv-role-badge {
  font-size: 0.7em; font-weight: 700;
  padding: 2px 9px; border-radius: 999px;
  text-transform: lowercase; letter-spacing: 0.02em;
  background: rgba(91,232,255,0.14); color: var(--cyan);
  border: 1px solid rgba(91,232,255,0.32);
  white-space: nowrap;
}
.nv-role-super_admin   { background: rgba(255,179,71,0.16); color: var(--hi);
                         border-color: rgba(255,179,71,0.4); }
.nv-role-network_admin { background: rgba(255,179,71,0.10); color: var(--hi);
                         border-color: rgba(255,179,71,0.3); }
.nv-role-artist_admin  { background: rgba(255,79,163,0.12); color: var(--pink);
                         border-color: rgba(255,79,163,0.32); }
.nv-role-venue         { background: rgba(95,227,155,0.12); color: var(--grn);
                         border-color: rgba(95,227,155,0.32); }
.nv-role-fan           { background: rgba(91,232,255,0.10); color: var(--cyan); }
.nv-menu-email {
  color: var(--dim); font-size: 0.78em; margin-top: 4px;
  text-transform: lowercase;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nv-menu-item {
  display: block; padding: 9px 12px; border-radius: 8px;
  color: var(--ink); text-decoration: none; font-size: 0.9em;
  background: none; border: none; cursor: pointer; text-align: left; font-family: inherit;
}
.nv-menu-item:hover { background: rgba(255,255,255,0.05); color: var(--hi); }
.nv-menu-sep { height: 1px; background: var(--line); margin: 4px 0; }

/* Auth modal (sign in / sign up) */
.nv-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.78);
  display: none; align-items: center; justify-content: center;
  z-index: 990; padding: 22px;
}
.nv-modal.show { display: flex; }
.nv-modal-panel {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 26px;
  max-width: 480px; width: 100%; max-height: 92vh; overflow: auto;
}
.nv-modal-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; color: var(--ink);
  font-size: 1.8em; cursor: pointer; line-height: 1;
}
.nv-tabs { display: flex; gap: 6px; margin-bottom: 18px; }
.nv-tab {
  flex: 1; padding: 10px; border: 1px solid var(--line);
  background: transparent; color: var(--dim);
  border-radius: 10px; cursor: pointer; font-weight: 600; font: inherit;
}
.nv-tab-active { background: var(--bg2); color: var(--hi); border-color: var(--hi); }
.nv-form { display: flex; flex-direction: column; gap: 12px; }
.nv-form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; transition: grid-template-columns .25s ease; }
.nv-form-main { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.nv-modal-panel { transition: max-width .25s ease; }
.nv-modal-panel.with-venue { max-width: 860px; }
.nv-modal-panel.with-venue .nv-form-grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 720px) {
  .nv-modal-panel.with-venue { max-width: 480px; }
  .nv-modal-panel.with-venue .nv-form-grid { grid-template-columns: 1fr; }
}
.nv-venue-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,232,255,0.06); color: var(--cyan);
  border: 1px dashed rgba(91,232,255,0.4); border-radius: 10px;
  padding: 10px 14px; cursor: pointer; font: inherit; font-size: 0.88em;
  text-align: left;
}
.nv-venue-toggle:hover { border-style: solid; background: rgba(91,232,255,0.10); }
.nv-venue-toggle-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(91,232,255,0.15); color: var(--cyan);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1em; line-height: 1;
}
.nv-venue-toggle-open { background: rgba(255,79,163,0.06); border-color: rgba(255,79,163,0.4); color: var(--pink); }
.nv-venue-toggle-open .nv-venue-toggle-icon { background: rgba(255,79,163,0.15); color: var(--pink); }
.nv-row { display: flex; flex-direction: column; gap: 5px; font-size: 0.85em; color: var(--dim); }
.nv-row > span { color: var(--ink); font-weight: 600; }
.nv-row > span em { color: var(--dim); font-style: normal; font-weight: 400; font-size: 0.85em; }
.nv-row input, .nv-row select, .nv-row textarea {
  background: var(--bg2); border: 1px solid var(--line); color: var(--ink);
  border-radius: 8px; padding: 9px 12px; font: inherit; font-size: 0.92em;
}
.nv-row input:focus, .nv-row select:focus { outline: none; border-color: var(--hi); }
/* Author-rule `display: flex` on .nv-row beats `[hidden] { display: none }`.
   Restore the hide for elements toggled via the HTML hidden attribute. */
.nv-row[hidden], .nv-venue-fields[hidden], .nv-menu[hidden] { display: none !important; }
.nv-check { flex-direction: row; align-items: center; gap: 10px; }
.nv-check input { width: auto; }
.nv-venue-fields {
  border: 1px solid var(--line); border-radius: 10px; padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(91,232,255,0.04);
}
.nv-venue-fields legend { color: var(--cyan); padding: 0 6px; font-weight: 600; font-size: 0.85em; }

