/* ============================================================================
 * static/css/vidi/headline.css
 *
 * Headline-event animation overlays.
 *
 * Each style family has its own .vh-style-{family} block. Phase 1 ships
 * `cinematic` as the production default; remaining 5 are added in Phase 2.
 *
 * Architecture:
 *   .vh-overlay              — full-viewport overlay container, fixed-positioned
 *   .vh-style-{family}       — per-style aesthetic class
 *   .vh-stack                — content stack (semantic slot for templates)
 *   .vh-hairline / vh-eyebrow / vh-headline / vh-player / vh-stats
 *                              — semantic content slots used by templates
 *   data-tone="solemn"       — disables celebratory motion (red cards, fouls)
 *
 * The engine sets --vh-accent on the overlay for per-event accent colour.
 * ========================================================================== */


/* ── Base overlay ────────────────────────────────────────────────────────── */
.vh-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  pointer-events: none;
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Each style family overrides background/animation below */
}

/* ── Inline mode (rendered inside a scoreboard card) ─────────────────────────
   Fullscreen mode is retired — too invasive for an always-on dashboard.
   Live events render INSIDE the relevant game card so the surrounding
   scores stay visible.

   The theme-family CSS below was designed for full viewport — huge
   typography (clamp(56px,…)), viewport-baked transforms, complex multi-
   stage opacity animations that only resolve at large sizes. Inside a
   ~280×150px card most of that doesn't fit or stays invisible.

   This block overrides those defaults so any theme renders correctly at
   card size. Each theme still contributes its `--vh-accent` colour and
   overall vibe (via background gradient/border), but the heavy fullscreen
   choreography is neutralised. Overrides win by SPECIFICITY, not !important:
   these inline selectors carry .vh-overlay.vh-inline (and per-theme rules add
   .vh-style-X) so they always out-rank the bare .vh-style-X fullscreen rules.
   (Previously every override here used !important — an arms race that made
   themes un-tweakable; removed in favour of the specificity tiers.) */
.vh-overlay.vh-inline {
  z-index: 50;
  border-radius: inherit;
  overflow: hidden;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  animation: vh-inline-fade-in 0.25s ease-out forwards;
}
/* Reset all inner stack containers — they used max-width: 920px and
   absolute positioning for centering at fullscreen. Minimalist's
   .vh-pill is intentionally horizontal (icon + text-stack), so it
   gets a dedicated override block further down. */
