/* ============================================================
   BlockStar base styles
   Dark-first, no light mode. Tokens mirror tailwind.config.js
   so CSS that can't easily use utilities still hits the system.
   ============================================================ */

:root {
  --bg-base: #0A0A0B;
  --bg-elevated: #121214;
  --bg-surface: #1A1A1D;
  --bg-surface-hover: #222226;

  --text-primary: #FAFAFA;
  --text-secondary: #B4B4BC;
  --text-muted: #76767E;

  --accent: #E8FE54;
  --accent-deep: #B6CC2E;
  --accent-ink: #16180A;

  --live: #FF4D4D;
  --success: #3DD68C;
  --warning: #F5A524;
  --error: #F5475C;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-default: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.22);

  --focus-ring: 0 0 0 3px rgba(232, 254, 84, 0.35);

  --max-shell: 1280px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

/* numerals in metadata align (Theo: tabular-nums) */
.tabular { font-variant-numeric: tabular-nums; }

/* ---------- Accessibility helpers ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* Visible, consistent focus ring everywhere (keyboard a11y) */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 10px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Type roles (Archivo only >=22px per spec) ---------- */
.font-display { font-family: 'Archivo', system-ui, sans-serif; }

.t-display-hero { font-family: 'Archivo'; font-weight: 800; font-size: clamp(44px, 8vw, 72px); line-height: 0.95; letter-spacing: -0.03em; }
.t-display-1 { font-family: 'Archivo'; font-weight: 800; font-size: clamp(34px, 5vw, 48px); line-height: 1.0; letter-spacing: -0.02em; }
.t-display-2 { font-family: 'Archivo'; font-weight: 700; font-size: clamp(26px, 4vw, 32px); line-height: 1.1; letter-spacing: -0.01em; }
.t-title { font-family: 'Archivo'; font-weight: 700; font-size: 22px; line-height: 1.2; letter-spacing: -0.01em; }
.t-heading { font-weight: 600; font-size: 18px; line-height: 1.3; }
.t-body { font-size: 16px; line-height: 1.55; }
.t-body-sm { font-size: 14px; line-height: 1.5; }
.t-label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.t-caption { font-size: 12px; line-height: 1.4; }
.t-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; /* the ONLY uppercase voice */
}

/* ---------- Tag / chip primitives ---------- */
.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border-default);
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--text-secondary);
  background: transparent;
}

/* city chip gets the small Volt dot (every card looks "signed") */
.city-dot::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 9999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-default);
  border-radius: 6px;
  padding: 8px 14px;
  color: var(--text-secondary);
  background: var(--bg-surface);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.chip:hover { background: var(--bg-surface-hover); color: var(--text-primary); border-color: var(--border-strong); }
.chip[aria-current="true"], .chip.is-active {
  border-color: var(--accent);
  color: var(--text-primary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
/* ONE Volt-filled primary per region */
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-secondary { background: var(--bg-surface); color: var(--text-primary); border-color: var(--border-default); }
.btn-secondary:hover { background: var(--bg-surface-hover); border-color: var(--border-strong); }
.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-surface); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }

/* ---------- Card surface ---------- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
}
.card-hover { transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease; }
.card-hover:hover { background: var(--bg-surface-hover); border-color: var(--border-default); }

/* ---------- Video card ---------- */
.vc-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}
.vc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.vc-play {
  position: absolute; inset: 0; margin: auto;
  width: 56px; height: 56px;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  border: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: scale(0.92);
}
.vc-thumb:hover .vc-play,
a:focus-visible .vc-play,
.vc-thumb:focus-within .vc-play { opacity: 1; transform: scale(1); }

.vc-duration {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(10,10,11,0.82);
  color: var(--text-primary);
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}

/* LIVE / recording dot — the ONLY place red is allowed besides errors */
.live-badge {
  position: absolute; top: 8px; left: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(10,10,11,0.82);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-primary);
}
.live-dot { width: 7px; height: 7px; border-radius: 9999px; background: var(--live); }
.live-dot.pulse { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.featured-marker {
  position: absolute; top: 8px; left: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---------- Card: subtle corner "Curated" tag + refined meta line ---------- */
.vc-curated {
  position: absolute; top: 8px; left: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(10,10,11,0.80);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em; line-height: 1;
  padding: 4px 8px; border-radius: 6px;
}
.vc-curated-dot { width: 5px; height: 5px; border-radius: 9999px; background: var(--text-muted); flex: 0 0 auto; }

.vc-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 7px;
  margin-top: 8px; font-size: 12.5px; line-height: 1.4; color: var(--text-secondary);
}
.vc-meta-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--text-secondary); text-decoration: none; white-space: nowrap;
  transition: color 0.15s ease;
}
.vc-meta-link:hover { color: var(--text-primary); }
.vc-city-dot { width: 5px; height: 5px; border-radius: 9999px; background: var(--accent); flex: 0 0 auto; }
.vc-sep { color: var(--text-muted); }

/* ---------- Avatar ---------- */
.avatar { border-radius: 9999px; object-fit: cover; background: var(--bg-elevated); border: 1px solid var(--border-subtle); }

/* ---------- Layout shell ---------- */
.shell { max-width: var(--max-shell); margin: 0 auto; padding-left: 20px; padding-right: 20px; }
@media (min-width: 768px) { .shell { padding-left: 32px; padding-right: 32px; } }

.section { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 768px) { .section { padding-top: 96px; padding-bottom: 96px; } }
.section-tight { padding-top: 40px; padding-bottom: 40px; }

/* ---------- Header ---------- */
.app-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,11,0.72);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link[aria-current="page"] { color: var(--text-primary); }

.wordmark {
  font-family: 'Archivo'; font-weight: 800; font-size: 20px; letter-spacing: -0.02em;
  color: var(--text-primary); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.wordmark .star { color: var(--accent); }

/* ---------- Inputs ---------- */
.input {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 14px;
  width: 100%;
}
.input::placeholder { color: var(--text-muted); }
.input:hover { border-color: var(--border-strong); }

/* ---------- Grids / rails ---------- */
.grid-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 560px) { .grid-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .grid-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1140px) { .grid-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.rail > * { scroll-snap-align: start; }
@media (min-width: 560px) { .rail { grid-auto-columns: 42%; } }
@media (min-width: 900px) { .rail { grid-auto-columns: 30%; } }
@media (min-width: 1140px) { .rail { grid-auto-columns: 23%; } }

/* ---------- Status pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 9999px; padding: 3px 10px;
  font-size: 12px; font-weight: 600;
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
}
.pill .dot { width: 7px; height: 7px; border-radius: 9999px; background: var(--text-muted); }
.pill-success { color: var(--success); border-color: rgba(61,214,140,0.4); }
.pill-success .dot { background: var(--success); }
.pill-warning { color: var(--warning); border-color: rgba(245,165,36,0.4); }
.pill-warning .dot { background: var(--warning); }
.pill-error { color: var(--error); border-color: rgba(245,71,92,0.4); }
.pill-error .dot { background: var(--error); }
.pill-muted .dot { background: var(--text-muted); }

/* ---------- Player ---------- */
.player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-subtle);
}
.player iframe, .player video { width: 100%; height: 100%; border: 0; display: block; }
.player-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.player-cta {
  position: absolute; inset: 0; margin: auto;
  width: 88px; height: 88px; border-radius: 9999px;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.player-cta:hover { transform: scale(1.05); background: var(--accent-deep); }

/* ---------- Empty state ---------- */
.empty {
  border: 1px dashed var(--border-default);
  border-radius: 24px;
  padding: 48px 24px;
  text-align: center;
  background: var(--bg-elevated);
}

/* ---------- Divider ---------- */
.hairline { height: 1px; background: var(--border-subtle); border: 0; }

/* ---------- Link ---------- */
.link { color: var(--text-primary); text-decoration: none; }
.link:hover { color: var(--accent); }
.link-muted { color: var(--text-secondary); text-decoration: none; }
.link-muted:hover { color: var(--text-primary); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  background: var(--bg-surface); border: 1px solid var(--border-default);
  border-radius: 12px; padding: 12px 18px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: toast-in 0.2s ease;
}
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 8px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* favorite heart active */
.fav-active { color: var(--accent); }

/* ---------- Curated / invite-first (muted, NOT the Volt featured look) ---------- */
.curated-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border-default);
  border-radius: 6px;
  padding: 3px 8px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}
