/* HUNTER HUD · family: blog — "FIELD REPORT"
   Blog (blog/*.html, 11 pages). Two layouts share this file:
     A) blog/article.css + blog/index.html inline styles: .nav .logo .nav-links, .layout .side-rail .ad-slot, .hero,
        .articles .article-card, article (.article-tag .article-meta .lede .info-box .pullquote blockquote .play-link),
        .article-nav .back, footer/.site-footer
     B) blog/nexus-article.css ("best of" lists: best-n64/gba/ps1-games, best-snes-rpgs): .nx-bg .nx-nav .nx-mark
        .nx-brand-copy .nx-navlinks .nx-cta, the animated OLDGAMES hero (.nx-hero .gl glitch + .nx-hero-scan),
        .nx-wrap .nx-tag .nx-meta .nx-lede .nx-infobox .rank .nx-genre .nx-play .nx-back .nx-foot
   Design: every article is a field report on a heavy carbon plate. A thin energy spine runs down the plate's left
   gutter with a numbered log node at every entry (layout A: CSS counter; layout B: the page's own .rank moved onto
   the spine), a wide recessed mono dateline rail carries the page's real date / length / system, the lede opens
   with a boxed drop cap, genre and play-target readouts hang in a right-hand notes column on wide plates, pull
   quotes are lit plates with one corner bracket, and hazard strips close the ranking and the report.
   Utility classes (hh-header, hh-navlink, hh-plate, hh-eyebrow, hh-h, hh-btn, hh-primary) are attached by
   assets/css/hunter/blog.json → assets/js/hunter-hud.js; this file re-skins the page's own classes on top of them.
   Scope: every rule lives under html.hunter-hud so the page CSS keeps working with ?nohud=1. Geometry rules key on
   the page's own elements (not on JS-added classes) so nothing shifts when the classMap lands. */