.vh-overlay.vh-inline .vh-stack,
.vh-overlay.vh-inline .vh-banner,
.vh-overlay.vh-inline .vh-card {
  position: static;
  padding: 0;
  margin: 0;
  max-width: none;
  width: 100%;
  transform: none;
  opacity: 1;
  animation: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* ── Editorial (inline) — magazine layout at card size.
   Fullscreen used a CSS Grid (width: min(960px, 92vw), aspect 16:9,
   padding 48/64/48/96) with .vh-head, .vh-number-block, .vh-footer
   positioned by grid-area. Most elements started at opacity:0 with
   fade-up animations that depended on absolute viewport size — at
   card size the animations never resolved to visible, so only the
   red vertical rule + LIVE badge + ticker were rendering.

   Inline replaces the grid with a flex column, forces visibility,
   re-anchors the red rule to the left edge of the card, and scales
   Georgia-serif typography down. Magazine vibe preserved via the
   cream paper colour + red accent + italic kicker. */
.vh-overlay.vh-style-editorial.vh-inline .vh-paper {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 10px 8px 18px;     /* extra left padding for the red rule */
  gap: 4px;
  background: #f5f1e8;
  box-shadow: none;
  font-family: 'Instrument Serif', 'Georgia', 'Times New Roman', serif;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-paper::before {
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 2px;
  transform: scaleY(1);
  animation: none;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-meta {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 8px;
  letter-spacing: 0.12em;
  opacity: 1;
  animation: none;
  margin: 0;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-badge {
  padding: 1px 5px;
  letter-spacing: 0.14em;
  font-size: 8px;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-ticker {
  font-size: 8px;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-head {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  opacity: 1;
  animation: none;
  margin: 0;
  flex: 1;
  justify-content: center;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-kicker {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-style: italic;
  font-size: 10px;
  color: #6b5a3e;
  margin: 0 0 1px 0;
  line-height: 1;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-headline {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #18120c;
  background: none;
  -webkit-text-fill-color: #18120c;
  text-shadow: none;
  text-align: left;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-headline em {
  color: var(--vh-accent, #c4271a);
  font-style: italic;
  font-weight: 400;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-number-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  border-top: 1px solid rgba(24, 18, 12, 0.2);
  padding-top: 4px;
  margin: 0;
  text-align: right;
  opacity: 1;
  animation: none;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-attribution {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-style: italic;
  font-size: 10px;
  color: #6b5a3e;
  line-height: 1;
  margin-bottom: 1px;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-number-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-v {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--vh-accent, #c4271a);
}
.vh-overlay.vh-style-editorial.vh-inline .vh-k {
  margin: 0;
  font-size: 8px;
  letter-spacing: 0.18em;
  font-family: 'Instrument Sans', sans-serif;
}
.vh-overlay.vh-style-editorial.vh-inline .vh-footer {
  /* The byline footer is essentially redundant at card size — the
     player name is already in the headline. Hide it. */
  display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ADDITIONAL THEMES (card-size first — these were designed with the
   in-card constraint in mind from day one, unlike the original 6 that
   needed retrofitting via inline overrides).
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── JUMBOTRON ── Stadium LED dot-matrix board. Dark substrate with a
   visible dot grid; chunky pixel-style headline in saturated LED red. */
.vh-style-jumbotron {
  background: #0a0a0a;
}
.vh-overlay.vh-style-jumbotron.vh-inline .vh-board {
  position: absolute;
  inset: 0;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  background-size: 4px 4px, 100% 100%;
  font-family: 'JetBrains Mono', 'Courier New', 'Consolas', monospace;
  text-align: center;
  overflow: hidden;
}
.vh-overlay.vh-style-jumbotron.vh-inline .vh-eyebrow {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: #fbbf24;
  text-shadow: 0 0 6px rgba(251, 191, 36, 0.7);
  margin: 0 0 2px 0;
  background: none;
  -webkit-text-fill-color: #fbbf24;
}
.vh-overlay.vh-style-jumbotron.vh-inline .vh-headline {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #ff3d3d;
  text-shadow:
    0 0 6px rgba(255, 61, 61, 0.85),
    0 0 14px rgba(255, 61, 61, 0.5);
  background: none;
  -webkit-text-fill-color: #ff3d3d;
}
.vh-overlay.vh-style-jumbotron.vh-inline .vh-player {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}
.vh-overlay.vh-style-jumbotron.vh-inline .vh-stats {
  margin-top: 4px;
}
.vh-overlay.vh-style-jumbotron.vh-inline .vh-stat-v {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 16px;
  font-weight: 900;
  color: #4ade80;
  text-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
  letter-spacing: 0.02em;
}
.vh-overlay.vh-style-jumbotron.vh-inline .vh-stat-k {
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.2em;
}

/* ── POLAROID ── Instant photo with handwritten caption. */
.vh-style-polaroid {
  background: rgba(0, 0, 0, 0.4);
}
.vh-overlay.vh-style-polaroid.vh-inline .vh-snap {
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  background: #fafaf5;
  padding: 4px 4px 8px 4px;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
  align-items: center;
  transform: rotate(-2.5deg);
  animation: vh-inline-fade-in 0.3s ease-out forwards;
}
.vh-overlay.vh-style-polaroid.vh-inline .vh-photo {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #facc15 0%, #f97316 70%, #dc2626 100%);
  display: grid;
  place-items: center;
  border-radius: 1px;
}
.vh-overlay.vh-style-polaroid.vh-inline .vh-initials {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.vh-overlay.vh-style-polaroid.vh-inline .vh-pin {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #18181b;
  color: #fafaf5;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1px 5px;
  border-radius: 2px;
  transform: rotate(8deg);
}
.vh-overlay.vh-style-polaroid.vh-inline .vh-caption {
  font-family: 'Kalam', 'Caveat', 'Comic Sans MS', cursive;
  color: #18181b;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.vh-overlay.vh-style-polaroid.vh-inline .vh-caption-event {
  font-size: 22px;
  font-weight: 700;
  color: var(--vh-accent, #f97316);
  line-height: 1;
  letter-spacing: -0.01em;
}
.vh-overlay.vh-style-polaroid.vh-inline .vh-caption-line {
  font-size: 14px;
  line-height: 1.05;
}
.vh-overlay.vh-style-polaroid.vh-inline .vh-caption-fpts {
  color: var(--vh-accent, #f97316);
  font-weight: 700;
}

/* ── COMIC ── Classic KAPOW! pop-art starburst. Two layered jagged
   bursts (blue outer, yellow inner) with a red ink-stroked headline
   on top, matching the reference. White background to make the
   bursts pop. */
.vh-style-comic {
  background: rgba(255, 255, 255, 0.95);
}
.vh-overlay.vh-style-comic.vh-inline .vh-comic {
  position: absolute;
  inset: 0;
  background: #ffffff;
  overflow: hidden;
  display: grid;
  place-items: center;
}
/* Outer blue jagged starburst — covers most of the card with spiky
   irregular points (asymmetric polygon, looks hand-inked). */
.vh-overlay.vh-style-comic.vh-inline .vh-burst-blue {
  position: absolute;
  top: 4%; left: 2%;
  width: 96%; height: 92%;
  background: #2563eb;
  clip-path: polygon(
    50% 0%, 60% 14%, 76% 4%, 70% 22%,
    92% 10%, 82% 30%, 100% 32%, 84% 46%,
    100% 58%, 82% 60%, 92% 76%, 70% 70%,
    78% 92%, 56% 78%, 50% 100%, 42% 78%,
    22% 96%, 30% 72%, 8% 82%, 18% 60%,
    0% 56%, 18% 46%, 0% 30%, 22% 30%,
    8% 14%, 30% 22%, 24% 4%, 40% 14%
  );
  filter: drop-shadow(3px 3px 0 #18181b);
}
/* Inner yellow burst — sits inside the blue, rotated for that "two
   layers of explosion" feel from real comic panels. */
.vh-overlay.vh-style-comic.vh-inline .vh-burst-yellow {
  position: absolute;
  top: 14%; left: 12%;
  width: 76%; height: 72%;
  background: #fde047;
  clip-path: polygon(
    50% 0%, 62% 12%, 80% 5%, 74% 22%,
    96% 14%, 84% 32%, 100% 38%, 84% 50%,
    100% 62%, 82% 64%, 90% 80%, 68% 74%,
    74% 95%, 56% 78%, 50% 100%, 42% 78%,
    24% 95%, 32% 74%, 10% 80%, 18% 64%,
    0% 62%, 16% 50%, 0% 38%, 16% 32%,
    4% 14%, 26% 22%, 20% 5%, 38% 12%
  );
  transform: rotate(18deg);
}
.vh-overlay.vh-style-comic.vh-inline .vh-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 4px 8px;
}
.vh-overlay.vh-style-comic.vh-inline .vh-pow {
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #dc2626;
  -webkit-text-stroke: 2px #18181b;
  text-shadow:
    3px 3px 0 #18181b;
  transform: rotate(-4deg);
  background: none;
  -webkit-text-fill-color: #dc2626;
}
.vh-overlay.vh-style-comic.vh-inline .vh-player {
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #18181b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #fff;
  padding: 1px 6px;
  border: 1.5px solid #18181b;
  margin-top: 3px;
  transform: rotate(2deg);
}
.vh-overlay.vh-style-comic.vh-inline .vh-stats {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: #18181b;
  color: #fde047;
  padding: 2px 8px;
  margin-top: 2px;
  border-radius: 0;
  transform: rotate(-2deg);
}
.vh-overlay.vh-style-comic.vh-inline .vh-stat-v {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #fde047;
}
.vh-overlay.vh-style-comic.vh-inline .vh-stat-k {
  font-size: 9px;
  font-weight: 700;
  color: #fde047;
  letter-spacing: 0.16em;
  opacity: 0.85;
}

/* ── DraftKings / Marquee (inline) — glossy panel at card size.
   Fullscreen sprayed 36-particle confetti 200-350px outward, used
   padding 44/64, 64px icon, 48-76px headline. Card size: 280×150 —
   none of that fits. Tighten everything, kill the confetti entirely
   (the metaphor doesn't survive at this scale; the gold gradient +
   border + headline still read as DK Marquee). */
.vh-overlay.vh-style-draftkings.vh-inline .vh-confetti {
  display: none;
}
.vh-overlay.vh-style-draftkings.vh-inline .vh-panel {
  padding: 8px 12px;
  border-radius: 10px;
  max-width: calc(100% - 12px);
  margin: 0 auto;
  transform: scale(1);
  opacity: 1;
  animation: vh-inline-fade-in 0.3s ease-out forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.vh-overlay.vh-style-draftkings.vh-inline .vh-eyebrow {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vh-accent, #ffc14d);
  background: none;
  -webkit-text-fill-color: var(--vh-accent, #ffc14d);
  margin: 0;
}
.vh-overlay.vh-style-draftkings.vh-inline .vh-icon {
  font-size: 20px;
  margin: 0;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--vh-accent, #ffc14d) 60%, transparent));
  line-height: 1;
}
.vh-overlay.vh-style-draftkings.vh-inline .vh-headline {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 14px color-mix(in srgb, var(--vh-accent, #ffc14d) 25%, transparent);
}
.vh-overlay.vh-style-draftkings.vh-inline .vh-player {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.vh-overlay.vh-style-draftkings.vh-inline .vh-meter {
  margin-top: 4px;
  padding: 2px 8px;
  gap: 5px;
  border-radius: 999px;
}
.vh-overlay.vh-style-draftkings.vh-inline .vh-meter-v {
  font-size: 13px;
  font-weight: 800;
}
.vh-overlay.vh-style-draftkings.vh-inline .vh-meter-k {
  font-size: 8px;
  letter-spacing: 0.1em;
}

/* ── Holographic (inline) — Vision Pro glass at card size.
   Fullscreen had .vh-glass with padding 40/64px and a big +10.0
   FANTASY POINTS meter pill that took ~40% of card height; player
   line had a team pill that duplicated the eyebrow team. Tighten
   everything, drop the meter to inline text, drop the team pill (it
   was already dropped from the template). Keep the conic-gradient
   halo + glass-sweep — that's what makes the theme holographic. */
.vh-overlay.vh-style-holographic.vh-inline {
  padding: 0;        /* glass already has its own */
}
.vh-overlay.vh-style-holographic.vh-inline .vh-glass {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: calc(100% - 16px);
  margin: 0 auto;
  transform: none;
  opacity: 1;
  animation: vh-inline-fade-in 0.3s ease-out forwards;
}
.vh-overlay.vh-style-holographic.vh-inline .vh-glass::before {
  inset: -1px;
  border-radius: 13px;
  filter: blur(4px);
}
.vh-overlay.vh-style-holographic.vh-inline .vh-eyebrow {
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vh-overlay.vh-style-holographic.vh-inline .vh-headline {
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.2);
}
.vh-overlay.vh-style-holographic.vh-inline .vh-player {
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.vh-overlay.vh-style-holographic.vh-inline .vh-meter {
  margin-top: 6px;
  padding: 2px 8px;
  gap: 5px;
  border-radius: 999px;
  font-size: 11px;
}
.vh-overlay.vh-style-holographic.vh-inline .vh-meter-v {
  font-size: 13px;
  font-weight: 700;
  color: var(--vh-accent, #4dffd2);
}
.vh-overlay.vh-style-holographic.vh-inline .vh-meter-k {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}
.vh-overlay.vh-style-holographic.vh-inline .vh-orb {
  /* Drift orbs were sized for a viewport-wide overlay — at card size they
     overflow and just add noise. Hide them; the conic halo around the
     glass + the sweep are enough to keep the theme readable. */
  display: none;
}
.vh-overlay.vh-style-holographic.vh-inline .vh-grid {
  display: none;
}

/* ── Sky Sports (inline) — broadcast banner at card size.
   Fullscreen used text-shadow: 4px 4px 0 white, 8px 8px 0 red as a
   comic-book layered effect. At card-sized typography (~22px) those
   offsets are larger than the letters themselves, looking like
   duplicate text on top of itself. Drop the multi-layer shadow and
   the heavy text-stroke; keep the diagonal stripe pattern + gradient
   background which still read as Sky-Sports-broadcast at any size. */
.vh-overlay.vh-style-sky_sports.vh-inline .vh-banner {
  padding: 8px 12px;
  max-width: 100%;
  transform: none;
  animation: vh-inline-fade-in 0.25s ease-out forwards;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.15);
}
.vh-overlay.vh-style-sky_sports.vh-inline .vh-eyebrow {
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-bottom: 2px;
}
.vh-overlay.vh-style-sky_sports.vh-inline .vh-headline {
  font-size: 22px;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0,0,0,0.4), 1px 1px 0 rgba(255,0,51,0.55);
  -webkit-text-stroke: 0;
  background: none;
  -webkit-text-fill-color: #ffffff;
}
.vh-overlay.vh-style-sky_sports.vh-inline .vh-player {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.vh-overlay.vh-style-sky_sports.vh-inline .vh-team {
  padding: 1px 6px;
  margin-left: 5px;
  font-size: 10px;
}

/* ── Minimalist (inline) — preserve the native horizontal pill layout.
   The pill was designed for the top edge of the screen as a notification;
   inside a card the same shape works as long as we tighten the sizing. */
.vh-overlay.vh-inline .vh-style-minimalist .vh-pill,
.vh-overlay.vh-style-minimalist.vh-inline .vh-pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  min-width: 0;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(28, 28, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transform: none;
  opacity: 1;
  animation: vh-inline-fade-in 0.25s ease-out forwards;
}
.vh-overlay.vh-style-minimalist.vh-inline .vh-icon-wrap {
  width: 30px; height: 30px;
  border-radius: 9px;
  flex-shrink: 0;
}
.vh-overlay.vh-style-minimalist.vh-inline .vh-em {
  font-size: 16px;
}
.vh-overlay.vh-style-minimalist.vh-inline .vh-icon-wrap::after {
  display: none;            /* skip the ping ring — too busy at card size */
}
.vh-overlay.vh-style-minimalist.vh-inline .vh-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1px;
}
.vh-overlay.vh-style-minimalist.vh-inline .vh-eyebrow {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.vh-overlay.vh-style-minimalist.vh-inline .vh-headline {
  font-size: 15px;
  font-weight: 600;
  color: #f5f5f7;
  background: none;
  -webkit-text-fill-color: inherit;
  line-height: 1.15;
}
.vh-overlay.vh-style-minimalist.vh-inline .vh-player {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}
/* Force every typography slot to be visible (override the fullscreen
   themes' opacity:0 / translateY start states + their delayed reveal
   animations) and size them to fit a card. */
.vh-overlay.vh-inline .vh-headline,
.vh-overlay.vh-inline .vh-player,
.vh-overlay.vh-inline .vh-stats,
.vh-overlay.vh-inline .vh-eyebrow,
.vh-overlay.vh-inline .vh-hairline,
.vh-overlay.vh-inline .vh-stat,
.vh-overlay.vh-inline .vh-stat-v,
.vh-overlay.vh-inline .vh-stat-k {
  opacity: 1;
  transform: none;
  animation: none;
  margin: 0;
  max-width: none;
}
.vh-overlay.vh-inline .vh-headline-wrap {
  margin-top: 0;
  overflow: visible;
  display: block;
}
.vh-overlay.vh-inline .vh-headline-wrap::after {
  display: none;
}
.vh-overlay.vh-inline .vh-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}
.vh-overlay.vh-inline .vh-headline {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  -webkit-text-fill-color: inherit;
  background: none;
  color: var(--vh-accent, #fbbf24);
}
.vh-overlay.vh-inline .vh-player {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 2px;
  color: #fff;
}
.vh-overlay.vh-inline .vh-stats {
  font-size: 12px;
  margin-top: 4px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.vh-overlay.vh-inline .vh-stat {
  display: inline-flex;
  flex-direction: row;
  gap: 3px;
  align-items: baseline;
}
.vh-overlay.vh-inline .vh-stat-v {
  font-size: 14px;
  font-weight: 800;
  color: var(--vh-accent, #fbbf24);
}
.vh-overlay.vh-inline .vh-stat-k {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.vh-overlay.vh-inline .vh-hairline {
  height: 1px;
  width: 40%;
  margin: 0 auto 4px;
  background: linear-gradient(90deg, transparent, var(--vh-accent, #fbbf24), transparent);
}
.vh-overlay.vh-inline .vh-team,
.vh-overlay.vh-inline .vh-sep {
  margin-left: 4px;
  opacity: 0.7;
}

@keyframes vh-inline-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CINEMATIC ───────────────────────────────────────────────────────────────
   Apple keynote / Tesla product reveal aesthetic. Cinematic black, slow
   reveal, volumetric light glow, hairline rule, gradient text, light sweep.
   Quiet luxury — restrained motion, perfect typography. */

.vh-style-cinematic {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,170,40,0.18), transparent 70%),
    radial-gradient(ellipse 60% 30% at 50% 100%, rgba(255,140,0,0.08), transparent 70%),
    rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: vh-fade-in 0.3s ease-out, vh-fade-out 0.5s 2.7s forwards;
}

/* Solemn variant (red cards, fouls) — no warm volumetric glow */
.vh-style-cinematic[data-tone="solemn"] {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(220, 38, 38, 0.15), transparent 70%),
    rgba(0, 0, 0, 0.88);
}

.vh-style-cinematic .vh-stack {
  text-align: center;
  position: relative;
  padding: 0 32px;
  max-width: 920px;
  --vh-accent-mix: color-mix(in srgb, var(--vh-accent) 60%, #ffd6a3);
}

.vh-style-cinematic .vh-hairline {
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--vh-accent, #ffaa28) 50%, transparent);
  margin: 0 auto 24px;
  animation: vh-line-open 0.7s cubic-bezier(.25, 1, .4, 1) 0.1s forwards;
}

.vh-style-cinematic .vh-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--vh-accent, #ffaa28);
  text-transform: uppercase;
  margin-top: 0;
  opacity: 0;
  animation: vh-fade-up 0.7s cubic-bezier(.16, 1, .3, 1) 0.5s forwards,
             vh-fade-down 0.5s 2.6s forwards;
}

.vh-style-cinematic .vh-headline-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  display: inline-block;
}

.vh-style-cinematic .vh-headline {
  font-size: clamp(56px, 10vw, 132px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, var(--vh-accent-mix, #ffd6a3) 50%, var(--vh-accent, #ffaa28) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(8px);
  animation: vh-fade-up 1s cubic-bezier(.16, 1, .3, 1) 0.7s forwards,
             vh-fade-down 0.6s 2.6s forwards;
}

/* Light sweep across the headline */
.vh-style-cinematic .vh-headline-wrap::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  animation: vh-sweep 1.4s cubic-bezier(.4, 0, .2, 1) 1.1s forwards;
}

.vh-style-cinematic .vh-player {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  opacity: 0;
  animation: vh-fade-up 0.7s cubic-bezier(.16, 1, .3, 1) 1.0s forwards,
             vh-fade-down 0.5s 2.6s forwards;
}

.vh-style-cinematic .vh-player .vh-sep {
  margin: 0 14px;
  color: var(--vh-accent, #ffaa28);
  opacity: 0.5;
}

.vh-style-cinematic .vh-stats {
  margin-top: 32px;
  display: inline-flex;
  gap: 0;
  align-items: center;
  opacity: 0;
  animation: vh-fade-up 0.7s cubic-bezier(.16, 1, .3, 1) 1.3s forwards,
             vh-fade-down 0.5s 2.6s forwards;
}

.vh-style-cinematic .vh-stat {
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.vh-style-cinematic .vh-stat:last-child { border-right: 0; }

.vh-style-cinematic .vh-stat-v {
  display: block;
  font-size: 32px;
  font-weight: 200;
  color: var(--vh-accent-mix, #ffd6a3);
  line-height: 1;
  font-feature-settings: "tnum";
}

.vh-style-cinematic .vh-stat-k {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

/* ── Shared keyframes ────────────────────────────────────────────────────── */

@keyframes vh-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes vh-fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes vh-line-open {
  to { width: 280px; }
}

@keyframes vh-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes vh-fade-down {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}

@keyframes vh-sweep {
  to { left: 200%; }
}

/* Reduced motion — respect users who've opted out */
@media (prefers-reduced-motion: reduce) {
  .vh-style-cinematic .vh-hairline,
  .vh-style-cinematic .vh-eyebrow,
  .vh-style-cinematic .vh-headline,
  .vh-style-cinematic .vh-player,
  .vh-style-cinematic .vh-stats {
    animation-duration: 0.001s;
    animation-delay: 0s;
  }
  .vh-style-cinematic .vh-headline-wrap::after {
    display: none;
  }
}


/* ============================================================================
 * STYLE FAMILY: SKY SPORTS — bold broadcast banner, loud, energetic
 * ========================================================================== */

.vh-style-sky_sports {
  background: rgba(0, 0, 0, 0.3);
  animation: vh-fade-in 0.2s ease-out, vh-fade-out 0.4s 2.7s forwards;
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
}

.vh-style-sky_sports .vh-banner {
  background: linear-gradient(135deg, #ffe600 0%, var(--vh-accent, #ff7300) 60%, #ff0033 100%);
  padding: 32px 64px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(255, 115, 0, 0.45), inset 0 0 60px rgba(0, 0, 0, 0.18);
  transform: scale(0);
  animation: vh-slam-in 0.45s cubic-bezier(.2, .9, .3, 1.4) forwards,
             vh-shake 0.18s 3 ease-in-out 0.45s,
             vh-fade-out 0.5s 2.5s forwards;
  max-width: 92vw;
}

.vh-style-sky_sports .vh-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    rgba(0, 0, 0, 0.0) 0 22px,
    rgba(0, 0, 0, 0.12) 22px 26px);
  pointer-events: none;
}

.vh-style-sky_sports .vh-eyebrow {
  font-size: 14px;
  letter-spacing: 0.32em;
  color: #1a0d00;
  opacity: 0.85;
  margin-bottom: 6px;
  font-family: 'Anton', 'Arial Black', sans-serif;
}

.vh-style-sky_sports .vh-headline {
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  text-shadow: 4px 4px 0 #ffffff, 8px 8px 0 rgba(255, 0, 51, 0.6);
  -webkit-text-stroke: 1px #fff;
}

.vh-style-sky_sports .vh-player {
  margin-top: 14px;
  font-size: clamp(18px, 2.6vw, 30px);
  letter-spacing: 0.06em;
  color: #1a0d00;
  font-family: 'Anton', 'Arial Black', sans-serif;
}

.vh-style-sky_sports .vh-team {
  background: #0a0a0a;
  color: #ffe600;
  padding: 2px 10px;
  margin-left: 8px;
  display: inline-block;
}

@keyframes vh-slam-in {
  0%   { transform: scale(0) rotate(-8deg); opacity: 0; }
  60%  { transform: scale(1.12) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes vh-shake {
  0%   { transform: translateX(0) rotate(0); }
  25%  { transform: translateX(-8px) rotate(-1.2deg); }
  75%  { transform: translateX(8px) rotate(1.2deg); }
  100% { transform: translateX(0) rotate(0); }
}


/* ============================================================================
 * STYLE FAMILY: DRAFTKINGS — glossy dark panel, gold metallic, confetti burst
 * ========================================================================== */

.vh-style-draftkings {
  background:
    radial-gradient(ellipse at center, rgba(26, 31, 58, 0.95) 0%, rgba(5, 8, 16, 0.95) 70%);
  animation: vh-fade-in 0.25s ease-out, vh-fade-out 0.5s 2.7s forwards;
}

.vh-style-draftkings .vh-confetti {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.vh-style-draftkings .vh-confetti span {
  position: absolute;
  width: 8px; height: 14px;
  top: 50%; left: 50%;
  background: var(--vh-accent, #ffc14d);
  opacity: 0;
  animation: vh-confetti-burst 1.6s cubic-bezier(.15, .6, .35, 1) forwards;
}
.vh-style-draftkings .vh-confetti span:nth-child(3n)   { background: #fff; }
.vh-style-draftkings .vh-confetti span:nth-child(3n+1) { background: #fde68a; }
.vh-style-draftkings .vh-confetti span:nth-child(5n)   { background: #fb923c; }

.vh-style-draftkings .vh-panel {
  position: relative;
  padding: 44px 64px 38px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, color-mix(in srgb, var(--vh-accent, #ffc14d) 18%, transparent), transparent 60%),
    linear-gradient(180deg, rgba(20, 30, 55, 0.98), rgba(8, 12, 24, 0.98));
  border: 1px solid color-mix(in srgb, var(--vh-accent, #ffc14d) 30%, transparent);
  border-radius: 16px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: scale(0.7);
  opacity: 0;
  animation: vh-panel-in 0.6s cubic-bezier(.2, .9, .3, 1.05) 0.05s forwards,
             vh-fade-out 0.6s 2.5s forwards;
}
.vh-style-draftkings .vh-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--vh-accent, #ffc14d) 80%, transparent), transparent);
}

.vh-style-draftkings .vh-icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 24px color-mix(in srgb, var(--vh-accent, #ffc14d) 70%, transparent));
  animation: vh-icon-pulse 1.2s ease-in-out infinite alternate;
}

.vh-style-draftkings .vh-headline {
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, var(--vh-accent, #ffc14d) 70%, color-mix(in srgb, var(--vh-accent, #ffc14d) 50%, #000) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px color-mix(in srgb, var(--vh-accent, #ffc14d) 30%, transparent);
}

.vh-style-draftkings .vh-player {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
}
.vh-style-draftkings .vh-team-pill {
  display: inline-block;
  padding: 3px 10px;
  margin-left: 10px;
  background: color-mix(in srgb, var(--vh-accent, #ffc14d) 12%, transparent);
  color: var(--vh-accent, #ffc14d);
  border: 1px solid color-mix(in srgb, var(--vh-accent, #ffc14d) 40%, transparent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.vh-style-draftkings .vh-meter {
  margin-top: 18px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.vh-style-draftkings .vh-meter-v {
  font-size: 22px;
  font-weight: 700;
  color: var(--vh-accent, #ffc14d);
  font-feature-settings: "tnum";
}
.vh-style-draftkings .vh-meter-k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes vh-confetti-burst {
  0%   { opacity: 0; transform: translate(0, 0) rotate(0); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) rotate(var(--r)); }
}
@keyframes vh-panel-in {
  0%   { transform: scale(0.7) translateY(20px); opacity: 0; }
  60%  { transform: scale(1.04) translateY(0); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes vh-icon-pulse {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}


/* ============================================================================
 * STYLE FAMILY: MINIMALIST — Apple Watch-style pill notification
 * ========================================================================== */

.vh-style-minimalist {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: vh-fade-in 0.2s ease-out, vh-fade-out 0.4s 2.7s forwards;
  font-family: 'Instrument Sans', -apple-system, 'SF Pro Display', BlinkMacSystemFont, sans-serif;
}

.vh-style-minimalist .vh-pill {
  background: rgba(28, 28, 30, 0.92);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 320px;
  max-width: 92vw;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  animation: vh-pill-in 0.55s cubic-bezier(.16, 1, .3, 1) 0.1s forwards,
             vh-pill-out 0.5s cubic-bezier(.7, 0, .84, 0) 2.6s forwards;
}

.vh-style-minimalist .vh-icon-wrap {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--vh-accent, #ffc14d) 30%, transparent),
    color-mix(in srgb, var(--vh-accent, #ffc14d) 60%, transparent));
  border-radius: 12px;
  position: relative;
}
.vh-style-minimalist .vh-em { font-size: 24px; line-height: 1; }
.vh-style-minimalist .vh-icon-wrap::after {
  content: "";
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 12px;
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--vh-accent, #ffc14d) 50%, transparent);
  animation: vh-ping 1.6s cubic-bezier(0, 0, 0.2, 1) 0.55s 1;
  pointer-events: none;
}

.vh-style-minimalist .vh-text {
  display: flex; flex-direction: column; gap: 2px;
}
.vh-style-minimalist .vh-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.vh-style-minimalist .vh-headline {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #f5f5f7;
  line-height: 1.2;
}
.vh-style-minimalist .vh-player {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1px;
}
.vh-style-minimalist .vh-dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin: 0 6px;
  transform: translateY(-2px);
}

@keyframes vh-pill-in {
  0%   { transform: translateY(20px) scale(0.95); opacity: 0; }
  60%  { transform: translateY(-2px) scale(1.01); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes vh-pill-out {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-8px); opacity: 0; }
}
@keyframes vh-ping {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--vh-accent, #ffc14d) 50%, transparent); }
  100% { box-shadow: 0 0 0 18px transparent; }
}


/* ============================================================================
 * STYLE FAMILY: EDITORIAL — magazine layout, serif display, asymmetric
 * ========================================================================== */

.vh-style-editorial {
  background: rgba(12, 12, 12, 0.7);
  animation: vh-fade-in 0.25s ease-out, vh-fade-out 0.5s 2.7s forwards;
}

.vh-style-editorial .vh-paper {
  position: relative;
  width: min(960px, 92vw);
  aspect-ratio: 16 / 9;
  background: #f5f1e8;
  color: #18120c;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  padding: 48px 64px 48px 96px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 12px 32px;
  font-family: 'Instrument Sans', -apple-system, sans-serif;
}
.vh-style-editorial .vh-paper::before {
  content: "";
  position: absolute;
  top: 32px; bottom: 32px; left: 56px;
  width: 2px;
  background: var(--vh-accent, #c4271a);
  transform-origin: top;
  animation: vh-rule-grow 0.6s cubic-bezier(.25, 1, .4, 1) forwards,
             vh-rule-shrink 0.5s 2.6s forwards;
  transform: scaleY(0);
}

.vh-style-editorial .vh-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b5a3e;
  font-weight: 600;
  opacity: 0;
  animation: vh-fade-in 0.5s 0.2s forwards, vh-fade-out 0.4s 2.65s forwards;
}
.vh-style-editorial .vh-badge {
  background: var(--vh-accent, #c4271a);
  color: #fff;
  padding: 4px 10px;
  letter-spacing: 0.2em;
}
.vh-style-editorial .vh-ticker {
  color: #18120c;
  font-feature-settings: "tnum";
}

.vh-style-editorial .vh-head {
  grid-column: 1 / 2;
  align-self: end;
  opacity: 0;
  animation: vh-fade-up 0.7s cubic-bezier(.16, 1, .3, 1) 0.4s forwards,
             vh-fade-out 0.4s 2.65s forwards;
}
.vh-style-editorial .vh-kicker {
  font-family: 'Instrument Serif', 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-size: 18px;
  color: #6b5a3e;
  margin-bottom: 8px;
}
.vh-style-editorial .vh-headline {
  font-family: 'Instrument Serif', 'Georgia', 'Times New Roman', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #18120c;
}
.vh-style-editorial .vh-headline em {
  font-style: italic;
  color: var(--vh-accent, #c4271a);
  font-weight: 400;
}

.vh-style-editorial .vh-number-block {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  align-self: end;
  text-align: right;
  border-top: 1px solid rgba(24, 18, 12, 0.2);
  padding-top: 12px;
  opacity: 0;
  animation: vh-fade-up 0.7s cubic-bezier(.16, 1, .3, 1) 0.7s forwards,
             vh-fade-out 0.4s 2.65s forwards;
}
.vh-style-editorial .vh-v {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--vh-accent, #c4271a);
  font-feature-settings: "tnum";
}
.vh-style-editorial .vh-k {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6b5a3e;
  font-weight: 600;
}

.vh-style-editorial .vh-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(24, 18, 12, 0.2);
  padding-top: 14px;
  font-family: 'Instrument Sans', sans-serif;
  opacity: 0;
  animation: vh-fade-in 0.5s 1.0s forwards, vh-fade-out 0.4s 2.65s forwards;
}
.vh-style-editorial .vh-byline {
  font-size: 13px;
  color: #18120c;
  font-weight: 600;
}
.vh-style-editorial .vh-role {
  margin-left: 10px;
  color: #6b5a3e;
  font-weight: 400;
  font-style: italic;
  font-family: 'Instrument Serif', 'Georgia', serif;
}
.vh-style-editorial .vh-quote {
  font-size: 13px;
  font-style: italic;
  color: #6b5a3e;
  font-family: 'Instrument Serif', 'Georgia', serif;
}

@keyframes vh-rule-grow   { to { transform: scaleY(1); } }
@keyframes vh-rule-shrink { to { transform: scaleY(0); transform-origin: bottom; } }


/* ============================================================================
 * STYLE FAMILY: HOLOGRAPHIC — iridescent glass, ambient orbs, light sweep
 * ========================================================================== */

.vh-style-holographic {
  background:
    radial-gradient(ellipse at 30% 20%, #1a0840 0%, #0a0518 40%),
    radial-gradient(ellipse at 70% 80%, #08183d 0%, #050410 50%);
  animation: vh-fade-in 0.3s ease-out, vh-fade-out 0.5s 2.7s forwards;
  overflow: hidden;
}

.vh-style-holographic .vh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: vh-orb-drift 8s ease-in-out infinite;
}
.vh-style-holographic .vh-orb-a {
  top: -10%; left: -8%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, #ff5fcf 0%, transparent 70%);
}
.vh-style-holographic .vh-orb-b {
  bottom: -15%; right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, #4dffd2 0%, transparent 70%);
  animation-delay: -3s;
}
.vh-style-holographic .vh-orb-c {
  top: 30%; right: 20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--vh-accent, #ffb84d) 0%, transparent 70%);
  animation-delay: -5s;
}

.vh-style-holographic .vh-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 75%);
}

.vh-style-holographic .vh-glass {
  position: relative;
  padding: 40px 64px 36px;
  text-align: center;
  border-radius: 20px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(20px);
  opacity: 0;
  animation: vh-glass-in 0.8s cubic-bezier(.16, 1, .3, 1) 0.2s forwards,
             vh-fade-out 0.6s 2.6s forwards;
}
.vh-style-holographic .vh-glass::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: conic-gradient(from 90deg,
    rgba(255, 95, 207, 0.0) 0%,
    rgba(255, 95, 207, 0.6) 12%,
    rgba(77, 255, 210, 0.6) 36%,
    rgba(255, 184, 77, 0.6) 62%,
    rgba(140, 75, 255, 0.6) 84%,
    rgba(255, 95, 207, 0.0) 100%);
  filter: blur(8px);
  opacity: 0.5;
  z-index: -1;
  animation: vh-halo-rotate 6s linear infinite;
}
.vh-style-holographic .vh-glass::after {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  animation: vh-glass-sweep 1.6s cubic-bezier(.4, 0, .2, 1) 0.7s forwards;
  pointer-events: none;
  border-radius: 20px;
}

.vh-style-holographic .vh-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff5fcf, #4dffd2, var(--vh-accent, #ffb84d));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.vh-style-holographic .vh-headline {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.96;
  background: linear-gradient(180deg, #ffffff 0%, #f5e0ff 50%, #c0e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
}
.vh-style-holographic .vh-player {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}
.vh-style-holographic .vh-team {
  margin-left: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.vh-style-holographic .vh-meter {
  margin-top: 24px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.vh-style-holographic .vh-meter-v {
  font-size: 22px;
  font-weight: 700;
  color: #4dffd2;
  font-feature-settings: "tnum";
}
.vh-style-holographic .vh-meter-k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes vh-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -16px) scale(1.06); }
}
@keyframes vh-halo-rotate {
  to { transform: rotate(360deg); }
}
@keyframes vh-glass-sweep {
  to { left: 110%; }
}
@keyframes vh-glass-in {
  0%   { transform: translateY(20px) scale(0.94); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