.curated-dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: var(--text-muted); /* deliberately NOT accent — no paid/featured read */
  flex: 0 0 auto;
}
.curated-claim {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px;
  background: var(--bg-elevated);
}

/* ---------- Sponsor / ad cards (quiet, native, NEVER a takeover) ----------
   Ads are deliberately CALMER than editorial cards: no Volt accent, a muted
   "Sponsored" tag, a hairline surface. One per screen region, and the slot
   collapses when empty. This is the anti-WorldStar signature. */
.ad-card {
  display: block;
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.ad-card:hover { border-color: var(--border-default); background: var(--bg-surface); }
.ad-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-surface);
  overflow: hidden;
}
.ad-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ad-body { padding: 16px; }
.ad-headline { font-weight: 600; font-size: 16px; line-height: 1.3; color: var(--text-primary); }
.ad-copy { font-size: 14px; line-height: 1.5; color: var(--text-secondary); margin-top: 6px; }
.ad-cta {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-primary);
}
.ad-card:hover .ad-cta { color: var(--accent); }

/* Muted "Sponsored" tag — same family as .curated-badge, never the Volt look. */
.ad-tag {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border-default);
  border-radius: 6px;
  padding: 3px 8px;
  background: rgba(10,10,11,0.72);
  color: var(--text-secondary);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.2; white-space: nowrap;
}
.ad-tag-dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--text-muted); flex: 0 0 auto; }
/* tag overlaid on the image corner */
.ad-thumb .ad-tag { position: absolute; top: 8px; left: 8px; }

/* Horizontal variant for the watch rail (image left, copy right) */
.ad-card.ad-horizontal { display: grid; grid-template-columns: 40% 1fr; }
.ad-card.ad-horizontal .ad-thumb { aspect-ratio: 1 / 1; }
.ad-card.ad-horizontal .ad-body { padding: 14px; }
.ad-card.ad-horizontal .ad-headline { font-size: 15px; }

/* "Partner Spotlight" band label above the home-spotlight slot */
.ad-slot-label {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.ad-sponsor-name { color: var(--text-muted); font-size: 12px; }

/* ---------- Admin: simple table for the Ad Manager ---------- */
.admin-subnav { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--border-subtle); border-radius: 12px; background: var(--bg-elevated); }
.admin-subnav a {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 600;
  color: var(--text-secondary); text-decoration: none; transition: color 0.15s ease, background 0.15s ease;
}
.admin-subnav a:hover { color: var(--text-primary); }
.admin-subnav a[aria-current="page"] { color: var(--text-primary); background: var(--bg-surface); }

.ad-table { width: 100%; border-collapse: collapse; }
.ad-table th, .ad-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border-subtle); vertical-align: middle; }
.ad-table th { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.ad-table tr:last-child td { border-bottom: 0; }
.ad-table .tabular { font-variant-numeric: tabular-nums; }
.ad-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ============================================================
   HOME REDESIGN — cinematic, editorial (art direction: Theo M.)
   ============================================================ */
:root { --ease-cine: cubic-bezier(0.16, 1, 0.3, 1); }

/* ---------- Cinematic hero band ---------- */
.hero-band { position: relative; overflow: hidden; padding-top: 52px; padding-bottom: 68px; }
.hero-aurora { position: absolute; inset: -12% -12% 0; z-index: 0; pointer-events: none; }
.hero-aurora img { width: 100%; height: 100%; object-fit: cover;
  filter: blur(64px) saturate(1.4); transform: scale(1.15); opacity: 0.5; }
.hero-aurora::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(58% 80% at 14% 8%, rgba(232,254,84,0.14), transparent 60%),
    linear-gradient(180deg, rgba(10,10,11,0.30) 0%, var(--bg-base) 90%);
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: 56px; } }
.hero-copy { display: flex; flex-direction: column; }
.hero-poster {
  position: relative; display: block; border-radius: 24px; overflow: hidden; aspect-ratio: 16/9;
  border: 1px solid var(--border-default);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(232,254,84,0.06);
}
.hero-poster img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease-cine); }
.hero-poster:hover img { transform: scale(1.05); }
.hero-play {
  position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 9999px;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.92; transform: scale(0.96); transition: opacity 0.18s ease, transform 0.18s var(--ease-cine);
  box-shadow: 0 10px 40px rgba(232,254,84,0.28);
}
.hero-poster:hover .hero-play, .hero-poster:focus-visible .hero-play { opacity: 1; transform: scale(1); }
.hero-views { color: var(--accent); font-weight: 700; }

/* ---------- Section header: eyebrow + Volt hairline rule ---------- */
.sec-eyebrow { color: var(--accent); }
.sec-rule { height: 1px; margin-top: 14px;
  background: linear-gradient(90deg, rgba(232,254,84,0.5), rgba(255,255,255,0.06) 22%, transparent 60%); }

/* ---------- Trending: oversized Volt rank numerals (inside the thumb) ---------- */
.vc-thumb .vc-rank {
  position: absolute; left: 7px; bottom: 6px; z-index: 2;
  font-family: 'Archivo', sans-serif; font-weight: 800; line-height: 0.76;
  font-size: clamp(38px, 7vw, 64px);
  color: transparent; -webkit-text-stroke: 2px var(--accent);
  text-shadow: 0 2px 16px rgba(0,0,0,0.7); pointer-events: none;
}

/* ---------- Browse by City: poster mosaic wall ---------- */
.place-wall { display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
@media (min-width: 900px) { .place-wall { grid-template-columns: repeat(6, 1fr); } }
.place-tile { position: relative; display: block; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-subtle); background: var(--bg-elevated); text-decoration: none; }
.place-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-cine); }
.place-tile:hover img { transform: scale(1.06); }
.place-tile::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(10,10,11,0.85)); }
.place-label { position: absolute; left: 12px; bottom: 12px; z-index: 1;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: var(--text-primary); }
.place-label .dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--accent); flex: 0 0 auto; }

/* ---------- Browse by Genre: typographic word cloud ---------- */
.genre-cloud { display: flex; flex-wrap: wrap; align-items: baseline; row-gap: 6px; }
.genre-word { font-family: 'Archivo', sans-serif; font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(20px, 3vw, 30px); color: var(--text-secondary); text-decoration: none; transition: color 0.2s ease; }
.genre-word:hover { color: var(--text-primary); }
.genre-sep { color: var(--accent); margin: 0 12px; font-family: 'Archivo', sans-serif; }