/* ---------- Family tokens ---------- */
html.hunter-hud[data-hud-family="blog"]{
  scroll-behavior:smooth;
  --bl-pad-l:104px;           /* report plate left padding: holds the spine gutter */
  --bl-pad-r:56px;
  --bl-spine:52px;            /* spine x, measured from the plate's padding edge */
  --bl-col:32rem;             /* reading column: ≈66 characters of 17px Segoe UI */
  --bl-gap:52px;              /* column → notes gap on wide plates */
  --bl-text:1.0625rem;
  --bl-trough:linear-gradient(180deg,#050403,#0c0906);
  --bl-hazard:repeating-linear-gradient(-45deg,rgba(255,196,0,.82) 0 5px,transparent 5px 10px);
  --bl-cut-sm:polygon(5px 0,100% 0,100% calc(100% - 5px),calc(100% - 5px) 100%,0 100%,0 5px);
}
@media(max-width:720px){
  html.hunter-hud[data-hud-family="blog"]{--bl-pad-l:40px;--bl-pad-r:18px;--bl-spine:18px;--bl-text:1rem}
}
/* phones: layout A's page gutter matches layout B's 14px plate inset, so both reports get the same reading width */
@media(max-width:600px){html.hunter-hud .layout{padding-left:14px;padding-right:14px}}

/* ---------- Ground & type ---------- */
html.hunter-hud body{font-family:var(--hh-font-text);color:var(--hh-ink-2)}
html.hunter-hud .nx-bg{display:none}                       /* the core draws the carbon ground + ember radial */
/* bottom clearance so the last line can scroll clear of the fixed telemetry tag (desktop) and radio pill (phone) */
html.hunter-hud[data-hud-family="blog"] body{padding-bottom:34px}
@media(max-width:760px){html.hunter-hud[data-hud-family="blog"] body{padding-bottom:76px}}
/* no blog page ships a form today; this keeps any later input/select on the HUD material */
html.hunter-hud input:not([type=checkbox]):not([type=radio]),html.hunter-hud select,html.hunter-hud textarea{
  font-family:var(--hh-font-hud);color:var(--hh-ink);background:linear-gradient(180deg,#0a0806,#130f0a);
  border:1px solid var(--hh-edge-2);border-radius:0;box-shadow:inset 0 2px 8px rgba(0,0,0,.65);
}
html.hunter-hud input:focus,html.hunter-hud select:focus,html.hunter-hud textarea:focus{border-color:var(--hh-orange);outline:none;box-shadow:inset 0 2px 8px rgba(0,0,0,.65),0 0 0 1px rgba(255,122,0,.35)}

/* ---------- Motion vocabulary (transform / opacity / background-position only) ---------- */
/* bounded header beam: 22% wide, stops at 22% × 4.5 = 99% of the bar, so it never adds scroll width
   (355% overshot the edge by ~1.5px at the end of each cycle and flashed a horizontal scrollbar) */
@keyframes hh-blog-scan{0%{transform:translateX(-110%)}100%{transform:translateX(350%)}}
@keyframes hh-blog-beam{0%{background-position:-60% 0,0 0}100%{background-position:160% 0,0 0}}
/* title wipe that clips outside the bloom and leaves no clip-path behind */
@keyframes hh-blog-reveal-x{0%{clip-path:inset(-60px 100% -60px -60px);opacity:.2}100%{clip-path:inset(-60px -60px -60px -60px);opacity:1}}
@keyframes hh-blog-in{0%{opacity:0;transform:translateY(8px)}100%{opacity:1;transform:none}}
@keyframes hh-blog-fade{0%{opacity:0}100%{opacity:1}}
@keyframes hh-blog-sweep{0%{transform:translateX(-100%)}100%{transform:translateX(430%)}}
/* energy pulses travelling down the spine: a 1400px repeating tile moved by exactly one tile → seamless */
@keyframes hh-blog-spine{0%{transform:translateY(0)}100%{transform:translateY(1400px)}}
/* log node coming online when its entry scrolls in */
@keyframes hh-blog-node{0%{opacity:.15;transform:scale(.5)}55%{opacity:1;transform:scale(1.14)}100%{opacity:1;transform:none}}
@keyframes hh-blog-diamond{0%{opacity:.15;transform:rotate(45deg) scale(.4)}55%{opacity:1;transform:rotate(45deg) scale(1.3)}100%{opacity:1;transform:rotate(45deg)}}
@keyframes hh-blog-log{0%{opacity:.2}100%{opacity:1}}

/* ---------- Header / nav (layout A: .nav · layout B: .nx-nav) ---------- */
html.hunter-hud .nav.hh-header{position:sticky;top:0;z-index:100;padding:12px 24px;gap:12px 20px}
html.hunter-hud .nav.hh-header:after,html.hunter-hud .nx-nav.hh-header:after{animation-name:hh-blog-scan}
html.hunter-hud .nav .logo.hh-h{
  font-size:1.05rem!important;font-weight:700!important;letter-spacing:.14em!important;
  display:inline-flex;align-items:center;gap:10px;text-decoration:none;
  font-variant-emoji:text;                                  /* 🎮 renders as a monochrome glyph in the wordmark colour */
}
html.hunter-hud .nav .logo.hh-h:after{
  content:'// BLOG';font:700 10px/1 var(--hh-font-mono);letter-spacing:.24em;color:var(--hh-orange);
  padding:4px 7px;border:1px solid var(--hh-edge-2);background:rgba(8,6,4,.9);clip-path:var(--bl-cut-sm);
}
html.hunter-hud .nav-links{gap:6px}
html.hunter-hud .nav-links a.hh-navlink,html.hunter-hud .nx-navlinks a.hh-navlink{padding:8px 12px;font-size:12.5px}
@media(max-width:600px){
  html.hunter-hud .nav.hh-header{flex-wrap:wrap;padding:10px 16px;gap:4px 12px}
  html.hunter-hud .nav-links{flex-wrap:wrap;gap:0}
  html.hunter-hud .nav-links a.hh-navlink{padding:6px 8px;font-size:11.5px}
  html.hunter-hud .nav .logo.hh-h{font-size:.95rem!important}
}

/* Nexus floating bar: keeps its sticky offset and bar geometry, becomes a bracketed carbon plate with a lit top edge. */
html.hunter-hud .nx-nav.hh-header{
  position:sticky;top:14px;z-index:50;
  border:1px solid var(--hh-edge-2)!important;
  background:
    linear-gradient(var(--hh-orange),var(--hh-orange)) top right/22px 2px no-repeat,
    linear-gradient(var(--hh-orange),var(--hh-orange)) top right/2px 22px no-repeat,
    linear-gradient(var(--hh-orange),var(--hh-orange)) bottom left/22px 2px no-repeat,
    linear-gradient(var(--hh-orange),var(--hh-orange)) bottom left/2px 22px no-repeat,
    linear-gradient(90deg,rgba(255,196,110,.34),rgba(255,122,0,.10) 30%,transparent 70%) top left/100% 1px no-repeat,
    linear-gradient(180deg,rgba(19,14,9,.97),rgba(8,6,5,.97))!important;
  box-shadow:0 18px 50px rgba(0,0,0,.55),inset 0 -1px 0 rgba(0,0,0,.6)!important;
  clip-path:inset(-2px 0 -4px 0);                           /* keeps the energy beam under the bar inside the bar's width */
}
/* Below 1080 the bar spans the viewport and its brackets land on the core's fixed viewport brackets: inset it. */
@media(min-width:761px) and (max-width:1120px){html.hunter-hud .nx-nav.hh-header{margin-left:14px;margin-right:14px}}
html.hunter-hud .nx-mark .orbit{
  background:conic-gradient(from 0deg,transparent,var(--hh-orange),var(--hh-yellow),transparent 72%);
  filter:drop-shadow(0 0 12px rgba(255,122,0,.5));
  animation:hh-spin 4s linear infinite;animation-play-state:var(--hud-play);
}
html.hunter-hud .nx-mark .core{
  border:1px solid rgba(255,196,0,.7);color:var(--hh-yellow);font-family:var(--hh-font-hud);font-weight:700;font-size:.72rem;letter-spacing:.04em;
  background:radial-gradient(circle,rgba(255,122,0,.28),rgba(10,8,6,.97) 70%);
  text-shadow:0 0 12px rgba(255,150,30,.9);
}
html.hunter-hud .nx-brand-copy strong.hh-h{font-size:.92rem!important;font-weight:700!important;letter-spacing:.16em!important}
html.hunter-hud .nx-brand-copy small{font-family:var(--hh-font-mono);font-size:.58rem;letter-spacing:.2em;color:var(--hh-orange);margin-top:3px;text-transform:uppercase}
html.hunter-hud .nx-brand-copy small:before{content:'// '}
html.hunter-hud .nx-cta.hh-btn{padding:9px 16px;font-size:.7rem!important;letter-spacing:.1em!important}
/* clip-path swallows outlines: focus is drawn inside the chamfer instead */
html.hunter-hud .nx-cta.hh-primary:focus-visible{outline:none;box-shadow:inset 0 0 0 2px #fff6cc,inset 0 0 0 4px rgba(23,9,0,.55),inset 0 -3px rgba(130,45,0,.35)!important}

/* ---------- Archive hero (blog index) ---------- */
html.hunter-hud .hero{position:relative;padding:38px 20px 44px;margin-bottom:30px}
html.hunter-hud .hero:before{
  content:'// RETRO ARCHIVE';display:block;width:max-content;margin:0 auto 18px;padding-left:28px;
  font:700 10.5px/1.2 var(--hh-font-hud);letter-spacing:.34em;text-transform:uppercase;color:var(--hh-yellow);
  background:linear-gradient(var(--hh-orange),var(--hh-orange)) left center/18px 2px no-repeat;
  filter:drop-shadow(0 0 8px rgba(255,122,0,.6));
  animation:hh-blog-in .5s var(--hh-ease-out) .02s backwards;
}
html.hunter-hud .hero h1.hh-h{
  font-size:clamp(2.3rem,1.1rem + 3.4vw,3.9rem)!important;font-weight:700!important;font-stretch:condensed;
  letter-spacing:.045em!important;line-height:.98;margin-bottom:18px;
  text-shadow:0 0 34px rgba(255,122,0,.42),0 0 2px rgba(255,220,150,.35)!important;
}
html.hunter-hud .hero p{color:var(--hh-dim);font-size:1.06rem;line-height:1.65;max-width:36em;text-wrap:pretty;animation:hh-blog-in .55s var(--hh-ease-out) .16s backwards}
/* ruler rail under the hero: minor ticks, a major tick every fifth, the orange hairline and one travelling yellow beam
   (the page's single ambient loop) */
html.hunter-hud .hero:after{
  content:'';display:block;height:9px;max-width:520px;margin:32px auto 0;
  background:
    linear-gradient(90deg,transparent,var(--hh-yellow),transparent) -60% 4px/38% 1px no-repeat,
    linear-gradient(90deg,transparent,rgba(255,122,0,.6) 16%,rgba(255,122,0,.6) 84%,transparent) 0 4px/100% 1px no-repeat,
    repeating-linear-gradient(90deg,rgba(255,196,0,.55) 0 1px,transparent 1px 65px) 0 0/100% 9px no-repeat,
    repeating-linear-gradient(90deg,rgba(255,122,0,.32) 0 1px,transparent 1px 13px) 0 3px/100% 3px no-repeat;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 14%,#000 86%,transparent);mask-image:linear-gradient(90deg,transparent,#000 14%,#000 86%,transparent);
  animation:hh-blog-fade .6s ease-out .22s backwards,hh-blog-rail 6.5s var(--hh-ease-io) 1s infinite;
  animation-play-state:running,var(--hud-play);
}
@keyframes hh-blog-rail{0%{background-position:-60% 4px,0 4px,0 0,0 3px}100%{background-position:160% 4px,0 4px,0 0,0 3px}}

/* ---------- Layout B animated OLDGAMES hero (keep the glitch, recoloured to orange/yellow) ---------- */
html.hunter-hud .nx-hero{position:relative}
/* brackets frame the wordmark block (a centred 600px box), not the empty edges of the 1080px header */
html.hunter-hud .nx-hero:before,html.hunter-hud .nx-hero:after{content:'';position:absolute;width:26px;height:26px;border:2px solid var(--hh-orange);opacity:.6;pointer-events:none}
html.hunter-hud .nx-hero:before{left:max(4%,calc(50% - 300px));top:12px;border-right:0;border-bottom:0}
html.hunter-hud .nx-hero:after{right:max(4%,calc(50% - 300px));bottom:30px;border-left:0;border-top:0}
html.hunter-hud .nx-hero .gl{
  font-family:var(--hh-font-hud);font-weight:700;font-stretch:condensed;letter-spacing:.2em;color:var(--hh-ink);
  text-shadow:0 0 28px rgba(255,122,0,.55),0 0 2px rgba(255,226,122,.5);
}
html.hunter-hud .nx-hero .gl:before{color:var(--hh-orange);animation-play-state:var(--hud-play)}
html.hunter-hud .nx-hero .gl:after{color:var(--hh-ember);animation-play-state:var(--hud-play)}
html.hunter-hud .nx-hero-sub{font-family:var(--hh-font-mono);font-size:.66rem;letter-spacing:.3em;color:var(--hh-yellow);text-shadow:0 0 10px rgba(255,122,0,.5)}
html.hunter-hud .nx-hero-sub:before{content:'// '}
@media(max-width:430px){html.hunter-hud .nx-hero-sub{font-size:.58rem;letter-spacing:.2em}}
html.hunter-hud .nx-hero-scan{
  background:linear-gradient(90deg,transparent,var(--hh-orange),var(--hh-yellow),var(--hh-orange),transparent);
  box-shadow:0 0 12px rgba(255,122,0,.6);animation-play-state:var(--hud-play);
}

/* ---------- Side rails / ad slots (functional: never hidden or shrunk, only re-skinned) ---------- */
html.hunter-hud .ad-slot{border-radius:0!important}
/* A loaded slot is filled by the network's sandboxed cross-origin <iframe>: only the chamfer reaches it. */
html.hunter-hud .ad-slot[data-loaded="true"],html.hunter-hud .ad-slot iframe,html.hunter-hud .ad-slot .og-local-ad-preview{
  border-radius:0!important;
  clip-path:polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
html.hunter-hud .ad-slot:not([data-loaded="true"]){
  border:1px dashed var(--hh-edge);border-radius:0;
  color:var(--hh-faint);font:700 .62rem/1.4 var(--hh-font-mono);letter-spacing:.24em;
  background:
    linear-gradient(var(--hh-edge-2),var(--hh-edge-2)) top left/14px 1px no-repeat,
    linear-gradient(var(--hh-edge-2),var(--hh-edge-2)) top left/1px 14px no-repeat,
    linear-gradient(var(--hh-edge-2),var(--hh-edge-2)) bottom right/14px 1px no-repeat,
    linear-gradient(var(--hh-edge-2),var(--hh-edge-2)) bottom right/1px 14px no-repeat,
    rgba(10,8,6,.35);
}
html.hunter-hud .ad-slot.ad-inline:not([data-loaded="true"]){margin:34px 0}

/* ---------- Archive index: cards as filed entries ---------- */
html.hunter-hud .articles{container:hh-archive/inline-size;counter-reset:hh-entry;gap:22px}
html.hunter-hud .article-card{counter-increment:hh-entry;position:relative;overflow:hidden;padding:24px 26px 0}
/* medium plate: one bracket, lit top edge after the cut, dark bottom lip */
html.hunter-hud .article-card.hh-plate{
  --cut:12px;
  background:
    radial-gradient(340px circle at var(--mx,-999px) var(--my,-999px),rgba(255,140,30,.10),transparent 65%),
    linear-gradient(to bottom right,transparent calc(50% - .9px),var(--hh-edge-hot) calc(50% - .9px) calc(50% + .9px),transparent calc(50% + .9px)) top left/var(--cut) var(--cut) no-repeat border-box,
    linear-gradient(to bottom right,transparent calc(50% - .9px),var(--hh-edge-hot) calc(50% - .9px) calc(50% + .9px),transparent calc(50% + .9px)) bottom right/var(--cut) var(--cut) no-repeat border-box,
    linear-gradient(var(--hh-orange),var(--hh-orange)) top right/20px 3px no-repeat border-box,
    linear-gradient(var(--hh-orange),var(--hh-orange)) top right/3px 20px no-repeat border-box,
    linear-gradient(90deg,rgba(255,200,120,.32),rgba(255,122,0,.08) 35%,transparent 75%) 11px 0/100% 1px no-repeat,
    linear-gradient(165deg,#1b130a,#100c07 55%,#0a0807)!important;
  box-shadow:inset 0 -1px rgba(0,0,0,.55)!important;
  transition:transform .35s var(--hh-ease-out),border-color .3s!important;
}
html.hunter-hud .article-card.hh-plate:hover{--panel-edge:#b8660f;transform:translateY(-2px)}
/* clip-path swallows outlines: focus is an inset yellow ring plus the hover light */
html.hunter-hud .article-card.hh-plate:focus-visible{--panel-edge:var(--hh-yellow);outline:none;transform:translateY(-2px);box-shadow:inset 0 0 0 2px var(--hh-yellow),inset 0 0 26px rgba(255,196,0,.14)!important}
/* hover light: a yellow scan crosses the top edge while an ember glow rises from the footer strip (opacity-driven) */
html.hunter-hud .article-card:after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    linear-gradient(90deg,transparent,rgba(255,214,110,.95),transparent) -120% 0/40% 1px no-repeat,
    radial-gradient(90% 55% at 50% 100%,rgba(255,122,0,.17),transparent 72%);
  opacity:0;transition:opacity .35s var(--hh-ease-out),background-position 0s .35s;
}
html.hunter-hud .article-card:hover:after,html.hunter-hud .article-card:focus-visible:after{
  opacity:1;background-position:220% 0,0 0;transition:opacity .3s var(--hh-ease-out),background-position .9s var(--hh-ease-out);
}
/* kicker row: the category eyebrow on the left, the mono entry counter on the right */
html.hunter-hud .article-card .tag.hh-eyebrow{background:none!important;padding:0;border:0;border-radius:0;margin:0 0 16px;align-self:stretch;font-size:10.5px!important}
html.hunter-hud .article-card .tag.hh-eyebrow:after{
  content:'// ENTRY ' counter(hh-entry,decimal-leading-zero);flex:none;width:auto;height:auto;margin-left:auto;
  background:none;transform:none;opacity:1;box-shadow:none;
  font:700 9.5px/1 var(--hh-font-mono);letter-spacing:.2em;color:var(--hh-muted);font-variant-numeric:tabular-nums;transition:color .3s;
}
html.hunter-hud .article-card:hover .tag.hh-eyebrow:after,html.hunter-hud .article-card:focus-visible .tag.hh-eyebrow:after{color:var(--hh-amber)}
html.hunter-hud .article-card h2.hh-h{font-size:1.2rem!important;font-weight:700!important;font-stretch:condensed;line-height:1.2;letter-spacing:.025em!important;margin:0 0 12px;text-wrap:balance}
html.hunter-hud .article-card p{color:var(--hh-dim);font-size:.95rem;line-height:1.62;margin-bottom:20px;text-wrap:pretty}
/* recessed footer strip spanning the card: status diamond + real read time, and the action */
html.hunter-hud .article-card .meta{
  position:relative;margin:auto -26px 0;padding:12px 26px 13px;
  font:600 10.5px/1.4 var(--hh-font-mono);letter-spacing:.16em;text-transform:uppercase;color:var(--hh-dim);font-variant-numeric:tabular-nums;
  background:var(--bl-trough);border-top:1px solid #2b1e0d;box-shadow:inset 0 1px 0 rgba(0,0,0,.7),inset 0 3px 10px rgba(0,0,0,.35);
}
html.hunter-hud .article-card .meta span:first-child:before{
  content:'';display:inline-block;width:5px;height:5px;margin-right:9px;vertical-align:1px;
  background:var(--hh-visor);transform:rotate(45deg);box-shadow:0 0 7px rgba(166,255,77,.85);
}
html.hunter-hud .article-card .read-more{
  display:inline-block;font:700 11px/1.4 var(--hh-font-hud);letter-spacing:.16em;color:var(--hh-orange);
  transition:color .25s,transform .35s var(--hh-ease-out);
}
html.hunter-hud .article-card:hover .read-more,html.hunter-hud .article-card:focus-visible .read-more{color:var(--hh-yellow);transform:translateX(4px)}
/* the index's one primary action: the lead entry's READ ARTICLE is the yellow power key */
html.hunter-hud .article-card:first-child .read-more{
  color:#170900;padding:7px 14px 7px 16px;
  background:linear-gradient(180deg,var(--hh-yellow),var(--hh-orange-2) 55%,var(--hh-orange));
  clip-path:var(--bl-cut-sm);box-shadow:inset 0 1px rgba(255,255,255,.55),inset 0 -2px rgba(130,45,0,.45);
}
html.hunter-hud .article-card:first-child:hover .read-more,html.hunter-hud .article-card:first-child:focus-visible .read-more{color:#000;background:linear-gradient(180deg,#ffe066,var(--hh-yellow) 45%,var(--hh-orange-2))}
html.hunter-hud .article-card:first-child .meta{padding-top:9px;padding-bottom:9px}

/* lead entry: spans the grid on two-column and wider archives, heavier plate (inner rim + rail) */
@container hh-archive (min-width:664px){
  html.hunter-hud .article-card:first-child{
    grid-column:1/-1;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(0,1fr);grid-template-rows:auto 1fr auto;column-gap:46px;
    padding:30px 36px 0;
  }
  html.hunter-hud .article-card.hh-plate:first-child{
    --cut:16px;
    box-shadow:inset 0 0 0 5px rgba(5,4,3,.3),inset 0 0 0 6px rgba(255,122,0,.07),inset 0 -1px rgba(0,0,0,.55)!important;
  }
  html.hunter-hud .article-card:first-child .tag.hh-eyebrow{grid-column:1/-1;margin-bottom:18px}
  html.hunter-hud .article-card:first-child h2.hh-h{grid-column:1;grid-row:2;align-self:start;font-size:clamp(1.55rem,3.2cqw,2.2rem)!important;line-height:1.06;letter-spacing:.02em!important;margin:0}
  html.hunter-hud .article-card:first-child p{grid-column:2;grid-row:2;align-self:start;margin:2px 0 0;font-size:1rem;color:var(--hh-ink-2)}
  html.hunter-hud .article-card:first-child .meta{grid-column:1/-1;grid-row:3;margin:28px -36px 0;padding-left:36px;padding-right:36px}
}

/* end-of-archive readout: the grid's last cell, with the real entry count from the CSS counter */
html.hunter-hud .articles:after{
  content:'// END OF ARCHIVE  \00B7  ' counter(hh-entry,decimal-leading-zero) ' ENTRIES ON FILE';
  grid-column:1/-1;display:grid;place-items:center;min-height:64px;padding:18px 20px;text-align:center;
  font:700 10.5px/1.6 var(--hh-font-mono);letter-spacing:.24em;color:var(--hh-amber);font-variant-numeric:tabular-nums;
  background:
    linear-gradient(var(--hh-orange),var(--hh-orange)) top right/18px 2px no-repeat,
    linear-gradient(var(--hh-orange),var(--hh-orange)) top right/2px 18px no-repeat,
    linear-gradient(var(--hh-orange),var(--hh-orange)) bottom left/18px 2px no-repeat,
    linear-gradient(var(--hh-orange),var(--hh-orange)) bottom left/2px 18px no-repeat,
    linear-gradient(90deg,transparent,rgba(255,122,0,.5),transparent) center calc(50% - 21px)/64% 1px no-repeat,
    linear-gradient(90deg,transparent,rgba(255,122,0,.5),transparent) center calc(50% + 21px)/64% 1px no-repeat,
    var(--bl-hazard) 14px 0/96px 5px no-repeat,
    var(--bl-hazard) calc(100% - 14px) 100%/96px 5px no-repeat,
    radial-gradient(60% 70% at 50% 50%,rgba(255,122,0,.07),transparent 70%),
    var(--bl-trough);
  border:1px solid #2b1e0d;box-shadow:inset 0 2px 12px rgba(0,0,0,.55);
  clip-path:polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
}
/* fill the orphan cell instead of opening a new row */
@container hh-archive (min-width:664px) and (max-width:1007.98px){
  html.hunter-hud .articles:has(> .article-card:last-child:nth-child(even)):after{grid-column:auto}
}
@container hh-archive (min-width:1008px){
  html.hunter-hud .articles:has(> .article-card:last-child:nth-child(3n+2)):after{grid-column:span 2}
  html.hunter-hud .articles:has(> .article-card:last-child:nth-child(3n)):after{grid-column:auto}
}

/* ---------- Report plate (layout A article · layout B main.nx-wrap) ---------- */
/* The plate is the query container for its own grid: reading column, notes column, spine gutter. overflow:clip keeps
   the travelling spine pulse (a transformed pseudo) from adding scroll height; nothing inside needs to overflow. */
html.hunter-hud article,html.hunter-hud main.nx-wrap{
  container:hh-report/inline-size;position:relative;overflow:clip;
  padding:56px var(--bl-pad-r) 64px var(--bl-pad-l);
  counter-reset:hh-log hh-quote;
}
html.hunter-hud main.nx-wrap{max-width:984px;margin:10px auto 54px}
@media(max-width:1012px){html.hunter-hud main.nx-wrap{margin-left:14px;margin-right:14px}}
@media(max-width:720px){html.hunter-hud article,html.hunter-hud main.nx-wrap{padding-top:34px;padding-bottom:40px}}
/* heavy plate: long brackets, lit cuts, a light-catching top edge, two rivets, an inner rim + rail, and the spine
   (hairline core, soft glow band and ruler ticks) drawn into the plate itself so it can never break or drift */
html.hunter-hud article.hh-plate,html.hunter-hud .nx-wrap.hh-plate{
  --cut:18px;
  background:
    radial-gradient(460px circle at var(--mx,-999px) var(--my,-999px),rgba(255,140,30,.06),transparent 65%),
    linear-gradient(to bottom right,transparent calc(50% - .9px),var(--hh-edge-hot) calc(50% - .9px) calc(50% + .9px),transparent calc(50% + .9px)) top left/var(--cut) var(--cut) no-repeat border-box,
    linear-gradient(to bottom right,transparent calc(50% - .9px),var(--hh-edge-hot) calc(50% - .9px) calc(50% + .9px),transparent calc(50% + .9px)) bottom right/var(--cut) var(--cut) no-repeat border-box,
    linear-gradient(var(--hh-orange),var(--hh-orange)) top right/30px 3px no-repeat border-box,
    linear-gradient(var(--hh-orange),var(--hh-orange)) top right/3px 30px no-repeat border-box,
    linear-gradient(var(--hh-orange),var(--hh-orange)) bottom left/30px 3px no-repeat border-box,
    linear-gradient(var(--hh-orange),var(--hh-orange)) bottom left/3px 30px no-repeat border-box,
    linear-gradient(90deg,rgba(255,206,130,.5),rgba(255,122,0,.16) 24%,rgba(255,122,0,.03) 62%,transparent) 17px 0/100% 1px no-repeat border-box,
    radial-gradient(circle,#9a6621 0 1.2px,rgba(154,102,33,.3) 1.7px,transparent 2.4px) 26px 9px/6px 6px no-repeat border-box,
    radial-gradient(circle,#9a6621 0 1.2px,rgba(154,102,33,.3) 1.7px,transparent 2.4px) calc(100% - 26px) calc(100% - 9px)/6px 6px no-repeat border-box,
    linear-gradient(180deg,transparent 0 40px,rgba(255,122,0,.44) 92px,rgba(255,122,0,.44) calc(100% - 112px),transparent calc(100% - 50px)) calc(var(--bl-spine) - 1px) 0/1px 100% no-repeat,
    linear-gradient(180deg,transparent 0 40px,rgba(255,122,0,.07) 92px,rgba(255,122,0,.07) calc(100% - 112px),transparent calc(100% - 50px)) calc(var(--bl-spine) - 5px) 0/9px 100% no-repeat,
    repeating-linear-gradient(180deg,rgba(255,150,40,.24) 0 1px,transparent 1px 36px) calc(var(--bl-spine) - 4px) 96px/7px calc(100% - 214px) no-repeat,
    radial-gradient(110% 55% at 0 0,rgba(255,122,0,.05),transparent 62%),
    linear-gradient(170deg,#19120a,#0f0b07 36%,#0a0807)!important;
  box-shadow:
    inset 0 -2px 0 rgba(0,0,0,.55),
    inset 0 0 0 6px rgba(4,3,2,.3),
    inset 0 0 0 7px rgba(255,122,0,.075),
    inset 0 70px 90px -80px rgba(255,150,50,.12)!important;
}
/* mono file tag inside the top-right bracket */
html.hunter-hud article.hh-plate:before,html.hunter-hud .nx-wrap.hh-plate:before{
  content:'// FIELD REPORT';position:absolute;top:24px;right:58px;pointer-events:none;
  font:700 9.5px/1 var(--hh-font-mono);letter-spacing:.24em;color:var(--hh-muted);
}
/* the page's ambient loop: comet pulses running down the spine, one per 1400px, moved by transform only */
html.hunter-hud article.hh-plate:after,html.hunter-hud .nx-wrap.hh-plate:after{
  content:'';position:absolute;z-index:0;left:calc(var(--bl-spine) - 5px);top:-1400px;width:9px;height:calc(100% + 1400px);pointer-events:none;
  background:
    linear-gradient(180deg,transparent 0 1150px,rgba(255,196,80,.45) 1330px,rgba(255,244,200,1) 1396px,transparent 1400px) 4px 0/1px 1400px repeat-y,
    linear-gradient(180deg,transparent 0 1210px,rgba(255,140,30,.24) 1350px,rgba(255,170,50,.5) 1396px,transparent 1400px) 0 0/9px 1400px repeat-y;
  animation:hh-blog-spine 8.5s linear infinite;animation-play-state:var(--hud-play);
}
@media(max-width:600px){html.hunter-hud article.hh-plate:before,html.hunter-hud .nx-wrap.hh-plate:before{display:none}}
@media(max-width:720px){html.hunter-hud article.hh-plate,html.hunter-hud .nx-wrap.hh-plate{--cut:10px}}

/* ---------- Report header: kicker, headline, dateline rail, drop-cap lede ---------- */
html.hunter-hud article .article-tag.hh-eyebrow,html.hunter-hud .nx-tag.hh-eyebrow{
  background:none!important;padding:0;border:0;border-radius:0;margin:0 0 18px;font-size:10.5px!important;
}
html.hunter-hud article .article-tag.hh-eyebrow:after,html.hunter-hud .nx-tag.hh-eyebrow:after{opacity:1;box-shadow:0 0 8px rgba(255,196,0,.65)}
html.hunter-hud article h1.hh-h,html.hunter-hud .nx-wrap h1.hh-h{
  font-size:clamp(1.7rem,1rem + 2.4vw,2.95rem)!important;font-weight:700!important;font-stretch:condensed;
  line-height:1.02;letter-spacing:.02em!important;margin:0;text-wrap:balance;
  text-shadow:0 0 30px rgba(255,122,0,.32),0 0 1px rgba(255,220,150,.4)!important;
}
/* wide recessed dateline rail: runs across the whole plate (over the spine, where it shows a yellow junction node)
   and carries the page's own date, reading time and system as labelled mono readouts */
html.hunter-hud article .article-meta,html.hunter-hud .nx-meta{
  position:relative;z-index:1;display:flex;flex-wrap:wrap;align-items:stretch;gap:0;
  margin:28px calc(14px - var(--bl-pad-r)) 36px calc(14px - var(--bl-pad-l));
  padding:0 calc(var(--bl-pad-r) - 14px) 0 calc(var(--bl-pad-l) - 14px);
  font:600 11px/1.3 Consolas,'Segoe UI Symbol','Share Tech Mono',monospace;letter-spacing:.12em;text-transform:uppercase;font-variant-numeric:tabular-nums;
  color:var(--hh-ink-2);
  background:
    linear-gradient(90deg,var(--hh-orange),rgba(255,122,0,.3) 22%,rgba(255,122,0,.06) 60%,transparent) left bottom/100% 1px no-repeat,
    var(--bl-trough);
  border:0;border-top:1px solid #2c1f0e;
  box-shadow:inset 0 3px 12px rgba(0,0,0,.62);
}
html.hunter-hud article .article-meta:before,html.hunter-hud .nx-meta:before{
  content:'';position:absolute;left:calc(var(--bl-spine) - 14px - 5px);top:calc(50% - 4.5px);width:9px;height:9px;
  background:var(--hh-yellow);transform:rotate(45deg);box-shadow:0 0 0 3px #080604,0 0 12px rgba(255,196,0,.8);
}
html.hunter-hud article .article-meta span,html.hunter-hud .nx-meta span{
  display:inline-flex;align-items:center;gap:8px;padding:14px 20px;
  border-left:1px solid #2a1d0d;
  /* the page's colour emoji (📅 ⏱️ 🎮) become one-tone glyphs: text presentation + a zero-blur shadow in amber */
  font-variant-emoji:text;color:transparent;text-shadow:0 0 0 var(--hh-amber);
}
html.hunter-hud article .article-meta span:first-child,html.hunter-hud .nx-meta span:first-child{border-left:0;padding-left:0}
html.hunter-hud article .article-meta span:before,html.hunter-hud .nx-meta span:before{
  font:700 9px/1 var(--hh-font-mono);letter-spacing:.22em;color:var(--hh-muted);text-shadow:none;margin-right:2px;
}
html.hunter-hud article .article-meta span:nth-child(1):before,html.hunter-hud .nx-meta span:nth-child(1):before{content:'FILED'}
html.hunter-hud article .article-meta span:nth-child(2):before,html.hunter-hud .nx-meta span:nth-child(2):before{content:'LENGTH'}
html.hunter-hud article .article-meta span:nth-child(3):before,html.hunter-hud .nx-meta span:nth-child(3):before{content:'SYSTEM'}
/* status chip at the right end: visor green = published and open to read */
html.hunter-hud article .article-meta:after,html.hunter-hud .nx-meta:after{
  content:'\25C6\00A0 PUBLIC';align-self:center;margin-left:auto;padding:5px 9px 5px 8px;
  font:700 9.5px/1 Consolas,'Segoe UI Symbol',monospace;letter-spacing:.2em;color:var(--hh-visor);text-shadow:0 0 8px rgba(166,255,77,.55);
  border:1px solid rgba(166,255,77,.28);background:rgba(166,255,77,.05);clip-path:var(--bl-cut-sm);
}
@container hh-report (max-width:639.98px){
  html.hunter-hud article .article-meta,html.hunter-hud .nx-meta{flex-direction:column;align-items:stretch;padding-top:6px;padding-bottom:8px}
  html.hunter-hud article .article-meta span,html.hunter-hud .nx-meta span{padding:7px 0;border-left:0}
  html.hunter-hud article .article-meta span:before,html.hunter-hud .nx-meta span:before{display:inline-block;min-width:62px}
  html.hunter-hud article .article-meta:after,html.hunter-hud .nx-meta:after{order:-1;align-self:flex-start;margin:6px 0 4px}
  html.hunter-hud article .article-meta:before,html.hunter-hud .nx-meta:before{top:19px}
}

/* lede: larger reading size on the column, opened by a boxed drop cap with two corner ticks */
html.hunter-hud article .lede,html.hunter-hud .nx-lede{
  font-family:var(--hh-font-text);font-style:normal;font-size:1.22rem;line-height:1.62;color:var(--hh-ink);
  max-width:calc(var(--bl-col) + 4.5rem);margin:0 0 38px;padding:0;border:0;box-shadow:none;text-wrap:pretty;
}
html.hunter-hud article .lede::first-letter,html.hunter-hud .nx-lede::first-letter{
  initial-letter:3;
  font-family:var(--hh-font-hud);font-weight:700;font-stretch:condensed;font-style:normal;
  color:var(--hh-yellow-2);text-shadow:0 0 18px rgba(255,122,0,.65);
  margin-right:.34em;padding:.1em .2em 0;
  background:
    linear-gradient(var(--hh-orange),var(--hh-orange)) top left/12px 2px no-repeat,
    linear-gradient(var(--hh-orange),var(--hh-orange)) top left/2px 12px no-repeat,
    linear-gradient(var(--hh-orange),var(--hh-orange)) bottom right/12px 2px no-repeat,
    linear-gradient(var(--hh-orange),var(--hh-orange)) bottom right/2px 12px no-repeat,
    linear-gradient(160deg,#281b0b,#0d0906 80%);
  border:1px solid var(--hh-edge-2);
}
@media(max-width:720px){html.hunter-hud article .lede,html.hunter-hud .nx-lede{font-size:1.1rem;line-height:1.6}}

/* ---------- Log entries: every h2 is an entry with a numbered node on the spine ---------- */
html.hunter-hud[data-hud-family="blog"]{--bl-chip-w:35px;--bl-chip-h:20px;--bl-chip-top:4px}
@media(max-width:720px){html.hunter-hud[data-hud-family="blog"]{--bl-chip-w:25px;--bl-chip-h:16px;--bl-chip-top:3px}}
html.hunter-hud article h2.hh-h,html.hunter-hud .nx-wrap h2.hh-h{
  position:relative;z-index:1;clear:both;
  font-size:1.5rem!important;font-weight:700!important;font-stretch:condensed;line-height:1.18;letter-spacing:.025em!important;
  margin:66px 0 16px;scroll-margin-top:90px;text-wrap:balance;
}
html.hunter-hud .nx-wrap h2.nx-mini.hh-h{font-size:1.2rem!important}
@media(max-width:720px){html.hunter-hud article h2.hh-h,html.hunter-hud .nx-wrap h2.hh-h{font-size:1.2rem!important;margin-top:50px}}
/* counting: layout A counts every h2, except in ranked lists (pages with play keys) where only ranked entries count;
   layout B counts the h2s that carry the page's .rank */
html.hunter-hud article h2{counter-increment:hh-log}
html.hunter-hud article:has(.play-link) h2:not(:has(+ p + p > .play-link)){counter-increment:none}
html.hunter-hud .nx-wrap h2:has(> .rank){counter-increment:hh-log}
/* layout B node: the page's own rank text ("1.") moves out of the heading onto the spine as a numbered chip */
html.hunter-hud .nx-wrap h2 > .rank{
  position:absolute;left:calc(var(--bl-spine) - (var(--bl-chip-w) + 1px) / 2 - var(--bl-pad-l));top:var(--bl-chip-top);
  width:var(--bl-chip-w);height:var(--bl-chip-h);display:grid;place-items:center;box-sizing:border-box;
  font:700 10.5px/1 var(--hh-font-mono);letter-spacing:.02em;font-variant-numeric:tabular-nums;font-stretch:normal;
  color:var(--hh-yellow);text-shadow:0 0 8px rgba(255,160,40,.75);
  background:linear-gradient(180deg,#261a0b,#0e0a06);border:1px solid var(--hh-edge-hot);
  box-shadow:0 0 0 3px #0f0b07,0 0 14px rgba(255,122,0,.3),inset 0 1px rgba(255,210,140,.18);
}
/* layout A node: its headings already carry their own numbers ("1. …"), so the spine shows a lit diamond, not a
   second copy of the number */
html.hunter-hud article h2.hh-h:before{
  content:'';position:absolute;left:calc(var(--bl-spine) - 6px - var(--bl-pad-l));top:calc(var(--bl-chip-top) + (var(--bl-chip-h) - 11px) / 2);
  width:11px;height:11px;box-sizing:border-box;transform:rotate(45deg);
  background:radial-gradient(circle,var(--hh-yellow) 0 1.6px,#0f0b07 2.4px);border:2px solid var(--hh-orange);
  box-shadow:0 0 0 3px #0f0b07,0 0 14px rgba(255,122,0,.6);
}
/* short lit connector from the node to the heading */
html.hunter-hud article h2.hh-h:after,html.hunter-hud .nx-wrap h2.hh-h:has(> .rank):after{
  content:'';position:absolute;top:calc(var(--bl-chip-top) + var(--bl-chip-h) / 2);height:1px;
  left:calc(var(--bl-spine) + var(--bl-chip-w) / 2 - var(--bl-pad-l));width:calc(var(--bl-pad-l) - var(--bl-spine) - var(--bl-chip-w) / 2 - 14px);
  background:linear-gradient(90deg,var(--hh-orange),rgba(255,122,0,.15));
}
html.hunter-hud article h2.hh-h:after{left:calc(var(--bl-spine) + 10px - var(--bl-pad-l));width:calc(var(--bl-pad-l) - var(--bl-spine) - 24px)}
@media(max-width:720px){
  html.hunter-hud .nx-wrap h2 > .rank{font-size:9px;letter-spacing:0;box-shadow:0 0 0 2px #0f0b07,0 0 10px rgba(255,122,0,.3)}
  html.hunter-hud article h2.hh-h:before{width:9px;height:9px;left:calc(var(--bl-spine) - 5px - var(--bl-pad-l));top:calc(var(--bl-chip-top) + (var(--bl-chip-h) - 9px) / 2);box-shadow:0 0 0 2px #0f0b07,0 0 10px rgba(255,122,0,.55)}
  html.hunter-hud article h2.hh-h:after,html.hunter-hud .nx-wrap h2.hh-h:has(> .rank):after{display:none}
}

/* end of the ranking: the first unranked h2 after a play key (layout A) / "More retro lists" (layout B) gets a hazard
   header with the real number of logged entries, and a hazard terminal on the spine */
html.hunter-hud article p:has(> .play-link) + h2.hh-h:not(:has(+ p + p > .play-link)):before,
html.hunter-hud .nx-wrap h2.nx-mini.hh-h:before{
  content:'// END OF RANKING  \00B7  ' counter(hh-log,decimal-leading-zero) ' ENTRIES LOGGED';
  position:static;display:block;width:auto;height:auto;margin:0 0 26px;padding:0 0 0 110px;border:0;box-shadow:none;transform:none;
  font:700 10px/6px var(--hh-font-mono);letter-spacing:.24em;color:var(--hh-amber);text-shadow:none;text-transform:uppercase;
  background:var(--bl-hazard) left center/96px 6px no-repeat;
}
html.hunter-hud article p:has(> .play-link) + h2.hh-h:not(:has(+ p + p > .play-link)):after,
html.hunter-hud .nx-wrap h2.nx-mini.hh-h:after{
  content:'';position:absolute;top:-3px;left:calc(var(--bl-spine) - 7px - var(--bl-pad-l));width:13px;height:13px;
  background:var(--bl-hazard) 0 0/10px 10px,#0f0b07;border:1px solid var(--hh-yellow);box-shadow:0 0 0 3px #0f0b07,0 0 12px rgba(255,196,0,.4);
}
html.hunter-hud .nx-wrap h2.nx-mini.hh-h{margin-top:74px}
html.hunter-hud article p:has(> .play-link) + h2.hh-h:not(:has(+ p + p > .play-link)){margin-top:74px}
@media(max-width:720px){
  html.hunter-hud article p:has(> .play-link) + h2.hh-h:not(:has(+ p + p > .play-link)):before,
  html.hunter-hud .nx-wrap h2.nx-mini.hh-h:before{padding-left:0;padding-top:16px;line-height:1.5;background-position:left top;background-size:72px 6px}
}

/* genre line → mono readout; on wide plates it hangs in the notes column beside the entry's first line */
html.hunter-hud article p:has(+ p > .play-link) > em:first-child,html.hunter-hud .nx-wrap .nx-genre{
  font:700 10.5px/1.6 var(--hh-font-mono)!important;letter-spacing:.18em;text-transform:uppercase;font-style:normal;color:var(--hh-amber)!important;
}
html.hunter-hud article p:has(+ p > .play-link) > em:first-child:before,html.hunter-hud .nx-wrap .nx-genre:before{content:'// ';color:var(--hh-orange)}
html.hunter-hud .nx-wrap .nx-genre{margin:0 0 10px}
@container hh-report (min-width:760px){
  html.hunter-hud article p:has(+ p > .play-link) > em:first-child,html.hunter-hud .nx-wrap .nx-genre{
    float:right;clear:right;box-sizing:border-box;width:calc(100cqw - var(--bl-col) - var(--bl-gap));
    padding:3px 0 3px 14px;border-left:1px solid var(--hh-edge-hot);
    background:linear-gradient(90deg,rgba(255,122,0,.07),transparent 70%);
  }
  html.hunter-hud article p:has(+ p > .play-link) > em:first-child{margin:5px calc(var(--bl-col) - 100cqw) 0 0}
  html.hunter-hud .nx-wrap .nx-genre{margin:5px 0 0}
}

/* play keys: carbon keys with an orange power bar; the chamfered body is the ::before layer so the key itself is not
   clipped and can carry a readout of its real target path beside it */
html.hunter-hud article p:has(> .play-link),html.hunter-hud .nx-wrap p:has(> .nx-play){margin:0}
html.hunter-hud .play-link,html.hunter-hud .nx-play{
  position:relative;isolation:isolate;display:inline-block;margin:4px 0 0;padding:10px 18px 10px 17px;
  font:700 12px/1.25 var(--hh-font-hud)!important;letter-spacing:.09em;text-transform:uppercase;
  color:var(--hh-yellow-2)!important;text-decoration:none;
  background:none!important;border:0!important;border-radius:0!important;box-shadow:none!important;
  transition:transform .25s var(--hh-ease-out),color .2s!important;
}
html.hunter-hud .play-link:before,html.hunter-hud .nx-play:before{
  content:'';position:absolute;inset:0;z-index:-1;pointer-events:none;
  background:
    linear-gradient(var(--hh-orange),var(--hh-orange)) left top/3px 100% no-repeat,
    linear-gradient(90deg,rgba(255,206,130,.3),transparent 70%) 3px 0/100% 1px no-repeat,
    linear-gradient(180deg,#22180d,#120d08);
  box-shadow:inset 0 0 0 1px var(--hh-edge-2),inset 0 -2px 0 rgba(0,0,0,.55);
  clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px));
  transition:box-shadow .25s var(--hh-ease-out);
}
html.hunter-hud .play-link:after,html.hunter-hud .nx-play:after{
  content:'\21B3\00A0 ' attr(href);position:absolute;top:50%;left:calc(100% + 18px);transform:translateY(-50%);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;pointer-events:none;
  font:600 10px/1.2 Consolas,'Segoe UI Symbol',monospace;letter-spacing:.06em;text-transform:none;color:var(--hh-muted);
  transition:color .25s,transform .35s var(--hh-ease-out);
}
html.hunter-hud .play-link:hover,html.hunter-hud .nx-play:hover,html.hunter-hud .play-link:focus-visible,html.hunter-hud .nx-play:focus-visible{color:#fff!important;transform:translateY(-1px)}
html.hunter-hud .play-link:hover:before,html.hunter-hud .nx-play:hover:before,html.hunter-hud .play-link:focus-visible:before,html.hunter-hud .nx-play:focus-visible:before{
  background:
    linear-gradient(var(--hh-yellow),var(--hh-yellow)) left top/3px 100% no-repeat,
    linear-gradient(90deg,rgba(255,230,160,.5),transparent 70%) 3px 0/100% 1px no-repeat,
    linear-gradient(180deg,#2e1f0d,#170f07);
  box-shadow:inset 0 0 0 1px var(--hh-orange),inset 0 -14px 22px -12px rgba(255,122,0,.55),inset 0 -2px 0 rgba(0,0,0,.4);
}
html.hunter-hud .play-link:hover:after,html.hunter-hud .nx-play:hover:after,html.hunter-hud .play-link:focus-visible:after,html.hunter-hud .nx-play:focus-visible:after{color:var(--hh-amber);transform:translate(4px,-50%)}
/* the report's one primary action: the #1 entry's key is the yellow power key (layout B keeps its nav PLAY NOW) */
html.hunter-hud article h2:first-of-type + p + p > .play-link{color:#170900!important}
html.hunter-hud article h2:first-of-type + p + p > .play-link:before{
  background:linear-gradient(90deg,rgba(255,255,255,.6),transparent 60%) 3px 0/100% 1px no-repeat,linear-gradient(180deg,var(--hh-yellow),var(--hh-orange-2) 55%,var(--hh-orange));
  box-shadow:inset 0 0 0 1px #ffd24d,inset 0 -3px 0 rgba(130,45,0,.45);
}
html.hunter-hud article h2:first-of-type + p + p > .play-link:hover,html.hunter-hud article h2:first-of-type + p + p > .play-link:focus-visible{color:#000!important}
html.hunter-hud article h2:first-of-type + p + p > .play-link:hover:before,html.hunter-hud article h2:first-of-type + p + p > .play-link:focus-visible:before{
  background:linear-gradient(90deg,rgba(255,255,255,.8),transparent 60%) 3px 0/100% 1px no-repeat,linear-gradient(180deg,#ffe066,var(--hh-yellow) 45%,var(--hh-orange-2));
  box-shadow:inset 0 0 0 1px #fff0b3,inset 0 0 22px rgba(255,255,255,.25),inset 0 -3px 0 rgba(130,45,0,.35);
}
/* target readout: in the notes column on wide plates, hidden where there is no room beside the key */
@container hh-report (min-width:760px){
  html.hunter-hud .play-link:after,html.hunter-hud .nx-play:after{left:calc(var(--bl-col) + var(--bl-gap));max-width:calc(100cqw - var(--bl-col) - var(--bl-gap))}
}
@container hh-report (max-width:759.98px){
  html.hunter-hud .play-link:after,html.hunter-hud .nx-play:after{display:none}
}
@media(max-width:600px){
  html.hunter-hud .play-link,html.hunter-hud .nx-play{font-size:11px!important;letter-spacing:.05em;padding:9px 14px 9px 15px}
}

/* ---------- Prose on the reading column ---------- */
html.hunter-hud article p,html.hunter-hud .nx-wrap p{font-size:var(--bl-text);line-height:1.74;color:var(--hh-ink-2);max-width:var(--bl-col);margin:0 0 18px;text-wrap:pretty}
html.hunter-hud article p strong,html.hunter-hud .nx-wrap strong{color:var(--hh-ink);font-weight:600}
html.hunter-hud article em,html.hunter-hud .nx-wrap em{color:var(--hh-ink)}
/* links: a quiet orange hairline at rest, a yellow beam that draws across on hover/focus */
html.hunter-hud article a:not(.play-link):not(.back),html.hunter-hud .nx-wrap a:not(.nx-play):not(.nx-back){
  color:var(--hh-orange-2);text-decoration:none;border-bottom:0;padding-bottom:1px;
  background:linear-gradient(var(--hh-yellow),var(--hh-yellow)) 0 100%/0 1px no-repeat,linear-gradient(rgba(255,122,0,.42),rgba(255,122,0,.42)) 0 100%/100% 1px no-repeat;
  transition:color .2s,background-size .4s var(--hh-ease-out);
}
html.hunter-hud article a:not(.play-link):not(.back):hover,html.hunter-hud .nx-wrap a:not(.nx-play):not(.nx-back):hover,
html.hunter-hud article a:not(.play-link):not(.back):focus-visible,html.hunter-hud .nx-wrap a:not(.nx-play):not(.nx-back):focus-visible{
  color:var(--hh-yellow);background-size:100% 1px,100% 1px;
}
html.hunter-hud article ul,html.hunter-hud article ol{max-width:var(--bl-col);margin:4px 0 26px;padding-left:24px}
html.hunter-hud article li{font-size:var(--bl-text);line-height:1.7;color:var(--hh-ink-2);margin-bottom:10px;padding-left:6px}
html.hunter-hud article ul > li::marker{content:'\25C6\00A0\00A0';color:var(--hh-orange);font-size:.72em}
html.hunter-hud article ol{list-style:decimal-leading-zero}
html.hunter-hud article ol > li::marker{font-family:var(--hh-font-mono);font-weight:700;font-size:.82em;color:var(--hh-amber);font-variant-numeric:tabular-nums}
html.hunter-hud article h3.hh-h{
  display:flex;align-items:center;gap:12px;margin:36px 0 10px;
  font-size:1.16rem!important;font-weight:600!important;font-stretch:condensed;line-height:1.25;letter-spacing:.05em!important;color:var(--hh-yellow-2)!important;
}
html.hunter-hud article h3.hh-h:before{content:'';flex:0 0 12px;height:1px;background:var(--hh-orange);box-shadow:0 0 8px rgba(255,122,0,.8)}

/* end of report: hazard block + label + a fading rule; non-list articles read out their real section count */
html.hunter-hud article hr,html.hunter-hud .nx-wrap hr{
  position:relative;z-index:1;display:flex;align-items:center;gap:18px;clear:both;
  height:auto;margin:60px 0 30px;padding:0;border:0;overflow:visible;background:none;color:transparent;
}
html.hunter-hud article hr:before,html.hunter-hud .nx-wrap hr:before{
  content:'// END OF REPORT';flex:none;padding-left:110px;
  font:700 10px/6px var(--hh-font-mono);letter-spacing:.24em;color:var(--hh-amber);
  background:var(--bl-hazard) left center/96px 6px no-repeat;
}
html.hunter-hud article:not(:has(.play-link)) hr:before{content:'// END OF REPORT  \00B7  ' counter(hh-log,decimal-leading-zero) ' SECTIONS FILED'}
html.hunter-hud article hr:after,html.hunter-hud .nx-wrap hr:after{content:'';flex:1;min-width:24px;height:1px;background:linear-gradient(90deg,rgba(255,122,0,.55),rgba(255,122,0,.06))}
@media(max-width:720px){
  html.hunter-hud article hr,html.hunter-hud .nx-wrap hr{flex-wrap:wrap;gap:10px}
  html.hunter-hud article hr:before,html.hunter-hud .nx-wrap hr:before{flex:1 1 100%;padding:16px 0 0;line-height:1.5;background-position:left top;background-size:72px 6px}
}

/* pull quote → lit plate: warm inner light from one corner, a single glowing yellow bracket, a lit top edge */
html.hunter-hud article .pullquote{
  position:relative;z-index:1;counter-increment:hh-quote;max-width:calc(var(--bl-col) + 11rem);
  margin:46px 0;padding:32px 36px 38px 42px;
  font-family:var(--hh-font-hud);font-weight:600;font-stretch:condensed;font-style:normal;font-size:1.5rem;line-height:1.3;letter-spacing:.01em;text-align:left;
  color:var(--hh-yellow-2);text-shadow:0 0 24px rgba(255,122,0,.35);text-wrap:balance;
  background:
    radial-gradient(280px circle at var(--mx,-999px) var(--my,-999px),rgba(255,170,60,.10),transparent 65%),
    radial-gradient(80% 130% at 0 0,rgba(255,140,30,.22),transparent 62%),
    linear-gradient(90deg,rgba(255,214,130,.7),rgba(255,122,0,.2) 40%,transparent 80%) 0 0/100% 1px no-repeat,
    linear-gradient(160deg,#261a0a,#150e07 55%,#0e0a06);
  box-shadow:inset 0 0 0 1px rgba(255,122,0,.26),inset 0 -2px 0 rgba(0,0,0,.5),inset 0 0 48px rgba(255,122,0,.06);
  clip-path:polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px));
}
html.hunter-hud article .pullquote:before{
  content:'';position:absolute;left:0;top:0;width:36px;height:36px;pointer-events:none;box-sizing:border-box;
  border-left:3px solid var(--hh-yellow);border-top:3px solid var(--hh-yellow);
  filter:drop-shadow(0 0 6px rgba(255,170,20,.9));
}
html.hunter-hud article .pullquote:after{
  content:'// QUOTE ' counter(hh-quote,decimal-leading-zero);position:absolute;right:24px;bottom:13px;
  font:700 9.5px/1 var(--hh-font-mono);letter-spacing:.22em;color:var(--hh-muted);text-shadow:none;
}
@media(max-width:720px){html.hunter-hud article .pullquote{font-size:1.2rem;padding:26px 20px 34px 24px}}
html.hunter-hud article blockquote{
  max-width:var(--bl-col);margin:30px 0;padding:14px 22px;border-left:2px solid var(--hh-orange);border-radius:0;
  color:var(--hh-ink-2);font-style:normal;background:linear-gradient(90deg,rgba(255,122,0,.08),transparent 70%);box-shadow:inset 1px 0 0 rgba(255,122,0,.4);
}

/* info box → recessed briefing panel sunk into the plate: dark trough, inner shadow, yellow corner ticks */
html.hunter-hud article .info-box.hh-plate,html.hunter-hud .nx-infobox.hh-plate{
  --cut:10px;position:relative;z-index:1;clear:both;margin:6px 0 42px;padding:20px 24px;
  background:
    radial-gradient(300px circle at var(--mx,-999px) var(--my,-999px),rgba(255,170,40,.07),transparent 65%),
    linear-gradient(var(--hh-yellow),var(--hh-yellow)) top right/14px 2px no-repeat border-box,
    linear-gradient(var(--hh-yellow),var(--hh-yellow)) top right/2px 14px no-repeat border-box,
    linear-gradient(var(--hh-yellow),var(--hh-yellow)) bottom left/14px 2px no-repeat border-box,
    linear-gradient(var(--hh-yellow),var(--hh-yellow)) bottom left/2px 14px no-repeat border-box,
    linear-gradient(to bottom right,transparent calc(50% - .9px),#6e4c15 calc(50% - .9px) calc(50% + .9px),transparent calc(50% + .9px)) top left/var(--cut) var(--cut) no-repeat border-box,
    linear-gradient(to bottom right,transparent calc(50% - .9px),#6e4c15 calc(50% - .9px) calc(50% + .9px),transparent calc(50% + .9px)) bottom right/var(--cut) var(--cut) no-repeat border-box,
    linear-gradient(180deg,#050403,#0c0906 55%,#0b0806)!important;
  border:1px solid #30220e!important;
  box-shadow:inset 0 4px 16px rgba(0,0,0,.8),inset 0 -1px 0 rgba(255,170,70,.1)!important;
}
html.hunter-hud article .info-box h4.hh-eyebrow,html.hunter-hud .nx-infobox h4.hh-eyebrow{margin:0 0 12px;line-height:1.5!important}
html.hunter-hud article .info-box p,html.hunter-hud .nx-infobox p{max-width:none;font-size:.98rem;line-height:1.68;margin:0 0 8px;color:var(--hh-ink-2)}
html.hunter-hud article .info-box p:last-child,html.hunter-hud .nx-infobox p:last-child{margin-bottom:0}
@container hh-report (min-width:760px){
  html.hunter-hud article .info-box,html.hunter-hud .nx-infobox{display:grid;grid-template-columns:190px minmax(0,1fr);column-gap:30px;align-items:start;padding:22px 30px}
  html.hunter-hud article .info-box h4.hh-eyebrow,html.hunter-hud .nx-infobox h4.hh-eyebrow{grid-column:1;grid-row:1/span 9;margin:2px 0 0;display:block!important;position:relative;padding-left:38px}
  /* stacked label variant for the narrow label column: dash + diamond pinned to the first line, text free to wrap */
  html.hunter-hud article .info-box h4.hh-eyebrow:before,html.hunter-hud .nx-infobox h4.hh-eyebrow:before{position:absolute;left:0;top:7px;width:18px}
  html.hunter-hud article .info-box h4.hh-eyebrow:after,html.hunter-hud .nx-infobox h4.hh-eyebrow:after{position:absolute;left:25px;top:5.5px;width:5px}
  html.hunter-hud article .info-box p,html.hunter-hud .nx-infobox p{grid-column:2}
}

/* ---------- Choreography ---------- */
/* report header plays as one short sequence (60ms steps): kicker → headline wipe → dateline rail → lede → briefing.
   Every entrance fills backwards only, so once it ends the element's own hover/focus transforms apply again. */
html.hunter-hud article > .article-tag,html.hunter-hud .nx-wrap > .nx-tag{animation:hh-blog-in .5s var(--hh-ease-out) .04s backwards}
html.hunter-hud .hero h1.hh-reveal-x,html.hunter-hud article h1.hh-reveal-x,html.hunter-hud .nx-wrap h1.hh-reveal-x{
  animation-name:hh-blog-reveal-x;animation-fill-mode:backwards;animation-delay:.1s;
}
html.hunter-hud .hero h1.hh-reveal-x{animation-delay:.08s}
html.hunter-hud article > .article-meta,html.hunter-hud .nx-wrap > .nx-meta{animation:hh-blog-in .55s var(--hh-ease-out) .17s backwards}
html.hunter-hud article > .lede,html.hunter-hud .nx-wrap > .nx-lede{animation:hh-blog-in .55s var(--hh-ease-out) .23s backwards}
html.hunter-hud article > .info-box:not(.hh-will-reveal):not(.hh-reveal),html.hunter-hud .nx-wrap > .nx-infobox:not(.hh-will-reveal):not(.hh-reveal){animation:hh-blog-in .55s var(--hh-ease-out) .29s backwards}
/* archive cards above the fold deal in one after another; cards below rise in as they scroll into view */
html.hunter-hud .article-card:not(.hh-will-reveal):not(.hh-reveal){animation:hh-blog-in .6s var(--hh-ease-out) .26s backwards}
html.hunter-hud .article-card.hh-reveal,html.hunter-hud article .hh-reveal,html.hunter-hud .nx-wrap .hh-reveal{animation-fill-mode:backwards}
html.hunter-hud .article-card:not(.hh-reveal):nth-child(2){animation-delay:.32s}
html.hunter-hud .article-card:not(.hh-reveal):nth-child(3){animation-delay:.38s}
html.hunter-hud .article-card:not(.hh-reveal):nth-child(4){animation-delay:.44s}
html.hunter-hud .article-card:not(.hh-reveal):nth-child(5){animation-delay:.5s}
html.hunter-hud .article-card:not(.hh-reveal):nth-child(6){animation-delay:.56s}
html.hunter-hud .article-card:not(.hh-reveal):nth-child(7){animation-delay:.62s}
@container hh-archive (min-width:664px) and (max-width:1007.98px){html.hunter-hud .article-card.hh-reveal:nth-child(odd){animation-delay:70ms}}
@container hh-archive (min-width:1008px){
  html.hunter-hud .article-card.hh-reveal:nth-child(3n){animation-delay:60ms}
  html.hunter-hud .article-card.hh-reveal:nth-child(3n+4){animation-delay:120ms}
}
/* log entries come online as they scroll in: the heading fades up, its node ignites a beat later */
html.hunter-hud article h2.hh-reveal,html.hunter-hud .nx-wrap h2.hh-reveal{animation-name:hh-blog-log;animation-duration:.45s}
html.hunter-hud .nx-wrap h2.hh-reveal > .rank{animation:hh-blog-node .6s var(--hh-ease-out) .1s backwards}
html.hunter-hud article h2.hh-reveal:before{animation:hh-blog-diamond .6s var(--hh-ease-out) .1s backwards}
html.hunter-hud article p:has(> .play-link) + h2.hh-reveal:not(:has(+ p + p > .play-link)):before,html.hunter-hud .nx-wrap h2.nx-mini.hh-reveal:before{animation:hh-blog-fade .5s ease-out .1s backwards}

/* ---------- Article nav + back buttons ---------- */
html.hunter-hud .article-nav{position:relative;padding:24px 0}
html.hunter-hud .article-nav:before{
  content:'';display:block;width:132px;height:7px;margin:0 auto 6px;
  background:repeating-linear-gradient(90deg,var(--hh-orange) 0 13px,transparent 13px 17px);opacity:.6;
}
html.hunter-hud .article-nav .back.hh-btn,html.hunter-hud .nx-back.hh-btn{display:inline-block;padding:11px 22px;font-size:.78rem!important;letter-spacing:.12em!important;margin-top:20px}
html.hunter-hud .nx-back.hh-btn{margin-top:26px}
html.hunter-hud .article-nav .back.hh-btn:focus-visible,html.hunter-hud .nx-back.hh-btn:focus-visible{outline:none;color:#fff!important;box-shadow:inset 0 0 0 2px var(--hh-yellow),inset 0 -14px 22px -14px rgba(255,122,0,.55)!important}

/* ---------- Footers ---------- */
html.hunter-hud footer,html.hunter-hud .site-footer,html.hunter-hud .nx-foot{
  position:relative;border-top:0;color:var(--hh-dim);font-family:var(--hh-font-text);
  background:linear-gradient(90deg,var(--hh-yellow) 0 56px,var(--hh-orange) 56px 130px,rgba(255,122,0,.22) 130px 45%,transparent 80%) top left/100% 1px no-repeat;
}
html.hunter-hud footer:before,html.hunter-hud .site-footer:before,html.hunter-hud .nx-foot:before{
  content:'';display:block;width:132px;height:7px;margin:0 auto 22px;
  background:repeating-linear-gradient(90deg,var(--hh-orange) 0 13px,transparent 13px 17px);opacity:.75;
}
html.hunter-hud footer p,html.hunter-hud .site-footer p,html.hunter-hud .nx-foot p{
  font:600 11px/1.7 var(--hh-font-mono);letter-spacing:.14em;text-transform:uppercase;color:var(--hh-dim);font-variant-numeric:tabular-nums;
}
html.hunter-hud footer a,html.hunter-hud .site-footer a,html.hunter-hud .nx-foot a{
  font-family:var(--hh-font-hud);font-weight:600;font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;color:var(--hh-orange);transition:color .18s,text-shadow .18s;
}
html.hunter-hud footer a:hover,html.hunter-hud .site-footer a:hover,html.hunter-hud .nx-foot a:hover,
html.hunter-hud footer a:focus-visible,html.hunter-hud .site-footer a:focus-visible,html.hunter-hud .nx-foot a:focus-visible{color:var(--hh-yellow);text-shadow:0 0 12px rgba(255,196,0,.6)}

/* ---------- Site-wide radio pill (assets/js/radio-pill.js injects magenta tokens): orange/yellow, chamfered ---------- */
html.hunter-hud #radioPill,html.hunter-hud #radioPanel{
  --rp-disp:var(--hh-font-hud);--rp-txt:var(--hh-ink);--rp-txt2:var(--hh-dim);--rp-txt3:var(--hh-muted);
  --rp-stroke:var(--hh-edge-2);--rp-magenta:var(--hh-orange);--rp-violet:var(--hh-yellow);
}
html.hunter-hud #radioPill{
  border-radius:0;background:linear-gradient(180deg,#1c150c,#0f0b07);backdrop-filter:none;-webkit-backdrop-filter:none;
  clip-path:polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);box-shadow:0 14px 40px rgba(0,0,0,.6);
}
html.hunter-hud #radioPill:hover{border-color:var(--hh-orange)}
html.hunter-hud #radioPill b{font-weight:700;letter-spacing:.2em}
html.hunter-hud #radioPill small{color:var(--hh-yellow);font-family:var(--hh-font-mono);font-size:.68rem}
html.hunter-hud #radioPill .eq i{box-shadow:0 0 6px rgba(255,122,0,.55)}
html.hunter-hud #radioPanel{border-radius:0;background:linear-gradient(165deg,#19120a,#0a0807 72%);box-shadow:0 30px 70px rgba(0,0,0,.7),0 0 44px rgba(255,122,0,.12)}
html.hunter-hud #radioPanel .rhead .livechip{color:#ffe6c2;background:rgba(255,122,0,.14);border-color:rgba(255,122,0,.4);border-radius:0}
html.hunter-hud #radioPanel .rbtn{border-radius:0}
html.hunter-hud #radioPanel .rbtn.main{color:#170900;background:linear-gradient(180deg,var(--hh-yellow),var(--hh-orange));box-shadow:0 10px 26px rgba(255,122,0,.35)}
html.hunter-hud #radioPanel .rbtn.main:hover{color:#000}
html.hunter-hud #radioPanel input[type=range]::-webkit-slider-thumb{box-shadow:0 0 10px rgba(255,122,0,.7)}

/* ---------- Site-wide "Live Now" card (assets/js/live-now-global.js → og-live-v2.js; magenta/violet by default).
   Hidden while no stream is up — recolour only, NEVER hide. The widget injects its own <style> late, so every rule
   carries html.hunter-hud on top of its own selector. Red = live. ---------- */
html.hunter-hud #ogliveV2{font-family:var(--hh-font-hud)}
html.hunter-hud #ogliveV2-card{
  border-radius:0;background:linear-gradient(165deg,#19120a,#0a0807 72%);border:1px solid var(--hh-edge-hot);
  box-shadow:0 24px 56px rgba(0,0,0,.62),0 0 0 1px rgba(255,122,0,.08),0 0 28px rgba(255,122,0,.12);
  clip-path:polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
}
html.hunter-hud #ogliveV2-pill{
  border-radius:0;background:linear-gradient(180deg,#1c150c,#0f0b07);border:1px solid var(--hh-edge-hot);color:var(--hh-ink);
  clip-path:polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
  letter-spacing:.08em;text-transform:uppercase;font-weight:700;
}
html.hunter-hud #ogliveV2-pill:hover{box-shadow:0 14px 36px rgba(255,122,0,.35)}
html.hunter-hud #ogliveV2-pill .dot,html.hunter-hud .ogliveV2-badge b{border-radius:0;transform:rotate(45deg);background:var(--hh-red);box-shadow:0 0 10px var(--hh-red)}
html.hunter-hud .ogliveV2-badge{border-radius:0;border-color:rgba(255,59,36,.75);font-family:var(--hh-font-mono);letter-spacing:.14em}
html.hunter-hud #ogliveV2-card .cnt,html.hunter-hud #ogliveV2-min,html.hunter-hud .ogliveV2-arw,html.hunter-hud .ogliveV2-chip-cov,html.hunter-hud .ogliveV2-fbtn{border-radius:0}
html.hunter-hud #ogliveV2-card .cnt{font-family:var(--hh-font-mono);letter-spacing:.08em;font-variant-numeric:tabular-nums}
html.hunter-hud #ogliveV2-min{border-color:var(--hh-edge-2)}
html.hunter-hud #ogliveV2-min:hover{background:rgba(255,122,0,.35)}
html.hunter-hud .ogliveV2-feat{background:linear-gradient(135deg,#1a1209,#0a0807 60%,#160f08)}
html.hunter-hud .ogliveV2-feat video{background:#070503}
html.hunter-hud .ogliveV2-feat-scrim{background:linear-gradient(transparent,rgba(12,8,5,.55) 55%,rgba(8,5,3,.95))}
html.hunter-hud .ogliveV2-av{background:linear-gradient(135deg,var(--hh-yellow),var(--hh-orange),var(--hh-ember));box-shadow:0 0 14px rgba(255,122,0,.45)}
html.hunter-hud .ogliveV2-av img{border-color:#0a0807;background:#140f0a}
html.hunter-hud .ogliveV2-fbtn{
  font-family:var(--hh-font-hud);letter-spacing:.08em;text-transform:uppercase;color:#170900;
  background:linear-gradient(180deg,var(--hh-yellow),var(--hh-orange));box-shadow:0 6px 16px rgba(255,122,0,.4);
  clip-path:polygon(5px 0,100% 0,100% calc(100% - 5px),calc(100% - 5px) 100%,0 100%,0 5px);
}
html.hunter-hud .ogliveV2-fgm,html.hunter-hud .ogliveV2-slbl,html.hunter-hud .ogliveV2-feat-cover[data-name]:before{font-family:var(--hh-font-hud)}
html.hunter-hud .ogliveV2-fgm{letter-spacing:.03em;text-transform:uppercase;color:var(--hh-ink)}
html.hunter-hud .ogliveV2-feat-cover[data-name]:before{color:var(--hh-ink-2);text-transform:uppercase;letter-spacing:.04em}
html.hunter-hud .ogliveV2-slbl{color:var(--hh-muted);letter-spacing:.2em}
html.hunter-hud .ogliveV2-slbl:before{content:'// ';color:var(--hh-orange)}
html.hunter-hud .ogliveV2-fwh{color:var(--hh-dim)}
html.hunter-hud .ogliveV2-strip-wrap{background:#0c0a07;border-top-color:var(--hh-edge)}
html.hunter-hud .ogliveV2-chip-cov{border-color:var(--hh-edge-2);background-image:linear-gradient(135deg,#1e150a,#0c0a07)}
html.hunter-hud .ogliveV2-chip:hover .ogliveV2-chip-cov{border-color:var(--hh-orange)}
html.hunter-hud .ogliveV2-chip.active .ogliveV2-chip-cov{border-color:var(--hh-orange);box-shadow:0 0 12px rgba(255,122,0,.4)}
html.hunter-hud .ogliveV2-chip-dot{border-radius:0;transform:rotate(45deg);background:var(--hh-red);box-shadow:0 0 6px var(--hh-red)}
html.hunter-hud .ogliveV2-chip-dot.room{background:var(--hh-yellow);box-shadow:0 0 6px var(--hh-yellow)}
html.hunter-hud .ogliveV2-chip-avatar{border-color:#0a0807!important}
html.hunter-hud .ogliveV2-chip-nm{color:var(--hh-dim);font-family:var(--hh-font-hud);font-size:10px;letter-spacing:.04em}
html.hunter-hud .ogliveV2-chip.active .ogliveV2-chip-nm{color:var(--hh-yellow)}
html.hunter-hud .ogliveV2-arw{border-color:var(--hh-edge-hot);background:rgba(12,8,5,.55);color:var(--hh-ink)}
html.hunter-hud .ogliveV2-arw:hover{background:rgba(255,122,0,.5)}

@media(prefers-reduced-motion:reduce){
  html.hunter-hud article.hh-plate:after,html.hunter-hud .nx-wrap.hh-plate:after{display:none}
}

