/* Mainely Code — JUST SAY NO TO MYSTERY TOKEN BURN campaign, 2026-09-07 */
.jsn-home-feature,
.jsn-campaign-hero,
.jsn-arcade,
.jsn-receipt-section,
.jsn-video-section,
.jsn-serious-section {
  --jsn-red: #ff595f;
  --jsn-red-soft: rgba(255, 89, 95, .12);
  --jsn-cyan: #24d7ff;
  --jsn-teal: #1ce2bb;
  --jsn-ink: #06151d;
  --jsn-card: #091c28;
  --jsn-card-2: #0d2635;
  --jsn-line: rgba(91, 218, 255, .28);
  --jsn-text: #f5fbff;
  --jsn-muted: #a9c0cd;
}

.jsn-home-feature {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(36, 215, 255, .12), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(255, 89, 95, .09), transparent 28%),
    linear-gradient(180deg, #071a25, #05131d 70%);
  border-block: 1px solid rgba(83, 211, 255, .16);
}
.jsn-home-feature::before {
  content: "NO  NO  NO  NO  NO  NO  NO  NO";
  position: absolute;
  inset: auto -5vw 1.5rem;
  white-space: nowrap;
  font: 900 clamp(4rem, 11vw, 11rem)/.8 system-ui, sans-serif;
  letter-spacing: .02em;
  color: rgba(255, 89, 95, .028);
  transform: rotate(-2deg);
  pointer-events: none;
}
.jsn-home-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.jsn-home-poster {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(36, 215, 255, .42);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34), 0 0 60px rgba(36, 215, 255, .08);
  transform: rotate(-.8deg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.jsn-home-poster:hover,
.jsn-home-poster:focus-visible {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .4), 0 0 70px rgba(36, 215, 255, .14);
}
.jsn-home-poster img { display: block; width: 100%; height: auto; }
.jsn-home-copy h2 { max-width: 12ch; margin-bottom: 1.25rem; }
.jsn-home-copy h2 strong { color: var(--jsn-red); }
.jsn-home-copy > p { max-width: 58ch; }
.jsn-home-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--jsn-teal);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.jsn-home-kicker::before { content: ""; width: 1.6rem; height: 2px; background: currentColor; }
.jsn-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.5rem 0 1.9rem;
  padding: 0;
  list-style: none;
}
.jsn-proof-chips li {
  padding: .48rem .72rem;
  border: 1px solid rgba(36, 215, 255, .24);
  border-radius: 999px;
  background: rgba(8, 29, 42, .74);
  color: #dff8ff;
  font-size: .82rem;
  font-weight: 650;
}