/* ---------- Scroll reveal (respects reduced motion) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); }
  .reveal.in-view { opacity: 1; transform: none;
    transition: opacity 0.52s var(--ease-cine), transform 0.52s var(--ease-cine); }
  .hero-aurora { opacity: 0; animation: hero-aurora-in 0.9s ease 0.1s forwards; }
}
@keyframes hero-aurora-in { to { opacity: 1; } }
@media (max-width: 560px) {
  .hero-aurora img { filter: blur(40px) saturate(1.3); opacity: 0.4; }
}

/* ---------- Suggest-your-city band ---------- */
.suggest-band {
  position: relative; overflow: hidden; border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(90% 130% at 100% -10%, rgba(232,254,84,0.16), transparent 52%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg-surface));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 40px 120px -60px rgba(0,0,0,0.9);
}
.suggest-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,254,84,0.22), transparent 70%); filter: blur(26px); pointer-events: none;
}
.suggest-inner { position: relative; z-index: 1; max-width: 720px; }
.suggest-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.suggest-title { font-family: 'Archivo', sans-serif; font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.02; color: var(--text-primary); margin: 0; }
.suggest-sub { font-size: 16px; line-height: 1.6; color: var(--text-secondary); margin: 14px 0 0; max-width: 54ch; }
.suggest-form { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.suggest-form .input { flex: 1 1 200px; min-width: 0; font-size: 15px; padding: 13px 16px; }
.suggest-form .btn { flex: 0 0 auto; }
.suggest-note { font-size: 12.5px; color: #9A9AA2; margin: 12px 0 0; }
.suggest-note a { color: inherit; }
.suggest-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 22px 0 0; }
.suggest-chips .lbl { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-right: 2px; }
.suggest-comingchip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 9999px;
  background: var(--bg-base); border: 1px solid var(--border-subtle); font-size: 13px; color: var(--text-secondary); }
.suggest-comingchip .dot { width: 5px; height: 5px; border-radius: 9999px; background: var(--accent); }
.suggest-success { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 14px; }
.suggest-success .chk { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 30px rgba(232,254,84,0.3); }

/* ---------- Wordmark star (glows + spins from time to time) ---------- */
.bs-star {
  display: inline-flex; align-items: center;
  color: var(--accent);
  transform-origin: 50% 50%;
  will-change: transform, filter;
  animation: bs-star-spin 13s ease-in-out infinite, bs-star-glow 6.5s ease-in-out infinite;
}
.bs-star svg { display: block; }
@keyframes bs-star-spin {
  0%, 66% { transform: rotate(0deg); }
  82%, 100% { transform: rotate(360deg); }
}
@keyframes bs-star-glow {
  0%, 52%, 100% { filter: drop-shadow(0 0 0 rgba(232,254,84,0)); }
  70% { filter: drop-shadow(0 0 7px rgba(232,254,84,0.95)) drop-shadow(0 0 15px rgba(232,254,84,0.5)); }
}
@media (prefers-reduced-motion: reduce) { .bs-star { animation: none; } }

/* ---------- Intro splash (first visit of the day) ---------- */
.bs-intro {
  position: fixed; inset: 0; z-index: 200;
  background: radial-gradient(circle at 50% 44%, #16180c 0%, var(--bg-base) 68%);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.55s ease; overflow: hidden;
}
.bs-intro.is-done { opacity: 0; pointer-events: none; }
.bs-intro-stage { position: relative; width: min(90vw, 720px); height: 40vh; display: flex; align-items: center; justify-content: center; }
.bs-intro.is-zoom .bs-intro-stage { animation: bs-intro-shake 0.5s ease-in-out; }

.bs-intro-zoom {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  transform: scale(1); opacity: 1;
  transition: transform 0.5s cubic-bezier(.66,0,.34,1), opacity 0.45s ease;
}
.bs-intro.is-zoom .bs-intro-zoom { transform: scale(9); opacity: 0.92; }
.bs-intro.is-reveal .bs-intro-zoom { opacity: 0; }
.bs-intro-star { color: var(--accent); display: inline-flex; animation: bs-intro-spin 2.1s linear infinite; }
.bs-intro-star svg { width: clamp(80px, 16vw, 120px); height: auto; display: block;
  filter: drop-shadow(0 0 18px rgba(232,254,84,0.6)) drop-shadow(0 0 40px rgba(232,254,84,0.3)); }
@keyframes bs-intro-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.bs-intro-logo {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: 'Archivo', system-ui, sans-serif; font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(34px, 9vw, 76px); color: var(--text-primary);
  opacity: 0; transform: scale(0.82); pointer-events: none;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.bs-intro.is-reveal .bs-intro-logo { opacity: 1; transform: scale(1); }
.bs-intro-logo .bs-star-lg { color: var(--accent); display: inline-flex; }
.bs-intro-logo .bs-star-lg svg { width: 0.9em; height: 0.9em; display: block;
  filter: drop-shadow(0 0 12px rgba(232,254,84,0.75)); animation: bs-intro-spin 3s linear infinite; }

.bs-intro-skip {
  position: absolute; bottom: 22px; right: 22px;
  background: transparent; border: 1px solid var(--border-default); color: var(--text-secondary);
  border-radius: 8px; padding: 7px 14px; font-size: 13px; font-weight: 600; cursor: pointer;
}
.bs-intro-skip:hover { color: var(--text-primary); border-color: var(--border-strong); }

@keyframes bs-intro-shake {
  0%,100% { transform: translate(0,0); }
  15% { transform: translate(-9px, 6px); }
  30% { transform: translate(10px, -8px); }
  45% { transform: translate(-11px, -5px); }
  60% { transform: translate(9px, 9px); }
  75% { transform: translate(-6px, 5px); }
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: toast-in 0.15s ease;
}
.modal-dialog {
  width: 100%; max-width: 440px;
  padding: 24px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* =====================================================================
   HERO TEMPLATES (switchable "featured spot" looks) — see js/components/heroes.js
   ===================================================================== */
:root {
  --volt-foil: linear-gradient(135deg, #F4FF9E 0%, #E8FE54 42%, #B6CC2E 100%);
  --plat: linear-gradient(135deg, #FBFCFE 0%, #C9D2E0 38%, #9AA6BC 62%, #E7ECF4 100%);
  --brass: linear-gradient(160deg, #E6D19A 0%, #BFA05E 45%, #8C6E33 100%);
  --holo: linear-gradient(115deg, #8ef 0%, #e8fe54 26%, #f0a 52%, #8ef 78%, #e8fe54 100%);
}
/* shared */
.htpl-glass { background: rgba(255,255,255,.055); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); border: 1px solid rgba(255,255,255,.12); }
.btn-volt { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-family: 'Archivo'; font-weight: 800; font-size: 16px; text-decoration: none; box-shadow: 0 14px 44px rgba(232,254,84,.32); }
.hx-btn-ghost { display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px; border-radius: 999px; color: #fff; font-family: 'Archivo'; font-weight: 700; font-size: 15px; text-decoration: none; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.hx-dot { width: 5px; height: 5px; border-radius: 999px; background: var(--accent); display: inline-block; }
.hx-dotw { width: 5px; height: 5px; border-radius: 999px; background: var(--accent); display: inline-block; }
.hx-aurora { position: absolute; inset: -14% -14% 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hx-aurora img { width: 100%; height: 100%; object-fit: cover; filter: blur(66px) saturate(1.45); transform: scale(1.18); opacity: .5; }
.hx-aurora::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 72% 30%, rgba(232,254,84,.14), transparent 62%), linear-gradient(180deg, rgba(10,10,11,.2), var(--bg-base) 92%); }

/* --- COVER --- */
.hx-cover { position: relative; overflow: hidden; padding: 20px 0 68px; }
.hx-cover-inner { position: relative; z-index: 2; }
.hx-cover-masthead { display: flex; align-items: center; gap: 20px; padding: 16px 0 30px; }
.hx-mm-mark { font-family: 'Archivo'; font-weight: 900; font-size: 15px; letter-spacing: .2em; color: var(--text-primary); white-space: nowrap; }
.hx-mm-mark i { color: var(--accent); font-style: normal; }
.hx-mm-rule { flex: 1; height: 2px; background: var(--volt-foil); opacity: .8; border-radius: 2px; }
.hx-mm-issue { font-family: 'Inter'; font-weight: 600; font-size: 12px; letter-spacing: .22em; color: var(--text-secondary); white-space: nowrap; text-transform: uppercase; }
.hx-cover-stage { position: relative; }
.hx-cover-name { font-family: 'Archivo'; font-weight: 900; text-transform: uppercase; font-size: clamp(52px, 12vw, 150px); line-height: .84; letter-spacing: -.045em; background: var(--volt-foil); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0; position: relative; z-index: 1; max-width: 12ch; filter: drop-shadow(0 8px 40px rgba(232,254,84,.14)); }
.hx-cover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: -6px; }
.hx-cover-left { position: relative; z-index: 3; padding-top: 18px; }
.hx-cover-eyebrow { font-family: 'Inter'; font-weight: 600; font-size: 13px; letter-spacing: .24em; color: var(--accent); text-transform: uppercase; margin: 0 0 16px; }
.hx-cover-song { font-family: 'Archivo'; font-weight: 700; font-size: clamp(22px, 2.6vw, 32px); color: var(--text-primary); line-height: 1.15; margin: 0; max-width: 20ch; }
.hx-cover-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: var(--text-secondary); font-size: 14px; margin: 14px 0 0; }
.hx-cover-meta img { width: 30px; height: 30px; border-radius: 999px; object-fit: cover; }
.hx-cover-meta b { color: var(--text-primary); font-weight: 600; }
.hx-cover-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding: 14px 26px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-family: 'Archivo'; font-weight: 800; font-size: 16px; text-decoration: none; box-shadow: 0 14px 44px rgba(232,254,84,.3); }
.hx-cover-right { position: relative; z-index: 2; margin-top: -70px; }
.hx-cover-foil { padding: 2px; border-radius: 22px; background: var(--volt-foil); box-shadow: 0 50px 140px -40px rgba(0,0,0,.95), 0 0 0 1px rgba(232,254,84,.15); }
.hx-cover-poster { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; position: relative; background: #111; }
.hx-cover-poster img { width: 100%; height: 100%; object-fit: cover; }
.hx-cover-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,11,.55)); }
.hx-cover-roundel { position: absolute; top: 14px; left: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: 999px; background: rgba(12,12,14,.72); backdrop-filter: blur(8px); box-shadow: 0 0 0 1px rgba(232,254,84,.4); font-family: 'Archivo'; font-weight: 800; font-size: 12px; letter-spacing: .12em; color: var(--accent); text-transform: uppercase; }
.hx-cover-play { position: absolute; z-index: 3; right: 16px; bottom: 16px; width: 64px; height: 64px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 40px rgba(232,254,84,.4); }

/* --- HEADLINER --- */
.hx-head { position: relative; overflow: hidden; min-height: 720px; display: flex; align-items: center; }
.hx-head-beam { position: absolute; z-index: 1; top: -8%; left: 50%; width: 120%; height: 118%; transform: translateX(-50%); background: linear-gradient(180deg, rgba(232,254,84,.20), rgba(232,254,84,.05) 46%, transparent 72%); clip-path: polygon(42% 0, 58% 0, 88% 100%, 12% 100%); filter: blur(34px); mix-blend-mode: screen; pointer-events: none; }
.hx-head-inner { position: relative; z-index: 3; width: 100%; text-align: center; padding: 56px 0 64px; }
.hx-head-stage { position: relative; width: min(560px, 74%); margin: 0 auto 8px; }
.hx-head-halo { position: absolute; inset: -18% -14% 6%; z-index: 0; border-radius: 50%; background: radial-gradient(50% 50% at 50% 42%, rgba(232,254,84,.26), transparent 70%); filter: blur(30px); }
.hx-head-poster { position: relative; z-index: 2; display: block; padding: 2px; border-radius: 20px; background: var(--volt-foil); box-shadow: 0 44px 120px -34px rgba(0,0,0,.92); }
.hx-pf { border-radius: 18px; overflow: hidden; aspect-ratio: 16/10; position: relative; background: #111; }
.hx-head-poster img { width: 100%; height: 100%; object-fit: cover; }
.hx-head-play { position: absolute; z-index: 3; inset: 0; margin: auto; width: 78px; height: 78px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 48px rgba(232,254,84,.42); }
.hx-head-reflect { position: relative; z-index: 1; width: min(560px, 74%); margin: 6px auto 0; aspect-ratio: 16/6; overflow: hidden; -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.4), transparent 72%); mask-image: linear-gradient(180deg, rgba(0,0,0,.4), transparent 72%); opacity: .2; }
.hx-head-reflect img { width: 100%; height: auto; object-fit: cover; transform: scaleY(-1); }
.hx-head-pool { position: relative; z-index: 0; width: 60%; height: 46px; margin: -30px auto 0; background: radial-gradient(50% 50% at 50% 50%, rgba(232,254,84,.14), transparent 72%); filter: blur(8px); }
.hx-head-eyebrow { font-family: 'Inter'; font-weight: 700; font-size: 13px; letter-spacing: .28em; color: var(--accent); text-transform: uppercase; margin: 22px 0 12px; }
.hx-head-name { font-family: 'Archivo'; font-weight: 900; text-transform: uppercase; font-size: clamp(46px, 8.4vw, 112px); line-height: .9; letter-spacing: -.035em; color: var(--text-primary); margin: 0; }
.hx-head-song { font-family: 'Archivo'; font-weight: 700; font-size: clamp(18px, 2.2vw, 26px); color: var(--text-secondary); margin: 16px 0 0; }
.hx-head-meta { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; color: var(--text-secondary); font-size: 14px; margin: 16px 0 0; }
.hx-head-meta img { width: 28px; height: 28px; border-radius: 999px; object-fit: cover; }
.hx-head-meta b { color: var(--text-primary); font-weight: 600; }
.hx-head-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; padding: 15px 30px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-family: 'Archivo'; font-weight: 800; font-size: 16px; text-decoration: none; box-shadow: 0 14px 46px rgba(232,254,84,.34); }