.jsn-campaign-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.6rem, 7vw, 7rem) 0 clamp(4rem, 8vw, 7.5rem);
  background:
    radial-gradient(circle at 18% 10%, rgba(36, 215, 255, .13), transparent 32%),
    radial-gradient(circle at 88% 62%, rgba(28, 226, 187, .08), transparent 27%),
    linear-gradient(180deg, #061925 0%, #04131d 100%);
}
.jsn-campaign-hero::after {
  content: "?   ?   ?   ?   ?   ?   ?   ?   ?   ?";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1rem;
  overflow: hidden;
  white-space: nowrap;
  color: rgba(36, 215, 255, .085);
  font: 800 clamp(3rem, 9vw, 9rem)/1 system-ui, sans-serif;
  letter-spacing: .08em;
  pointer-events: none;
}
.jsn-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.jsn-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.4rem 0 0;
}
.jsn-status-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(36, 215, 255, .26);
  background: rgba(7, 28, 41, .72);
  color: #cdebf4;
  font-size: .78rem;
}
.jsn-status-pill::before {
  content: "";
  width: .46rem;
  height: .46rem;
  border-radius: 50%;
  background: var(--jsn-teal);
  box-shadow: 0 0 14px rgba(28, 226, 187, .5);
}
.jsn-hero-title {
  max-width: 11ch;
  margin: .6rem 0 1.35rem;
  font-size: clamp(3.1rem, 7vw, 7rem);
  line-height: .92;
  letter-spacing: -.055em;
}
.jsn-hero-title .no { color: var(--jsn-red); }
.jsn-hero-lead { max-width: 63ch; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: #cfe0e9; }
.jsn-poster-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(36, 215, 255, .35);
  box-shadow: 0 34px 90px rgba(0,0,0,.42), 0 0 80px rgba(36,215,255,.07);
}
.jsn-poster-frame img { display:block; width:100%; height:auto; }
.jsn-poster-stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .48rem .7rem;
  border: 2px solid var(--jsn-red);
  color: var(--jsn-red);
  background: rgba(6, 21, 29, .87);
  border-radius: 7px;
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.jsn-arcade {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background:
    linear-gradient(rgba(36,215,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,215,255,.018) 1px, transparent 1px),
    #05131d;
  background-size: 34px 34px;
}
.jsn-arcade-head {
  display: grid;
  grid-template-columns: 1fr minmax(250px, .55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}
.jsn-arcade-score {
  justify-self: end;
  width: min(100%, 360px);
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(28,226,187,.25);
  background: rgba(7, 29, 42, .88);
}
.jsn-score-line { display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.jsn-score-line strong { font-size: 1.55rem; color: var(--jsn-teal); }
.jsn-score-level { margin-top:.45rem; color: var(--jsn-muted); font-size:.85rem; }
.jsn-score-bar { height: 7px; margin-top:.7rem; border-radius:999px; background:#0d2635; overflow:hidden; }
.jsn-score-bar > span { display:block; width:0; height:100%; background:linear-gradient(90deg,var(--jsn-cyan),var(--jsn-teal)); transition: width .25s ease; }
.jsn-score-reset {
  margin-top:.7rem; padding:0; border:0; background:none; color:#91b4c3; font:inherit; font-size:.78rem; text-decoration:underline; text-underline-offset:3px; cursor:pointer;
}
.jsn-game-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:1.25rem; }
.jsn-game-card {
  position:relative;
  min-height: 440px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(75, 200, 243, .2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(11,35,49,.96), rgba(7,26,38,.98));
  box-shadow: 0 18px 55px rgba(0,0,0,.2);
  overflow:hidden;
}
.jsn-game-card::after {
  content: attr(data-game-number);
  position:absolute;
  top:.7rem; right:1rem;
  color:rgba(103,216,255,.08);
  font:900 4.6rem/1 system-ui,sans-serif;
}
.jsn-game-card h3 { position:relative; z-index:1; margin:.2rem 0 .55rem; font-size:clamp(1.45rem,3vw,2rem); }
.jsn-game-card > p { position:relative; z-index:1; max-width:58ch; color:#abc3cf; }
.jsn-game-label { position:relative; z-index:1; color:var(--jsn-teal); font-size:.72rem; font-weight:850; letter-spacing:.13em; text-transform:uppercase; }
.jsn-game-actions { display:flex; flex-wrap:wrap; gap:.65rem; margin-top:1.15rem; }
.jsn-game-button {
  min-height: 42px;
  padding: .7rem .9rem;
  border: 1px solid rgba(55, 207, 255, .35);
  border-radius: 10px;
  background: #0c2838;
  color:#eafaff;
  font:700 .88rem/1.15 system-ui,sans-serif;
  cursor:pointer;
  transition:transform .15s ease, border-color .15s ease, background .15s ease;
}
.jsn-game-button:hover:not(:disabled), .jsn-game-button:focus-visible:not(:disabled) { transform:translateY(-1px); border-color:var(--jsn-cyan); background:#103349; }
.jsn-game-button:disabled { opacity:.46; cursor:not-allowed; }
.jsn-game-button.primary { border-color:rgba(28,226,187,.5); background:rgba(13,70,67,.72); }
.jsn-game-button.danger { border-color:rgba(255,89,95,.55); background:rgba(93,27,33,.64); }
.jsn-game-result { min-height: 2.8rem; margin-top:1rem; padding:.75rem .85rem; border-left:3px solid rgba(36,215,255,.5); background:rgba(4,17,25,.56); color:#d4eaf2; font-size:.9rem; }
.jsn-game-result.good { border-left-color:var(--jsn-teal); color:#dbfff7; }
.jsn-game-result.bad { border-left-color:var(--jsn-red); color:#ffdadd; }

.jsn-burn-readout { display:flex; align-items:baseline; justify-content:space-between; gap:1rem; margin-top:1.25rem; }
.jsn-burn-number { font:900 clamp(2.8rem,7vw,5rem)/1 system-ui,sans-serif; letter-spacing:-.06em; color:#fff; }
.jsn-burn-number small { font-size:.22em; letter-spacing:.08em; color:#91adba; text-transform:uppercase; }
.jsn-meter { height:25px; margin-top:.85rem; overflow:hidden; border:1px solid rgba(255,255,255,.13); border-radius:999px; background:#06121a; }
.jsn-meter-fill { width:0; height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--jsn-teal) 0%, #ffcc4a 55%, var(--jsn-red) 100%); transition:width .08s linear; }
.jsn-meter-zones { display:flex; justify-content:space-between; margin-top:.38rem; color:#7896a4; font-size:.68rem; text-transform:uppercase; letter-spacing:.08em; }

.jsn-evidence-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.65rem; margin-top:1rem; }
.jsn-evidence-card { text-align:left; min-height:88px; padding:.85rem; border:1px solid rgba(103,197,231,.22); border-radius:11px; background:rgba(5,20,29,.72); color:#d9eaf1; font:650 .83rem/1.35 system-ui,sans-serif; cursor:pointer; }
.jsn-evidence-card:hover, .jsn-evidence-card:focus-visible { border-color:rgba(36,215,255,.7); }
.jsn-evidence-card.correct { border-color:rgba(28,226,187,.75); background:rgba(18,87,71,.25); }
.jsn-evidence-card.wrong { border-color:rgba(255,89,95,.75); background:rgba(116,27,36,.24); }

.jsn-receipt-order { display:flex; flex-wrap:wrap; gap:.55rem; margin:1rem 0; }
.jsn-receipt-pick { min-width:94px; }
.jsn-receipt-stack { display:grid; gap:.45rem; min-height:142px; padding:.85rem; border:1px dashed rgba(36,215,255,.3); border-radius:12px; background:rgba(4,18,27,.6); }
.jsn-receipt-row { display:flex; align-items:center; gap:.7rem; padding:.55rem .7rem; border-radius:8px; background:rgba(14,48,65,.8); color:#dff8ff; font-size:.84rem; }
.jsn-receipt-row span { display:grid; place-items:center; width:1.45rem; height:1.45rem; border-radius:50%; background:rgba(28,226,187,.16); color:var(--jsn-teal); font-size:.7rem; font-weight:900; }

.jsn-whack-meta { display:flex; justify-content:space-between; gap:1rem; margin-top:1rem; color:#a9c0cd; font-size:.82rem; }
.jsn-whack-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:.55rem; margin-top:.75rem; }
.jsn-whack-cell { min-height:72px; border:1px solid rgba(94,191,225,.16); border-radius:10px; background:#071b27; color:#5f7b89; font:800 .75rem/1.15 system-ui,sans-serif; cursor:default; }
.jsn-whack-cell.active { cursor:pointer; color:#f7fbfd; border-color:rgba(36,215,255,.62); background:#0e3448; animation: jsn-pop .18s ease-out; }
.jsn-whack-cell.active.bad-target { border-color:rgba(255,89,95,.75); background:rgba(102,30,37,.68); }
.jsn-whack-cell.active.safe-target { border-color:rgba(28,226,187,.65); background:rgba(20,77,66,.58); }
@keyframes jsn-pop { from { transform:scale(.92); opacity:.55; } to { transform:scale(1); opacity:1; } }

.jsn-receipt-section,
.jsn-video-section,
.jsn-serious-section { padding:clamp(4rem,8vw,7rem) 0; }
.jsn-receipt-section { background:#071923; border-top:1px solid rgba(36,215,255,.13); }
.jsn-receipt-head { display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); gap:2rem; align-items:start; }
.jsn-receipt-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.75rem; margin-top:.3rem; }
.jsn-receipt-rule { display:flex; gap:.75rem; padding:1rem; border:1px solid rgba(52,198,236,.18); border-radius:12px; background:rgba(8,31,44,.78); }
.jsn-receipt-rule strong { display:block; margin-bottom:.18rem; color:#f0fbff; }
.jsn-receipt-rule span { color:var(--jsn-teal); font-weight:900; }
.jsn-receipt-rule p { margin:0; color:#94adba; font-size:.84rem; }
.jsn-video-section { background:#04121a; }
.jsn-video-grid { display:grid; grid-template-columns:minmax(0,.76fr) minmax(0,1.24fr); gap:clamp(2rem,5vw,4.5rem); align-items:center; }
.jsn-video-frame { border-radius:18px; overflow:hidden; border:1px solid rgba(36,215,255,.25); box-shadow:0 24px 65px rgba(0,0,0,.3); }
.jsn-video-frame video { display:block; width:100%; height:auto; background:#000; }
.jsn-serious-section { background:linear-gradient(180deg,#071b27,#06151d); }
.jsn-serious-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,5rem); align-items:center; }
.jsn-serious-card { padding:clamp(1.4rem,3vw,2.1rem); border-radius:18px; border:1px solid rgba(28,226,187,.24); background:linear-gradient(140deg,rgba(11,43,55,.96),rgba(7,28,40,.96)); }
.jsn-serious-card h3 { margin:.2rem 0 .85rem; }
.jsn-serious-card ul { margin:0; padding-left:1.2rem; color:#b4cbd5; }
.jsn-serious-card li+li { margin-top:.45rem; }
.jsn-noscript { padding:.75rem 1rem; margin-bottom:1rem; border-left:3px solid #ffcc4a; background:rgba(255,204,74,.08); color:#eddba4; }

@media (max-width: 900px) {
  .jsn-home-grid, .jsn-hero-grid, .jsn-arcade-head, .jsn-receipt-head, .jsn-video-grid, .jsn-serious-grid { grid-template-columns:1fr; }
  .jsn-home-poster { transform:none; }
  .jsn-arcade-score { justify-self:stretch; }
  .jsn-game-grid { grid-template-columns:1fr; }
  .jsn-game-card { min-height:0; }
}
@media (max-width: 620px) {
  .jsn-evidence-grid, .jsn-receipt-list { grid-template-columns:1fr; }
  .jsn-whack-cell { min-height:64px; font-size:.68rem; }
  .jsn-hero-title { font-size:clamp(3rem,17vw,5.1rem); }
  .jsn-poster-stamp { font-size:.62rem; }
}
@media (prefers-reduced-motion: reduce) {
  .jsn-home-poster, .jsn-game-button, .jsn-score-bar > span { transition:none !important; }
  .jsn-whack-cell.active { animation:none; }
}

/* --------------------------------------------------------------------------
   Anti-Mystery Arcade v2 — cabinet polish / desktop + tablet + mobile
   -------------------------------------------------------------------------- */
.jsn-arcade {
  --jsn-yellow:#ffd43b;
  --jsn-pink:#ff3b8d;
  --jsn-violet:#9c6cff;
  --jsn-green:#5df48c;
  --jsn-screen:#031017;
  --jsn-bezel:#071b27;
  --jsn-shadow:0 32px 110px rgba(0,0,0,.48);
  position:relative;
  isolation:isolate;
  overflow:clip;
  padding:clamp(4.75rem,8vw,8.5rem) 0 clamp(5rem,9vw,9rem);
  background:
    radial-gradient(circle at 50% -10%, rgba(36,215,255,.12), transparent 37%),
    linear-gradient(rgba(36,215,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,215,255,.018) 1px, transparent 1px),
    #04131d;
  background-size:auto,34px 34px,34px 34px,auto;
}
.jsn-arcade::before {
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:linear-gradient(180deg,transparent 0 96%,rgba(36,215,255,.05));
  opacity:.65;
}
.jsn-arcade-glow { position:absolute; border-radius:50%; filter:blur(90px); opacity:.12; pointer-events:none; z-index:-1; }
.jsn-arcade-glow-a { width:34rem;height:34rem;left:-12rem;top:16rem;background:var(--jsn-pink); }
.jsn-arcade-glow-b { width:38rem;height:38rem;right:-17rem;top:35rem;background:var(--jsn-cyan); }
.jsn-attract-strip {
  display:grid; grid-template-columns:auto 1fr auto; gap:.8rem; align-items:center;
  max-width:680px; margin-top:1.45rem; padding:.68rem .82rem;
  border:1px solid rgba(36,215,255,.22); border-radius:10px;
  background:linear-gradient(90deg,rgba(255,59,141,.08),rgba(36,215,255,.06),rgba(255,212,59,.06));
  color:#bdd5df; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase;
}
.jsn-attract-strip b { color:#fff; text-align:center; letter-spacing:.12em; text-shadow:0 0 16px rgba(36,215,255,.22); }
.jsn-attract-strip span:first-child { color:var(--jsn-pink); font-weight:900; animation:jsn-blink 1.25s steps(2,end) infinite; }
.jsn-attract-strip span:last-child { color:var(--jsn-yellow); font-weight:800; }
@keyframes jsn-blink { 50% { opacity:.28; } }

.jsn-arcade-head { grid-template-columns:minmax(0,1fr) minmax(300px,.52fr); align-items:stretch; margin-bottom:2rem; }
.jsn-arcade-head h2 { margin-bottom:.8rem; }
.jsn-arcade-head > div > p { max-width:68ch; }
.jsn-arcade-facts { display:flex; flex-wrap:wrap; gap:.45rem; margin-top:1.25rem; }
.jsn-arcade-facts span { padding:.42rem .62rem; border:1px solid rgba(36,215,255,.18); border-radius:999px; background:rgba(7,29,42,.64); color:#a9c7d4; font-size:.75rem; font-weight:750; }
.jsn-daily-card {
  position:relative; overflow:hidden; align-self:end;
  padding:1.25rem 1.35rem; border:1px solid rgba(255,212,59,.28); border-radius:18px;
  background:linear-gradient(145deg,rgba(36,31,12,.72),rgba(9,29,41,.94) 58%);
  box-shadow:0 14px 48px rgba(0,0,0,.2);
}
.jsn-daily-card::after { content:"DAILY"; position:absolute; right:-.2rem; top:.1rem; font:900 4.1rem/1 system-ui,sans-serif; color:rgba(255,212,59,.035); transform:rotate(-7deg); }
.jsn-daily-kicker { display:block; color:var(--jsn-yellow); font-size:.67rem; font-weight:950; letter-spacing:.17em; }
.jsn-daily-card strong { display:block; position:relative; z-index:1; margin:.4rem 0 .25rem; color:#fff; font-size:1.08rem; }
.jsn-daily-card p { position:relative; z-index:1; margin:0; color:#9eb8c4; font-size:.82rem; }
.jsn-daily-foot { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-top:.85rem; padding-top:.75rem; border-top:1px solid rgba(255,255,255,.08); color:#abc2cd; font-size:.74rem; }
.jsn-daily-foot b { color:var(--jsn-yellow); }
.jsn-daily-foot button { border:0; padding:.45rem .66rem; border-radius:8px; background:rgba(255,212,59,.11); color:#ffe98e; font:800 .73rem system-ui,sans-serif; cursor:pointer; }

.jsn-arcade-shell { position:relative; border:1px solid rgba(45,198,241,.27); border-radius:26px; background:rgba(3,15,23,.78); box-shadow:var(--jsn-shadow), inset 0 1px rgba(255,255,255,.035); overflow:visible; }
.jsn-arcade-hud {
  position:sticky; top:78px; z-index:30;
  display:grid; grid-template-columns:minmax(185px,.8fr) minmax(330px,1.35fr) auto; gap:1rem; align-items:center;
  min-height:76px; padding:.8rem 1rem .95rem;
  border-bottom:1px solid rgba(36,215,255,.18); border-radius:25px 25px 0 0;
  background:rgba(5,20,29,.94); backdrop-filter:blur(14px); box-shadow:0 9px 30px rgba(0,0,0,.24);
}
.jsn-hud-brand { display:grid; grid-template-columns:auto 1fr; column-gap:.55rem; align-items:center; }
.jsn-hud-brand strong { font-size:.76rem; letter-spacing:.13em; color:#ecfbff; }
.jsn-hud-brand small { grid-column:2; color:#7395a4; font-size:.58rem; letter-spacing:.12em; }
.jsn-hud-light { grid-row:1/3; width:.72rem; height:.72rem; border-radius:50%; background:var(--jsn-teal); box-shadow:0 0 20px rgba(28,226,187,.75); animation:jsn-pulse 1.9s ease-in-out infinite; }
@keyframes jsn-pulse { 50% { opacity:.45; box-shadow:0 0 8px rgba(28,226,187,.4); } }
.jsn-hud-stats { display:grid; grid-template-columns:.78fr 1.45fr .68fr; gap:.55rem; }
.jsn-hud-stats > div { min-width:0; padding:.5rem .68rem; border:1px solid rgba(36,215,255,.12); border-radius:10px; background:rgba(11,39,54,.45); }
.jsn-hud-stats span { display:block; margin-bottom:.12rem; color:#7897a6; font-size:.57rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.jsn-hud-stats strong { display:block; color:var(--jsn-teal); font-size:1.05rem; line-height:1.08; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.jsn-hud-stats strong small { color:#6f8d9b; font-size:.58em; }
.jsn-hud-stats .jsn-rank-text { color:#e8f7fb; font-size:.78rem; }
.jsn-hud-actions { display:flex; gap:.45rem; }
.jsn-icon-button { display:inline-flex; align-items:center; gap:.4rem; min-height:38px; padding:.55rem .64rem; border:1px solid rgba(36,215,255,.17); border-radius:9px; background:#0a2635; color:#cfeaf4; font:750 .7rem system-ui,sans-serif; cursor:pointer; }
.jsn-icon-button span { color:var(--jsn-cyan); font-size:1rem; }
.jsn-icon-button[aria-pressed="true"] { border-color:rgba(28,226,187,.5); color:#dcfff8; background:rgba(22,76,68,.55); }
.jsn-hud-progress { position:absolute; left:0; right:0; bottom:0; height:3px; overflow:hidden; background:rgba(255,255,255,.035); }
.jsn-hud-progress span { display:block; width:0; height:100%; background:linear-gradient(90deg,var(--jsn-pink),var(--jsn-yellow),var(--jsn-teal),var(--jsn-cyan)); box-shadow:0 0 14px rgba(36,215,255,.5); transition:width .35s cubic-bezier(.2,.8,.2,1); }

.jsn-cabinet { display:grid; grid-template-columns:224px minmax(0,1fr); min-height:690px; }
.jsn-game-select { display:flex; flex-direction:column; gap:.45rem; padding:1rem .8rem; border-right:1px solid rgba(36,215,255,.12); background:linear-gradient(180deg,rgba(6,25,36,.96),rgba(4,17,25,.96)); }
.jsn-game-select button {
  position:relative; display:grid; grid-template-columns:2rem 1fr auto; grid-template-rows:auto auto; column-gap:.62rem; align-items:center;
  width:100%; min-height:66px; padding:.72rem .62rem; text-align:left;
  border:1px solid transparent; border-radius:12px; background:transparent; color:#c8dce5; cursor:pointer;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}
.jsn-game-select button > span { grid-row:1/3; display:grid; place-items:center; width:1.8rem;height:1.8rem;border-radius:7px;background:#0d3042;color:#6edfff;font:900 .66rem system-ui,sans-serif; }
.jsn-game-select button b { font-size:.78rem; line-height:1.12; }
.jsn-game-select button small { grid-column:2; color:#648493; font-size:.63rem; }
.jsn-game-select button i { grid-column:3; grid-row:1/3; width:.74rem;height:.74rem;border:1px solid #34566a;border-radius:50%; }
.jsn-game-select button.is-cleared i { border-color:var(--jsn-teal); background:var(--jsn-teal); box-shadow:0 0 14px rgba(28,226,187,.4); }
.jsn-game-select button.is-cleared i::after { content:"✓"; display:grid; place-items:center; width:100%;height:100%; color:#04201c; font:900 .55rem system-ui,sans-serif; }
.jsn-game-select button.is-active { border-color:rgba(36,215,255,.32); background:linear-gradient(90deg,rgba(36,215,255,.12),rgba(36,215,255,.025)); color:#fff; transform:translateX(2px); }
.jsn-game-select button.is-active > span { background:var(--jsn-cyan); color:#031017; box-shadow:0 0 18px rgba(36,215,255,.34); }

.jsn-machine { min-width:0; padding:1rem; background:linear-gradient(145deg,#071d2a,#04141e 64%,#071a25); }
.jsn-machine-top,.jsn-machine-bottom { display:grid; grid-template-columns:1fr auto 1fr; gap:1rem; align-items:center; color:#6f93a4; font-size:.6rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.jsn-machine-top { padding:.3rem .5rem .8rem; }
.jsn-machine-top strong { color:var(--jsn-yellow); font-size:.76rem; text-align:center; text-shadow:0 0 15px rgba(255,212,59,.22); }
.jsn-machine-top span:last-child,.jsn-machine-bottom span:last-child { text-align:right; }
.jsn-machine-bottom { padding:.8rem .5rem .2rem; }
.jsn-machine-dots { color:rgba(36,215,255,.42); letter-spacing:.35em; text-align:center !important; }
.jsn-machine-screen { position:relative; min-height:560px; padding:clamp(1.05rem,2.6vw,2rem); border:1px solid rgba(36,215,255,.24); border-radius:18px; background:
  radial-gradient(circle at 80% 0%,rgba(36,215,255,.07),transparent 28%),
  linear-gradient(180deg,#061a25,#04131c); box-shadow:inset 0 0 80px rgba(0,0,0,.25),0 0 34px rgba(36,215,255,.05); overflow:hidden; }
.jsn-screen-scanlines { position:absolute; inset:0; pointer-events:none; opacity:.25; mix-blend-mode:screen; background:repeating-linear-gradient(180deg,transparent 0 3px,rgba(127,228,255,.028) 3px 4px); }
.jsn-game-panel { position:relative; z-index:2; animation:jsn-panel-in .28s cubic-bezier(.2,.8,.2,1); }
.jsn-game-panel[hidden] { display:none !important; }
@keyframes jsn-panel-in { from { opacity:0; transform:translateY(8px) scale(.995); } to { opacity:1; transform:none; } }
.jsn-panel-heading { display:grid; grid-template-columns:1fr auto; gap:1rem; align-items:start; margin-bottom:1.15rem; }
.jsn-panel-heading h3 { margin:.15rem 0 .35rem; font-size:clamp(1.85rem,4.2vw,3.25rem); line-height:.95; letter-spacing:-.035em; }
.jsn-panel-heading p { max-width:62ch; margin:0; color:#9fb8c4; }
.jsn-best-box { min-width:72px; padding:.6rem .65rem; text-align:center; border:1px solid rgba(255,212,59,.2); border-radius:10px; background:rgba(255,212,59,.055); }
.jsn-best-box span { display:block; color:#856f30; font-size:.56rem; letter-spacing:.12em; text-transform:uppercase; }
.jsn-best-box strong { display:block; color:var(--jsn-yellow); font-size:1.25rem; }
.jsn-big-play { min-width:180px; min-height:48px; letter-spacing:.04em; }
.jsn-game-result { border-radius:8px; }
.jsn-panel-foot { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-top:1.1rem; padding-top:.85rem; border-top:1px solid rgba(36,215,255,.1); color:#6e8b99; font-size:.71rem; }
.jsn-panel-foot button { border:0;background:none;color:#7fdfff;font:800 .72rem system-ui,sans-serif;cursor:pointer; }

/* Game 01 */
.jsn-burn-stage { margin-top:.8rem; padding:1rem; border:1px solid rgba(36,215,255,.11); border-radius:13px; background:rgba(2,12,18,.56); }
.jsn-burn-number { color:#fff; text-shadow:0 0 24px rgba(36,215,255,.08); }
.jsn-regret-label { color:#7f9aa7; font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.jsn-meter { position:relative; height:30px; }
.jsn-perfect-zone { position:absolute; top:0; bottom:0; left:14%; width:12%; border-left:2px solid rgba(28,226,187,.8); border-right:2px solid rgba(28,226,187,.8); background:rgba(28,226,187,.12); box-shadow:inset 0 0 16px rgba(28,226,187,.08); transition:left .22s ease; }
.jsn-reaction-tip { margin-top:.8rem; color:#698996; font-size:.73rem; }

/* Game 02 */
.jsn-proof-hunt-head,.jsn-scope-stats,.jsn-runner-hud { display:flex; flex-wrap:wrap; gap:.55rem; margin:.75rem 0; }
.jsn-proof-hunt-head span,.jsn-scope-stats span,.jsn-runner-hud span { padding:.38rem .55rem;border:1px solid rgba(36,215,255,.14);border-radius:7px;background:rgba(9,38,52,.55);color:#86a7b5;font-size:.7rem; }
.jsn-proof-hunt-head b,.jsn-scope-stats b,.jsn-runner-hud b { color:#e8faff; }
.jsn-evidence-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:.58rem; }
.jsn-evidence-card { position:relative; overflow:hidden; min-height:92px; transition:transform .15s ease,border-color .15s ease,background .15s ease; }
.jsn-evidence-card::after { content:"?"; position:absolute; right:.55rem; bottom:-.1rem; font:900 2.7rem/1 system-ui,sans-serif; color:rgba(118,196,225,.05); }
.jsn-evidence-card.correct::after { content:"✓"; color:rgba(28,226,187,.18); }
.jsn-evidence-card.wrong::after { content:"NO"; font-size:1.55rem; color:rgba(255,89,95,.16); }

/* Game 03 */
.jsn-receipt-workbench { display:grid; grid-template-columns:.78fr 1.22fr; gap:.85rem; }
.jsn-workbench-label { display:block; margin-bottom:.45rem; color:#6e93a2; font-size:.63rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.jsn-receipt-order { align-content:flex-start; margin:0; }
.jsn-receipt-pick { flex:1 1 42%; min-width:110px; }
.jsn-receipt-stack { min-height:255px; }
.jsn-receipt-row { min-height:34px; border:1px solid rgba(36,215,255,.08); }
.jsn-receipt-row b { letter-spacing:.02em; }

/* Game 04 */
.jsn-whack-meta { justify-content:flex-start; }
.jsn-whack-meta span { padding:.38rem .56rem;border:1px solid rgba(36,215,255,.13);border-radius:7px;background:rgba(9,38,52,.55); }
.jsn-whack-grid { grid-template-columns:repeat(4,1fr); gap:.5rem; }
.jsn-whack-cell { position:relative; min-height:86px; overflow:hidden; font-size:.69rem; transition:transform .1s ease,filter .1s ease; }
.jsn-whack-cell.active { animation:jsn-pop .14s ease-out; box-shadow:inset 0 0 24px rgba(36,215,255,.05); }
.jsn-whack-cell.active::after { content:""; position:absolute; inset:auto 16% 8px; height:3px; border-radius:99px; background:currentColor; opacity:.22; }
.jsn-whack-cell:active:not(:disabled) { transform:scale(.94); }

/* Game 05 */
.jsn-scope-card { min-height:190px; display:grid; align-content:center; gap:.65rem; margin:1rem 0; padding:clamp(1.2rem,4vw,2rem); border:1px solid rgba(36,215,255,.19);border-radius:16px;background:radial-gradient(circle at 100% 0%,rgba(36,215,255,.07),transparent 38%),rgba(3,15,23,.72); }
.jsn-scope-intent { color:var(--jsn-yellow); font-size:.66rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.jsn-scope-card code { overflow-wrap:anywhere; color:#effbff; font:800 clamp(1.05rem,2.4vw,1.5rem)/1.25 ui-monospace,SFMono-Regular,Consolas,monospace; }
.jsn-scope-card p { margin:0;color:#839fad; }
.jsn-scope-buttons { display:grid;grid-template-columns:1fr 1fr;gap:.7rem; }
.jsn-scope-buttons button { min-height:58px;border-radius:11px;font:950 .84rem system-ui,sans-serif;letter-spacing:.07em;cursor:pointer; }
.jsn-scope-deny { border:1px solid rgba(255,89,95,.55);background:rgba(104,26,34,.58);color:#ffd8dc; }
.jsn-scope-allow { border:1px solid rgba(28,226,187,.5);background:rgba(17,82,67,.58);color:#d7fff5; }
.jsn-scope-card.is-right { animation:jsn-right-flash .28s ease; }
.jsn-scope-card.is-wrong { animation:jsn-wrong-flash .28s ease; }
@keyframes jsn-right-flash { 50%{border-color:var(--jsn-teal);box-shadow:0 0 34px rgba(28,226,187,.15);} }
@keyframes jsn-wrong-flash { 50%{border-color:var(--jsn-red);box-shadow:0 0 34px rgba(255,89,95,.13);} }

/* Game 06 */
.jsn-runner-wrap { position:relative; overflow:hidden; border:1px solid rgba(36,215,255,.22);border-radius:14px;background:#020b11;box-shadow:inset 0 0 55px rgba(0,0,0,.4);touch-action:none; }
.jsn-runner-wrap canvas { display:block;width:100%;height:auto;aspect-ratio:32/13;max-height:390px;background:#031017; }
.jsn-runner-start-overlay { position:absolute;inset:0;display:grid;place-content:center;gap:.55rem;text-align:center;padding:1rem;background:radial-gradient(circle,rgba(9,39,54,.78),rgba(2,10,15,.93));backdrop-filter:blur(2px); }
.jsn-runner-start-overlay[hidden] { display:none; }
.jsn-runner-start-overlay strong { color:#fff;font:950 clamp(2rem,6vw,4.3rem)/.9 system-ui,sans-serif;letter-spacing:-.05em;text-shadow:0 0 30px rgba(36,215,255,.22); }
.jsn-runner-start-overlay span { color:#8ca8b5;font-size:.75rem; }
.jsn-runner-start-overlay button { justify-self:center;min-height:46px;margin-top:.35rem;padding:.65rem 1rem;border:1px solid var(--jsn-teal);border-radius:9px;background:rgba(17,79,67,.72);color:#e6fff8;font:950 .78rem system-ui,sans-serif;letter-spacing:.08em;cursor:pointer; }
.jsn-runner-controls { display:none;grid-template-columns:1fr 1fr;gap:.65rem;margin-top:.65rem; }
.jsn-runner-controls button { min-height:48px;border:1px solid rgba(36,215,255,.25);border-radius:10px;background:#0a2a3a;color:#d9f5ff;font:850 .75rem system-ui,sans-serif; }

/* Achievements + victory */
.jsn-arcade-lower { display:grid;grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);gap:1rem;padding:1rem;border-top:1px solid rgba(36,215,255,.12); }
.jsn-achievements,.jsn-victory { padding:1.1rem;border:1px solid rgba(36,215,255,.13);border-radius:15px;background:rgba(5,22,32,.72); }
.jsn-subsection-head { display:flex;align-items:end;justify-content:space-between;gap:1rem;margin-bottom:.8rem; }
.jsn-subsection-head h3 { margin:.16rem 0 0;font-size:1.3rem; }
.jsn-achievement-count { color:#7e9eac;font-size:.72rem; }
.jsn-achievement-count b { color:var(--jsn-yellow);font-size:1rem; }
.jsn-badge-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.55rem; }
.jsn-badge { position:relative;min-height:98px;padding:.7rem .68rem .65rem;border:1px solid rgba(120,161,178,.13);border-radius:10px;background:rgba(3,15,22,.72);filter:saturate(.35);opacity:.48;transition:opacity .2s ease,filter .2s ease,transform .2s ease,border-color .2s ease; }
.jsn-badge i { display:grid;place-items:center;width:1.55rem;height:1.55rem;margin-bottom:.45rem;border-radius:50%;background:#102d3c;color:#5a7d8d;font-style:normal;font:900 .6rem system-ui,sans-serif; }
.jsn-badge strong { display:block;color:#d9e9ef;font-size:.76rem;line-height:1.12; }
.jsn-badge span { display:block;margin-top:.24rem;color:#718b97;font-size:.64rem;line-height:1.2; }
.jsn-badge.is-unlocked { opacity:1;filter:none;border-color:rgba(255,212,59,.28);background:linear-gradient(145deg,rgba(47,38,9,.38),rgba(4,20,29,.85));transform:translateY(-1px); }
.jsn-badge.is-unlocked i { background:var(--jsn-yellow);color:#251d00;box-shadow:0 0 16px rgba(255,212,59,.18); }
.jsn-badge.is-unlocked strong { color:#fff4bd; }
.jsn-victory { display:flex;align-items:center;justify-content:space-between;gap:1rem;background:radial-gradient(circle at 100% 0%,rgba(255,59,141,.09),transparent 38%),rgba(5,22,32,.72); }
.jsn-victory h3 { margin:.15rem 0 .3rem;font-size:1.25rem; }
.jsn-victory p { margin:0;color:#819ca8;font-size:.78rem; }
.jsn-victory-stamp { display:grid;place-items:center;width:78px;height:78px;flex:0 0 auto;border:3px solid var(--jsn-red);border-radius:50%;color:var(--jsn-red);font:950 .75rem/1.05 system-ui,sans-serif;text-align:center;transform:rotate(-8deg); }
.jsn-victory.is-cleared { border-color:rgba(28,226,187,.34);background:radial-gradient(circle at 100% 0%,rgba(28,226,187,.11),transparent 42%),rgba(5,26,34,.78); }
.jsn-victory.is-cleared .jsn-victory-stamp { border-color:var(--jsn-teal);color:var(--jsn-teal);box-shadow:0 0 32px rgba(28,226,187,.15); }
.jsn-victory.is-cleared h3 { color:#ddfff7; }

/* Toast + receipt confetti */
.jsn-toast { position:fixed;left:50%;bottom:1.2rem;z-index:120;max-width:min(92vw,540px);padding:.8rem 1rem;border:1px solid rgba(36,215,255,.3);border-radius:11px;background:rgba(4,20,29,.96);box-shadow:0 16px 55px rgba(0,0,0,.42);color:#e7f9ff;font-size:.82rem;font-weight:750;transform:translate(-50%,calc(100% + 3rem));opacity:0;pointer-events:none;transition:transform .25s ease,opacity .25s ease; }
.jsn-toast.is-visible { transform:translate(-50%,0);opacity:1; }
.jsn-particles { position:fixed;inset:0;z-index:119;pointer-events:none;overflow:hidden; }
.jsn-particle { position:absolute;top:48%;left:50%;width:10px;height:16px;border-radius:2px;background:var(--particle,var(--jsn-cyan));box-shadow:0 0 8px color-mix(in srgb,var(--particle),transparent 55%);animation:jsn-confetti .95s cubic-bezier(.1,.8,.2,1) forwards; }
@keyframes jsn-confetti { to { transform:translate(var(--x),var(--y)) rotate(var(--r));opacity:0; } }

/* Hover affordances only where a mouse actually exists. */
@media (hover:hover) and (pointer:fine) {
  .jsn-game-select button:hover { border-color:rgba(36,215,255,.2);background:rgba(36,215,255,.045); }
  .jsn-evidence-card:hover { transform:translateY(-2px); }
  .jsn-badge.is-unlocked:hover { transform:translateY(-3px); }
  .jsn-daily-foot button:hover,.jsn-panel-foot button:hover { color:#fff; }
}

/* Tablet landscape / compact desktop */
@media (max-width: 1120px) {
  .jsn-arcade-hud { grid-template-columns:170px 1fr auto; top:70px; }
  .jsn-hud-actions b { display:none; }
  .jsn-cabinet { grid-template-columns:190px minmax(0,1fr); }
  .jsn-game-select button { grid-template-columns:1.8rem 1fr auto; min-height:62px; }
  .jsn-badge-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .jsn-arcade-lower { grid-template-columns:1fr; }
}

/* Tablet portrait and large phones — game selector becomes horizontal, cabinet stays roomy. */
@media (max-width: 900px) {
  .jsn-arcade-head { grid-template-columns:1fr; }
  .jsn-daily-card { align-self:auto; }
  .jsn-arcade-shell { border-radius:20px; }
  .jsn-arcade-hud { top:62px;grid-template-columns:1fr auto;gap:.65rem;min-height:68px;border-radius:19px 19px 0 0; }
  .jsn-hud-brand { display:none; }
  .jsn-hud-stats { grid-template-columns:.7fr 1.35fr .6fr; }
  .jsn-hud-actions { justify-self:end; }
  .jsn-cabinet { display:block; min-height:0; }
  .jsn-game-select { flex-direction:row;gap:.5rem;overflow-x:auto;scroll-snap-type:x proximity;padding:.72rem;border-right:0;border-bottom:1px solid rgba(36,215,255,.12);scrollbar-width:thin; }
  .jsn-game-select button { flex:0 0 164px;scroll-snap-align:start;min-height:58px; }
  .jsn-machine { padding:.72rem; }
  .jsn-machine-screen { min-height:540px; }
  .jsn-machine-top,.jsn-machine-bottom { grid-template-columns:1fr auto; }
  .jsn-machine-top span:first-child,.jsn-machine-bottom span:first-child { display:none; }
  .jsn-machine-top span:last-child,.jsn-machine-bottom span:last-child { text-align:right; }
  .jsn-receipt-workbench { grid-template-columns:1fr; }
  .jsn-receipt-stack { min-height:205px; }
  .jsn-runner-controls { display:grid; }
}

/* Mobile */
@media (max-width: 640px) {
  .jsn-campaign-hero { padding-top:2.8rem; }
  .jsn-attract-strip { grid-template-columns:1fr; gap:.25rem; text-align:center; }
  .jsn-attract-strip b { order:-1; }
  .jsn-arcade { padding-top:4rem; }
  .jsn-arcade-head { gap:1rem; }
  .jsn-arcade-facts { display:grid;grid-template-columns:1fr 1fr; }
  .jsn-arcade-facts span { text-align:center; }
  .jsn-daily-card { border-radius:14px; }
  .jsn-arcade-shell { margin-inline:-.45rem; }
  .jsn-arcade-hud { top:55px;grid-template-columns:1fr auto;padding:.62rem .65rem .78rem; }
  .jsn-hud-stats { grid-template-columns:.72fr 1.25fr .62fr;gap:.28rem; }
  .jsn-hud-stats > div { padding:.4rem .45rem;border-radius:8px; }
  .jsn-hud-stats span { font-size:.48rem; }
  .jsn-hud-stats strong { font-size:.85rem; }
  .jsn-hud-stats .jsn-rank-text { font-size:.65rem; }
  .jsn-icon-button { min-height:34px;padding:.42rem .5rem; }
  .jsn-icon-button:nth-child(2) { display:none; }
  .jsn-game-select { padding:.55rem; }
  .jsn-game-select button { flex-basis:145px;min-height:54px;padding:.6rem .5rem; }
  .jsn-game-select button b { font-size:.7rem; }
  .jsn-game-select button small { font-size:.57rem; }
  .jsn-machine { padding:.5rem; }
  .jsn-machine-top { padding:.25rem .35rem .55rem; }
  .jsn-machine-top strong { font-size:.66rem; }
  .jsn-machine-top span:last-child { font-size:.5rem; }
  .jsn-machine-screen { min-height:520px;padding:1rem .85rem;border-radius:13px; }
  .jsn-panel-heading { grid-template-columns:1fr auto;gap:.55rem; }
  .jsn-panel-heading h3 { font-size:clamp(1.8rem,10vw,2.7rem); }
  .jsn-panel-heading p { font-size:.88rem; }
  .jsn-best-box { min-width:58px;padding:.48rem; }
  .jsn-burn-stage { padding:.75rem; }
  .jsn-burn-readout { align-items:flex-end; }
  .jsn-burn-number { font-size:clamp(2.3rem,15vw,4rem); }
  .jsn-regret-label { font-size:.58rem; }
  .jsn-meter { height:28px; }
  .jsn-game-actions { display:grid;grid-template-columns:1fr 1fr; }
  .jsn-game-button { width:100%; }
  .jsn-evidence-grid { grid-template-columns:1fr;gap:.45rem; }
  .jsn-evidence-card { min-height:72px;font-size:.78rem; }
  .jsn-receipt-pick { flex:1 1 44%;min-width:92px; }
  .jsn-whack-grid { grid-template-columns:repeat(3,1fr);gap:.4rem; }
  .jsn-whack-cell { min-height:72px;font-size:.61rem;padding:.3rem; }
  .jsn-whack-grid .jsn-whack-cell:nth-child(n+10) { display:none; }
  .jsn-scope-card { min-height:165px; }
  .jsn-scope-buttons button { min-height:54px;font-size:.75rem; }
  .jsn-runner-hud { gap:.32rem; }
  .jsn-runner-hud span { flex:1 1 auto;text-align:center;font-size:.6rem;padding:.32rem .36rem; }
  .jsn-runner-wrap canvas { aspect-ratio:16/9;min-height:235px;object-fit:cover; }
  .jsn-panel-foot { align-items:flex-start;flex-direction:column;gap:.45rem; }
  .jsn-panel-foot button { font-size:.75rem; }
  .jsn-machine-bottom { display:none; }
  .jsn-arcade-lower { padding:.65rem; }
  .jsn-badge-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .jsn-badge { min-height:92px; }
  .jsn-victory { align-items:flex-start; }
  .jsn-victory-stamp { width:64px;height:64px;font-size:.65rem; }
  .jsn-toast { bottom:.75rem;font-size:.75rem; }
}

/* Very narrow devices */
@media (max-width: 390px) {
  .jsn-hud-stats > div:nth-child(2) { display:none; }
  .jsn-hud-stats { grid-template-columns:1fr 1fr; }
  .jsn-game-select button { flex-basis:138px; }
  .jsn-game-actions { grid-template-columns:1fr; }
  .jsn-badge-grid { grid-template-columns:1fr; }
}

/* Short landscape phones/tablets */
@media (max-height: 560px) and (orientation: landscape) and (max-width: 980px) {
  .jsn-arcade-hud { position:relative;top:auto; }
  .jsn-machine-screen { min-height:420px; }
  .jsn-game-select { position:relative; }
}

@media (prefers-reduced-motion: reduce) {
  .jsn-attract-strip span:first-child,.jsn-hud-light { animation:none !important; }
  .jsn-game-panel,.jsn-scope-card,.jsn-particle { animation:none !important; }
  .jsn-hud-progress span,.jsn-game-select button,.jsn-badge,.jsn-toast { transition:none !important; }
}

/* --------------------------------------------------------------------------
   Campaign art rotation — one poster at a time, mixed aspect ratios supported
   -------------------------------------------------------------------------- */
.jsn-art-rotator {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 28%, rgba(36,215,255,.09), transparent 48%),
    linear-gradient(145deg, #081620, #02070b 70%);
}
.jsn-art-rotator img[data-jsn-rotator-image] {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #03090e;
  transform: translateZ(0);
}
.jsn-home-poster.jsn-art-rotator {
  aspect-ratio: 4 / 3;
}
.jsn-poster-frame.jsn-art-rotator {
  aspect-ratio: 16 / 10;
}
.jsn-art-rotator img.is-entering {
  animation: jsn-art-enter .55s cubic-bezier(.2,.75,.25,1) both;
}
@keyframes jsn-art-enter {
  from { opacity: .18; transform: scale(1.012); filter: saturate(.8) contrast(.92); }
  to { opacity: 1; transform: scale(1); filter: saturate(1) contrast(1); }
}
.jsn-art-counter {
  position: absolute;
  left: .85rem;
  bottom: .85rem;
  z-index: 3;
  padding: .34rem .56rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(3,9,14,.76);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.82);
  font: 800 .68rem/1 system-ui,sans-serif;
  letter-spacing: .08em;
}
.jsn-art-controls {
  position: absolute;
  left: 50%;
  bottom: .82rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .42rem;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(3,9,14,.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,.28);
}
.jsn-art-controls span {
  min-width: 3.3rem;
  text-align: center;
  color: #d9f8ff;
  font: 850 .68rem/1 system-ui,sans-serif;
  letter-spacing: .08em;
}
.jsn-art-controls button {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(36,215,255,.28);
  border-radius: 999px;
  background: rgba(10,34,46,.92);
  color: #e7fbff;
  font: 900 1rem/1 system-ui,sans-serif;
  cursor: pointer;
}
.jsn-art-controls button:hover,
.jsn-art-controls button:focus-visible {
  border-color: rgba(28,226,187,.82);
  background: rgba(17,61,67,.96);
  outline: none;
}
@media (max-width: 760px) {
  .jsn-home-poster.jsn-art-rotator { aspect-ratio: 1 / 1; }
  .jsn-poster-frame.jsn-art-rotator { aspect-ratio: 4 / 3; }
  .jsn-art-controls { bottom: .55rem; }
  .jsn-poster-stamp { right: .55rem; bottom: .55rem; }
}
@media (prefers-reduced-motion: reduce) {
  .jsn-art-rotator img.is-entering { animation: none; }
}