/* --- MARQUEE --- */
.hx-marq { position: relative; padding: 34px 0; overflow: hidden; }
.hx-marquee { position: relative; z-index: 2; border-radius: 28px; overflow: hidden; background: var(--bg-elevated); border: 1px solid rgba(255,255,255,.06); box-shadow: 0 40px 120px -50px rgba(0,0,0,.9); }
.hx-marquee-edge { height: 3px; background: var(--volt-foil); }
.hx-marquee-ticker { position: relative; display: flex; align-items: center; height: 42px; overflow: hidden; background: rgba(232,254,84,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.hx-marquee-bulbs { position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(circle, rgba(232,254,84,.5) 1.4px, transparent 1.8px); background-size: 22px 42px; background-position: 0 8px; opacity: .5; }
.hx-marquee-bulbs.bot { background-position: 0 30px; }
.hx-ticker-track { display: inline-flex; white-space: nowrap; position: relative; z-index: 1; font-family: 'Inter'; font-weight: 600; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-secondary); animation: hx-ticker 26s linear infinite; }
.hx-ticker-track span { padding: 0 18px; }
.hx-ticker-track i { color: var(--accent); font-style: normal; padding: 0 4px; }
@keyframes hx-ticker { to { transform: translateX(-33.33%); } }
.hx-marquee-body { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; padding: 40px 44px; }
.hx-marq-medal { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hx-marq-star { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(232,254,84,.08); box-shadow: 0 0 0 1px rgba(232,254,84,.4), 0 8px 30px rgba(232,254,84,.16); }
.hx-marq-star svg { width: 26px; height: 26px; fill: var(--accent); }
.hx-ml { line-height: 1.1; }
.hx-ml b { display: block; font-family: 'Archivo'; font-weight: 900; font-size: 15px; letter-spacing: .06em; color: var(--text-primary); text-transform: uppercase; }
.hx-ml span { font-family: 'Inter'; font-weight: 600; font-size: 11px; letter-spacing: .18em; color: var(--accent); text-transform: uppercase; }
.hx-marq-name { font-family: 'Archivo'; font-weight: 800; text-transform: uppercase; font-size: clamp(40px, 6.6vw, 92px); line-height: .88; letter-spacing: -.035em; color: var(--text-primary); margin: 0 0 6px; }
.hx-marq-song { font-family: 'Archivo'; font-weight: 700; font-size: clamp(17px, 1.9vw, 24px); color: var(--text-secondary); margin: 12px 0 0; }
.hx-marq-screen { position: relative; display: block; padding: 2px; border-radius: 18px; background: var(--volt-foil); box-shadow: 0 30px 90px -40px rgba(0,0,0,.9); }
.hx-sf { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; position: relative; background: #111; }
.hx-marq-screen img { width: 100%; height: 100%; object-fit: cover; }
.hx-marq-play { position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 40px rgba(232,254,84,.4); }
.hx-marquee-trophy { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.06); }
.hx-trophy-cell { padding: 20px 44px; }
.hx-trophy-cell + .hx-trophy-cell { border-left: 1px solid rgba(255,255,255,.06); }
.hx-trophy-cell b { display: block; font-family: 'Archivo'; font-weight: 800; font-size: clamp(22px, 3vw, 34px); color: var(--text-primary); }
.hx-trophy-cell span { font-family: 'Inter'; font-weight: 500; font-size: 12px; letter-spacing: .16em; color: var(--text-muted); text-transform: uppercase; }

/* --- TAKEOVER --- */
.hx-cine { position: relative; height: 760px; overflow: hidden; }
.hx-cine-bg { position: absolute; inset: 0; z-index: 0; }
.hx-cine-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hx-cine-grade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.05) 26%, rgba(10,10,11,.15) 55%, rgba(10,10,11,.72) 82%, var(--bg-base) 100%), radial-gradient(80% 60% at 50% 44%, transparent 40%, rgba(10,10,11,.5)); }
.hx-cine-top { position: absolute; z-index: 3; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 26px 40px; }
.hx-cine-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: 999px; font-family: 'Archivo'; font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.hx-cine-ic { width: 40px; height: 40px; border-radius: 999px; display: flex; align-items: center; justify-content: center; color: #fff; }
.hx-cine-center { position: absolute; z-index: 3; inset: 0; display: flex; align-items: center; justify-content: center; }
.hx-cine-playbtn { width: 96px; height: 96px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.hx-cine-low { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 0 40px 40px; }
.hx-cine-eyebrow { font-family: 'Inter'; font-weight: 700; font-size: 13px; letter-spacing: .26em; color: var(--accent); text-transform: uppercase; margin: 0 0 14px; }
.hx-cine-title { font-family: 'Archivo'; font-weight: 900; text-transform: uppercase; font-size: clamp(48px, 8vw, 104px); line-height: .88; letter-spacing: -.035em; color: #fff; margin: 0; text-shadow: 0 4px 40px rgba(0,0,0,.5); }
.hx-cine-sub { font-family: 'Archivo'; font-weight: 700; font-size: clamp(18px, 2.1vw, 26px); color: rgba(255,255,255,.82); margin: 14px 0 0; }
.hx-cine-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 18px 0 0; }
.hx-cine-buttons { display: flex; gap: 12px; margin: 24px 0 0; align-items: center; }
.hx-cine-scrub { position: absolute; z-index: 4; left: 40px; right: 40px; bottom: 20px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.2); overflow: hidden; }
.hx-cine-scrub i { display: block; height: 100%; width: 34%; background: var(--accent); border-radius: 3px; }
.hx-white-meta { color: rgba(255,255,255,.85); font-size: 14px; display: inline-flex; align-items: center; gap: 10px; }
.hx-white-meta img { width: 30px; height: 30px; border-radius: 999px; object-fit: cover; border: 1px solid rgba(255,255,255,.3); }
.hx-white-meta b { color: #fff; font-weight: 600; }

/* --- VAULT --- */
.hx-lux { position: relative; overflow: hidden; padding: 72px 0 80px; background: radial-gradient(60% 80% at 78% 20%, rgba(232,254,84,.09), transparent 55%), radial-gradient(50% 60% at 12% 90%, rgba(120,130,160,.10), transparent 60%), var(--bg-base); }
.hx-lux-vignette { position: absolute; inset: 0; z-index: 0; box-shadow: inset 0 0 240px 40px rgba(0,0,0,.6); pointer-events: none; }
.hx-lux-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hx-lux-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter'; font-weight: 600; font-size: 12px; letter-spacing: .22em; color: var(--accent); text-transform: uppercase; margin: 0 0 20px; padding: 7px 13px; border-radius: 999px; }
.hx-lux-name { font-family: 'Archivo'; font-weight: 800; font-size: clamp(46px, 6.4vw, 88px); line-height: .92; letter-spacing: -.03em; color: var(--text-primary); margin: 0; }
.hx-thin { display: block; font-weight: 600; color: var(--text-secondary); font-size: .42em; letter-spacing: .01em; margin-top: 14px; }
.hx-lux-stats { display: flex; gap: 30px; margin: 30px 0 0; }
.hx-s b { display: block; font-family: 'Archivo'; font-weight: 800; font-size: 30px; color: var(--text-primary); }
.hx-s span { font-family: 'Inter'; font-weight: 500; font-size: 12px; letter-spacing: .14em; color: var(--text-muted); text-transform: uppercase; }
.hx-lux-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 34px; padding: 15px 30px; border-radius: 14px; background: var(--accent); color: var(--accent-ink); font-family: 'Archivo'; font-weight: 800; font-size: 16px; text-decoration: none; box-shadow: 0 18px 50px rgba(232,254,84,.28); }
.hx-lux-stage { position: relative; perspective: 1500px; }
.hx-lux-card { position: relative; display: block; padding: 18px; border-radius: 26px; transform: rotateY(-14deg) rotateX(4deg); transform-style: preserve-3d; box-shadow: -50px 60px 120px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.06); }
.hx-lux-poster { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.hx-lux-poster img { width: 100%; height: 100%; object-fit: cover; }
.hx-lux-sheen { position: absolute; inset: 0; z-index: 2; border-radius: 16px; background: linear-gradient(115deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,.04) 22%, transparent 42%); mix-blend-mode: screen; pointer-events: none; }
.hx-lux-foiledge { position: absolute; inset: 0; border-radius: 26px; padding: 1px; background: linear-gradient(150deg, rgba(232,254,84,.7), rgba(255,255,255,.08) 40%, transparent 70%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.hx-lux-play { position: absolute; z-index: 3; right: 20px; bottom: 20px; width: 66px; height: 66px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 40px rgba(232,254,84,.45); transform: translateZ(40px); }
.hx-lux-chip { position: absolute; z-index: 3; top: 18px; left: 18px; transform: translateZ(50px); padding: 8px 14px; border-radius: 999px; font-family: 'Archivo'; font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-primary); display: inline-flex; align-items: center; gap: 8px; }
.hx-lux-reflect { position: absolute; left: 10%; right: 6%; top: 100%; height: 120px; transform: rotateY(-14deg) scaleY(-1); border-radius: 16px; overflow: hidden; -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 70%); mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 70%); opacity: .25; }
.hx-lux-reflect img { width: 100%; height: 260px; object-fit: cover; object-position: bottom; }

/* --- DROP --- */
.hx-drop { position: relative; overflow: hidden; padding: 30px 0 56px; background: conic-gradient(from 220deg at 68% 30%, rgba(232,254,84,.14), transparent 30% 70%, rgba(232,254,84,.08)), var(--bg-base); }
.hx-drop-rays { position: absolute; z-index: 0; top: -30%; right: -6%; width: 780px; height: 780px; border-radius: 50%; background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(232,254,84,.10) 0deg 6deg, transparent 6deg 16deg); -webkit-mask: radial-gradient(circle, #000 0 34%, transparent 62%); mask: radial-gradient(circle, #000 0 34%, transparent 62%); filter: blur(1px); opacity: .55; }
.hx-drop-inner { position: relative; z-index: 2; }
.hx-drop-ticker { display: flex; align-items: center; height: 40px; overflow: hidden; border-top: 1px solid rgba(232,254,84,.25); border-bottom: 1px solid rgba(232,254,84,.25); background: rgba(232,254,84,.05); margin-bottom: 34px; }
.hx-tt { white-space: nowrap; font-family: 'Archivo'; font-weight: 800; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); animation: hx-ticker 22s linear infinite; }
.hx-tt span { padding: 0 20px; }
.hx-drop-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
.hx-drop-kicker { display: inline-flex; align-items: center; gap: 10px; font-family: 'Archivo'; font-weight: 800; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 8px 16px; border-radius: 8px; margin: 0 0 18px; }
.hx-drop-name { font-family: 'Archivo'; font-weight: 900; text-transform: uppercase; font-size: clamp(52px, 9vw, 128px); line-height: .82; letter-spacing: -.04em; margin: 0; color: var(--text-primary); }
.hx-out { color: transparent; -webkit-text-stroke: 2px var(--accent); }
.hx-drop-song { font-family: 'Archivo'; font-weight: 700; font-size: clamp(18px, 2.2vw, 28px); color: var(--text-secondary); margin: 16px 0 0; }
.hx-drop-statrow { display: flex; gap: 14px; margin: 26px 0 0; flex-wrap: wrap; }
.hx-drop-stat { border-radius: 14px; padding: 16px 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.hx-drop-stat b { display: block; font-family: 'Archivo'; font-weight: 900; font-size: 30px; color: var(--accent); line-height: 1; }
.hx-drop-stat span { font-family: 'Inter'; font-weight: 500; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.hx-drop-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; padding: 15px 30px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-family: 'Archivo'; font-weight: 800; font-size: 16px; text-decoration: none; box-shadow: 0 14px 46px rgba(232,254,84,.36); }
.hx-drop-poster { position: relative; display: block; border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 40px 110px -34px rgba(0,0,0,.9), 0 0 0 3px rgba(232,254,84,.9); transform: rotate(3deg); }
.hx-drop-poster img { width: 100%; height: 100%; object-fit: cover; }
.hx-drop-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,11,.6)); }
.hx-badge { position: absolute; z-index: 2; top: 16px; left: 16px; transform: rotate(-3deg); background: var(--accent); color: var(--accent-ink); font-family: 'Archivo'; font-weight: 900; font-size: 12px; letter-spacing: .1em; padding: 7px 12px; border-radius: 8px; text-transform: uppercase; }
.hx-pl { position: absolute; z-index: 2; inset: 0; margin: auto; width: 74px; height: 74px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 44px rgba(232,254,84,.5); }

/* --- NOW PLAYING --- */
.hx-np { position: relative; overflow: hidden; height: 720px; }
.hx-np-bg { position: absolute; inset: 0; z-index: 0; }
.hx-np-bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(60px) saturate(1.8); transform: scale(1.3); opacity: .7; }
.hx-np-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,.4), rgba(10,10,11,.2) 40%, rgba(10,10,11,.86)); }
.hx-np-inner { position: relative; z-index: 2; height: 100%; display: grid; grid-template-columns: auto 1fr; gap: 44px; align-items: center; padding: 0 56px 96px; }
.hx-np-art { width: 340px; height: 340px; border-radius: 22px; overflow: hidden; box-shadow: 0 40px 120px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.1); flex: 0 0 auto; display: block; }
.hx-np-art img { width: 100%; height: 100%; object-fit: cover; }
.hx-np-eyebrow { font-family: 'Inter'; font-weight: 600; font-size: 12px; letter-spacing: .24em; color: var(--accent); text-transform: uppercase; margin: 0 0 16px; }
.hx-np-name { font-family: 'Archivo'; font-weight: 800; font-size: clamp(44px, 6vw, 82px); line-height: .94; letter-spacing: -.03em; color: #fff; margin: 0; }
.hx-np-song { font-family: 'Inter'; font-weight: 500; font-size: 20px; color: rgba(255,255,255,.72); margin: 12px 0 0; }
.hx-np-tags { display: flex; gap: 10px; margin: 20px 0 0; flex-wrap: wrap; }
.hx-np-tags span { font-family: 'Inter'; font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.9); padding: 7px 14px; border-radius: 999px; }
.hx-np-bar { position: absolute; z-index: 4; left: 56px; right: 56px; bottom: 26px; border-radius: 20px; padding: 16px 22px; display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; text-decoration: none; }
.hx-npb-l { display: flex; align-items: center; gap: 14px; }
.hx-npb-l img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; }
.hx-npb-l b { display: block; color: #fff; font-family: 'Inter'; font-weight: 600; font-size: 15px; }
.hx-npb-l span { color: rgba(255,255,255,.6); font-family: 'Inter'; font-size: 13px; }
.hx-npb-mid { display: flex; flex-direction: column; gap: 8px; }
.hx-np-controls { display: flex; align-items: center; justify-content: center; gap: 22px; color: #fff; }
.hx-pp { width: 46px; height: 46px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; }
.hx-np-prog { display: flex; align-items: center; gap: 10px; }
.hx-bar { flex: 1; height: 4px; border-radius: 4px; background: rgba(255,255,255,.25); overflow: hidden; display: block; }
.hx-bar i { display: block; height: 100%; width: 38%; background: #fff; border-radius: 4px; }
.hx-t { color: rgba(255,255,255,.7); font-size: 12px; }
.hx-npb-r { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.85); }

/* --- MAIN EVENT --- */
.hx-evt { position: relative; padding: 26px 0 44px; }
.hx-evt-poster { position: relative; border-radius: 10px; overflow: hidden; border: 2px solid rgba(232,254,84,.65); box-shadow: 0 40px 130px -44px #000, inset 0 0 0 6px rgba(10,10,11,.9), inset 0 0 0 7px rgba(232,254,84,.28); background: #0b0b0c; }
.hx-evt-band { text-align: center; padding: 13px; font-family: 'Archivo'; font-weight: 900; font-size: 13px; letter-spacing: .42em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid rgba(232,254,84,.28); }
.hx-evt-stage { position: relative; display: block; height: 486px; overflow: hidden; }
.hx-evt-stage img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: contrast(1.05) saturate(1.05); }
.hx-evt-stage::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 90% at 50% 12%, transparent 40%, rgba(10,10,11,.55)), linear-gradient(180deg, rgba(10,10,11,.35) 0%, transparent 24%, transparent 40%, rgba(10,10,11,.9) 92%); }
.hx-evt-tagtop { position: absolute; z-index: 2; top: 22px; left: 0; right: 0; text-align: center; font-family: 'Inter'; font-weight: 700; font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.9); }
.hx-evt-namewrap { position: absolute; z-index: 2; left: 0; right: 0; bottom: 96px; text-align: center; }
.hx-evt-name { font-family: 'Archivo'; font-weight: 900; text-transform: uppercase; font-size: clamp(56px, 11vw, 140px); line-height: .8; letter-spacing: -.05em; color: #fff; margin: 0; text-shadow: 0 6px 40px rgba(0,0,0,.6); }
.hx-evt-foot { position: absolute; z-index: 2; left: 0; right: 0; bottom: 26px; text-align: center; }
.hx-evt-under { font-family: 'Inter'; font-weight: 600; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.hx-evt-under i { color: var(--accent); font-style: normal; padding: 0 8px; }
.hx-evt-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding: 13px 30px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-family: 'Archivo'; font-weight: 800; font-size: 15px; box-shadow: 0 12px 40px rgba(232,254,84,.34); }

/* --- EXHIBIT --- */
.hx-exh { position: relative; overflow: hidden; padding: 64px 0 76px; background: radial-gradient(120% 80% at 50% -10%, rgba(255,255,255,.05), transparent 46%), var(--bg-base); }
.hx-exh-light { position: absolute; z-index: 0; top: -10%; left: 50%; transform: translateX(-50%); width: 60%; height: 70%; background: linear-gradient(180deg, rgba(255,255,255,.10), transparent 70%); clip-path: polygon(38% 0, 62% 0, 82% 100%, 18% 100%); filter: blur(26px); }
.hx-exh-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 54px; align-items: center; }
.hx-exh-eyebrow { font-family: 'Inter'; font-weight: 600; font-size: 12px; letter-spacing: .3em; color: var(--accent); text-transform: uppercase; margin: 0 0 18px; }
.hx-exh-title { font-family: 'Archivo'; font-weight: 800; font-size: clamp(40px, 5.4vw, 76px); line-height: .96; letter-spacing: -.03em; color: var(--text-primary); margin: 0; }
.hx-exh-desc { font-family: 'Inter'; font-weight: 400; font-size: 16px; line-height: 1.6; color: var(--text-secondary); max-width: 40ch; margin: 20px 0 0; }
.hx-exh-plate { margin: 28px 0 0; display: inline-block; padding: 16px 22px; border-radius: 6px; background: var(--brass); box-shadow: 0 10px 30px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -2px 4px rgba(0,0,0,.25); }
.hx-exh-plate b { display: block; font-family: 'Archivo'; font-weight: 800; font-size: 15px; letter-spacing: .04em; color: #2a2110; text-transform: uppercase; }
.hx-exh-plate span { display: block; font-family: 'Inter'; font-weight: 600; font-size: 12px; letter-spacing: .1em; color: #4a3c1c; margin-top: 4px; }
.hx-exh-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding: 14px 28px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-family: 'Archivo'; font-weight: 800; font-size: 16px; text-decoration: none; box-shadow: 0 14px 44px rgba(232,254,84,.28); }
.hx-exh-frame { position: relative; display: block; padding: 14px; border-radius: 4px; background: var(--brass); box-shadow: 0 50px 120px -40px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,255,255,.4); }
.hx-exh-mat { padding: 30px; background: #ECE7DB; border-radius: 2px; box-shadow: inset 0 2px 8px rgba(0,0,0,.25); }
.hx-exh-art { position: relative; width: 360px; aspect-ratio: 4/5; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.4); }
.hx-exh-art img { width: 100%; height: 100%; object-fit: cover; }
.hx-exh-play { position: absolute; inset: 0; margin: auto; width: 66px; height: 66px; border-radius: 999px; background: rgba(12,12,14,.6); backdrop-filter: blur(6px); border: 1.5px solid rgba(255,255,255,.6); color: #fff; display: flex; align-items: center; justify-content: center; }

/* --- PLATINUM --- */
.hx-plat { position: relative; overflow: hidden; padding: 56px 0 68px; background: radial-gradient(80% 70% at 30% 20%, rgba(232,254,84,.07), transparent 55%), var(--bg-base); }
.hx-plat-frame { position: relative; z-index: 2; border-radius: 16px; padding: 34px; display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; background: linear-gradient(160deg, #16181d, #0d0e11); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 50px 130px -50px #000, inset 0 1px 0 rgba(255,255,255,.05); }
.hx-plat-disc { position: relative; width: 300px; height: 300px; border-radius: 50%; background: repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.08) 0 1px, transparent 1px 3px), var(--plat); box-shadow: 0 24px 60px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; }
.hx-plat-disc::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(255,255,255,.5), transparent 20%, rgba(255,255,255,.25) 42%, transparent 60%, rgba(255,255,255,.4) 80%, transparent); mix-blend-mode: screen; opacity: .55; }
.hx-plat-label { position: relative; z-index: 2; width: 120px; height: 120px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 6px rgba(13,14,17,.9), 0 8px 20px rgba(0,0,0,.5); display: block; }
.hx-plat-label img { width: 100%; height: 100%; object-fit: cover; }
.hx-plat-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter'; font-weight: 700; font-size: 12px; letter-spacing: .24em; color: var(--accent); text-transform: uppercase; margin: 0 0 14px; }
.hx-plat-name { font-family: 'Archivo'; font-weight: 900; text-transform: uppercase; font-size: clamp(40px, 6vw, 82px); line-height: .9; letter-spacing: -.03em; color: var(--text-primary); margin: 0; }
.hx-plat-song { font-family: 'Archivo'; font-weight: 700; font-size: clamp(17px, 2vw, 24px); color: var(--text-secondary); margin: 12px 0 0; }
.hx-plat-plate { margin: 22px 0 0; display: inline-block; padding: 12px 20px; border-radius: 5px; background: var(--plat); box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 6px 18px rgba(0,0,0,.4); }
.hx-plat-plate b { font-family: 'Archivo'; font-weight: 800; font-size: 13px; letter-spacing: .1em; color: #1b2028; text-transform: uppercase; }
.hx-plat-cta { display: inline-flex; align-items: center; gap: 10px; margin: 26px 0 0; padding: 14px 28px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-family: 'Archivo'; font-weight: 800; font-size: 16px; text-decoration: none; box-shadow: 0 14px 44px rgba(232,254,84,.3); }

/* --- PASS --- */
.hx-pass { position: relative; overflow: hidden; padding: 60px 0 72px; }
.hx-pass-bg { position: absolute; inset: 0; z-index: 0; }
.hx-pass-bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(70px) saturate(1.5); transform: scale(1.3); opacity: .4; }
.hx-pass-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,.6), var(--bg-base)); }
.hx-pass-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; }
.hx-pass-eyebrow { font-family: 'Inter'; font-weight: 700; font-size: 12px; letter-spacing: .28em; color: var(--accent); text-transform: uppercase; margin: 0 0 16px; }
.hx-pass-name { font-family: 'Archivo'; font-weight: 900; text-transform: uppercase; font-size: clamp(42px, 6.2vw, 88px); line-height: .88; letter-spacing: -.035em; color: var(--text-primary); margin: 0; }
.hx-pass-song { font-family: 'Archivo'; font-weight: 700; font-size: clamp(17px, 2vw, 24px); color: var(--text-secondary); margin: 14px 0 0; }
.hx-pass-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; padding: 15px 30px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-family: 'Archivo'; font-weight: 800; font-size: 16px; text-decoration: none; box-shadow: 0 14px 44px rgba(232,254,84,.3); }
.hx-laminate { position: relative; display: block; width: 360px; border-radius: 18px; overflow: hidden; transform: rotate(3deg); background: linear-gradient(165deg, #17181c, #0c0d10); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 50px 120px -40px #000, inset 0 1px 0 rgba(255,255,255,.08); }
.hx-laminate::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 54px; height: 12px; border-radius: 999px; background: #05060a; box-shadow: inset 0 0 0 2px rgba(255,255,255,.14); z-index: 3; }
.hx-lam-holo { height: 40px; margin-top: 38px; background: var(--holo); background-size: 220% 100%; opacity: .85; filter: saturate(1.1); }
.hx-lam-vip { position: absolute; top: 44px; left: 0; right: 0; text-align: center; z-index: 4; font-family: 'Archivo'; font-weight: 900; font-size: 22px; letter-spacing: .3em; color: #0b0b0c; }
.hx-lam-photo { height: 300px; position: relative; }
.hx-lam-photo img { width: 100%; height: 100%; object-fit: cover; }
.hx-lam-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12,13,16,.85)); }
.hx-lp-tag { position: absolute; bottom: 14px; left: 18px; z-index: 2; }
.hx-lp-tag b { display: block; font-family: 'Archivo'; font-weight: 800; font-size: 22px; color: #fff; text-transform: uppercase; letter-spacing: -.01em; }
.hx-lp-tag span { font-family: 'Inter'; font-weight: 600; font-size: 12px; letter-spacing: .14em; color: var(--accent); text-transform: uppercase; }
.hx-lam-foot { padding: 16px 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hx-lf-l b { display: block; font-family: 'Archivo'; font-weight: 800; font-size: 13px; letter-spacing: .16em; color: var(--accent); text-transform: uppercase; }
.hx-lf-l span { font-family: 'Inter'; font-weight: 500; font-size: 11px; letter-spacing: .1em; color: var(--text-muted); text-transform: uppercase; }
.hx-lam-barcode { font-family: 'Libre Barcode 39', monospace; font-size: 46px; line-height: .7; color: var(--text-primary); }

@media (max-width: 900px) {
  .hx-cover-grid, .hx-lux-grid, .hx-drop-grid, .hx-np-inner, .hx-exh-grid, .hx-plat-frame, .hx-pass-grid, .hx-marquee-body { grid-template-columns: 1fr; }
  .hx-cover-name { font-size: clamp(46px, 16vw, 92px); }
  .hx-cover-right { margin-top: 18px; }
  .hx-np { height: auto; } .hx-np-inner { padding: 40px 24px 120px; }
  .hx-np-art { width: 220px; height: 220px; }
  .hx-cine { height: 620px; }
  .hx-marquee-trophy { grid-template-columns: 1fr; }
  .hx-trophy-cell + .hx-trophy-cell { border-left: 0; border-top: 1px solid rgba(255,255,255,.06); }
  .hx-lam-holo, .hx-laminate { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hx-ticker-track, .hx-tt { animation: none; }
}

/* --- Watch page: stage aurora (the video's own colors glow behind the player) --- */
.watch-stage { position: relative; }
.watch-stage .stage-aurora { position: absolute; inset: -8% -8% 20%; z-index: 0; pointer-events: none; overflow: hidden; }
.watch-stage .stage-aurora img { width: 100%; height: 100%; object-fit: cover;
  filter: blur(72px) saturate(1.4); transform: scale(1.1); opacity: 0.40; }
.watch-stage .stage-aurora::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 50% 0%, rgba(232,254,84,0.10), transparent 60%),
              linear-gradient(180deg, rgba(10,10,11,0.25), var(--bg-base) 88%); }
.watch-stage > *:not(.stage-aurora) { position: relative; z-index: 1; }

/* --- Static trust pages (about/faq/terms/privacy/guidelines) --- */
.prose { max-width: 680px; display: flex; flex-direction: column; gap: 14px; padding-bottom: 24px; }
.prose h2 { margin-top: 22px; }
.prose ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { position: relative; padding-left: 20px; color: var(--text-secondary); }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: 0.55em; width: 6px; height: 6px; border-radius: 9999px; background: var(--accent); }
.prose p { color: var(--text-secondary); line-height: 1.65; }
.prose a { color: var(--text-primary); }

/* Footer: 4 link columns on wide screens */
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.2fr repeat(4, 1fr) !important; }
  .footer-grid .footer-brand { grid-column: span 1 / span 1 !important; }
}

/* --- Admin → Appearance (hero template picker) --- */
.appr-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .appr-grid { grid-template-columns: 1fr 1fr; } }
.appr-card { display: flex; flex-direction: column; border: 1px solid var(--border-subtle); border-radius: 16px; overflow: hidden; background: var(--bg-elevated); transition: border-color .2s ease, box-shadow .2s ease; }
.appr-card.is-active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 18px 50px -30px rgba(232,254,84,.4); }
.appr-frame { position: relative; height: 240px; overflow: hidden; background: var(--bg-base); border-bottom: 1px solid var(--border-subtle); flex: 0 0 auto; }
.appr-stage { position: absolute; top: 0; left: 0; transform-origin: top left; pointer-events: none; }
.appr-body { padding: 16px 18px 18px; flex: 1 1 auto; display: flex; flex-direction: column; }
.appr-active-badge { display: inline-flex; align-items: center; font-family: 'Inter'; font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 3px 9px; border-radius: 999px; }
.appr-current-btn { background: transparent; border: 1px solid var(--accent); color: var(--accent); cursor: default; opacity: .9; }
