/* ===== Cyka Circus — site theme (big top edition) ===== */
:root {
  --ink: #141019;
  --night: #1d1830;
  --cream: #f6efe2;
  --paper: #fffaf1;
  --red: #e5322d;
  --red-dark: #b8211d;
  --gold: #f6c445;
  --gold-dark: #c99a1c;
  --muted: #6b6258;
  --line: rgba(20, 16, 25, .14);

  --poster: "Rye", "Anton", Georgia, serif;
  --display: "Anton", "Impact", "Arial Narrow Bold", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --pixel: "Press Start 2P", ui-monospace, "Courier New", monospace;

  --ease: cubic-bezier(.2, .8, .2, 1);
  --pop: cubic-bezier(.34, 1.56, .64, 1);
  --fast: 180ms;
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --r: 16px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--body); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .01em; line-height: .95; margin: 0; }
p { margin: 0 0 1em; }
::selection { background: var(--red); color: var(--cream); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 8px; text-decoration: none; }
.skip:focus { top: 12px; }
.poster { font-family: var(--poster); text-transform: none; letter-spacing: 0; font-weight: 400; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--poster); color: var(--red); font-size: 18px; margin-bottom: 14px; }
.kicker::before, .kicker::after { content: "✦"; font-size: 12px; color: var(--gold-dark); }
.muted { color: var(--muted); }

/* ===== tent-stripe header with scalloped valance ===== */
.site-header { position: sticky; top: 0; z-index: 50; color: var(--cream);
  background: repeating-linear-gradient(90deg, var(--red) 0 48px, #c52722 48px 96px); }
.site-header::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; pointer-events: none;
  background: radial-gradient(circle at 24px 0, var(--red) 23px, transparent 24px) 0 0 / 96px 14px repeat-x,
              radial-gradient(circle at 72px 0, #c52722 23px, transparent 24px) 0 0 / 96px 14px repeat-x;
  filter: drop-shadow(0 3px 0 rgba(0,0,0,.12)); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 40px; height: 40px; transition: transform 700ms var(--ease); filter: drop-shadow(0 2px 0 rgba(0,0,0,.25)); }
.logo:hover .logo-mark { transform: rotate(210deg); }
.logo-type { font-family: var(--poster); font-size: 24px; line-height: 1; text-shadow: 0 2px 0 rgba(0,0,0,.25); white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { text-decoration: none; font-weight: 700; font-size: 15px; padding: 8px 14px; border-radius: 999px; transition: background var(--fast), color var(--fast); }
.nav a:hover { background: rgba(255,255,255,.16); }
.nav a.active { background: var(--cream); color: var(--red-dark); }
/* Gaming dropdown */
.has-sub { position: relative; }
.sub-parent { display: inline-flex; align-items: center; gap: 7px; }
.caret { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid currentColor; transition: transform var(--fast) var(--ease); }
.nav-sub { position: absolute; top: 100%; left: 50%; min-width: 190px; padding-top: 14px; transform: translate(-50%, -6px); opacity: 0; visibility: hidden; transition: opacity 160ms var(--ease), transform 160ms var(--ease), visibility 160ms; z-index: 60; }
.nav-sub::before { content: ""; position: absolute; top: 7px; left: 50%; width: 14px; height: 14px; background: var(--cream); border: 3px solid var(--ink); border-right: 0; border-bottom: 0; transform: translateX(-50%) rotate(45deg); }
.nav-sub > a { display: block; position: relative; background: var(--cream); color: var(--red-dark); border: 3px solid var(--ink); border-radius: 0; padding: 12px 18px; font-size: 16px; }
.nav-sub > a:first-child { border-radius: 14px 14px 0 0; border-bottom-width: 0; }
.nav-sub > a:last-child { border-radius: 0 0 14px 14px; box-shadow: 5px 5px 0 var(--ink); }
.nav-sub > a + a { border-top: 2px dashed var(--line, #d9c9ad); }
.nav-sub > a:hover, .nav-sub > a.active { background: var(--gold); color: var(--ink); }
.has-sub:hover .nav-sub, .has-sub:focus-within .nav-sub, .has-sub.tapped .nav-sub { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.has-sub:hover .caret, .has-sub:focus-within .caret { transform: rotate(180deg); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; color: var(--cream); }
.bars, .bars::before, .bars::after { display: block; width: 24px; height: 3px; background: currentColor; border-radius: 2px; margin: 0 auto; transition: transform var(--fast) var(--ease), background var(--fast); }
.bars { position: relative; } .bars::before, .bars::after { content: ""; position: absolute; left: 0; }
.bars::before { top: -8px; } .bars::after { top: 8px; }
.menu-toggle[aria-expanded="true"] .bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .bars::before { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bars::after { transform: translateY(-8px) rotate(-45deg); }

/* ===== buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 0 26px; border-radius: 999px; font-weight: 800; font-size: 16px; text-decoration: none; border: 3px solid var(--ink); cursor: pointer;
  transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease), background var(--fast); box-shadow: 0 5px 0 var(--ink); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--ink); }
.btn:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--ink); }
.btn-red { background: var(--red); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }

/* ===== marquee sign with bulbs ===== */
.marquee { position: relative; display: inline-block; padding: 22px 34px; border-radius: 22px; background: var(--night); color: var(--cream); border: 6px solid var(--gold);
  box-shadow: 0 10px 0 var(--ink), inset 0 0 0 3px var(--gold-dark); }
.marquee::before { content: ""; position: absolute; inset: 6px; border-radius: 14px; pointer-events: none;
  background: radial-gradient(circle, #fff6c9 0 3px, var(--gold) 3.5px 4.5px, transparent 5px) 0 0 / 22px 22px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; padding: 8px;
  animation: bulbs 1.2s steps(2) infinite; }
@keyframes bulbs { 50% { filter: brightness(.55); } }

/* ===== hero ===== */
.hero { position: relative; padding: clamp(56px, 8vw, 110px) 0 clamp(60px, 8vw, 100px); overflow: hidden;
  background: radial-gradient(900px 500px at 75% 30%, rgba(246,196,69,.22), transparent 60%), radial-gradient(700px 500px at 10% 90%, rgba(229,50,45,.12), transparent 60%); }
.hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(56px, 10vw, 132px); line-height: .9; margin: 6px 0 22px; }
.hero h1 .poster { display: block; font-size: .5em; color: var(--red); margin-bottom: 8px; }
.hero .lede { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 40ch; margin-bottom: 30px; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; }
.big-top { position: relative; justify-self: center; width: min(420px, 80vw); aspect-ratio: 1; margin-bottom: 44px; }
.big-top .ring { position: absolute; inset: 0; border-radius: 50%; border: 3px dashed var(--red); animation: spin 40s linear infinite; }
.big-top .ring2 { inset: 6%; border: 2px solid var(--gold-dark); border-style: dotted; animation-duration: 60s; animation-direction: reverse; }
.big-top button { position: absolute; inset: 12%; border: 0; background: none; padding: 0; cursor: pointer; border-radius: 50%; will-change: transform; }
.big-top button:focus-visible { outline: 3px solid var(--gold); outline-offset: 6px; }
.big-top img { width: 100%; height: 100%; filter: drop-shadow(0 16px 20px rgba(0,0,0,.25)); }
.big-top .wheel-labels { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none;
  font-family: Anton, Impact, "Arial Narrow", sans-serif; letter-spacing: .04em; }
.big-top .pointer { position: absolute; left: 50%; top: 10.5%; width: 0; height: 0; z-index: 3; pointer-events: none;
  border-left: 15px solid transparent; border-right: 15px solid transparent; border-top: 30px solid var(--ink);
  filter: drop-shadow(0 3px 0 var(--gold)); transform: translate(-50%, -40px); opacity: 0; }
.big-top.roulette .hint { font-size: 18px; }
.big-top .hint { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%); font-family: var(--poster); color: var(--red); font-size: 15px; white-space: nowrap; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== sections ===== */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(40px, 6vw, 72px); }
.section-head p { margin: 8px 0 0; color: var(--muted); max-width: 52ch; }
.link-more { font-weight: 800; text-decoration: none; border-bottom: 3px solid var(--red); padding-bottom: 2px; }
.section-dark { background: var(--night); color: var(--cream); }
.section-dark .muted, .section-dark .section-head p { color: #b9b0c9; }
.section-stripe { background: repeating-linear-gradient(135deg, rgba(229,50,45,.07) 0 26px, transparent 26px 52px), var(--paper); }

/* ===== post cards (circus posters) ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card { position: relative; display: flex; flex-direction: column; background: var(--paper); border: 3px solid var(--ink); border-radius: var(--r); overflow: hidden; text-decoration: none;
  box-shadow: 6px 6px 0 var(--ink); transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease); }
.card:hover { transform: translate(-3px, -3px) rotate(-.4deg); box-shadow: 10px 10px 0 var(--red); }
.card-img { aspect-ratio: 16 / 9; background: var(--night); position: relative; overflow: hidden; border-bottom: 3px solid var(--ink); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img .ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--gold); font-family: var(--poster); font-size: 64px;
  background: repeating-conic-gradient(from 0deg at 50% 120%, #2a2244 0 8deg, var(--night) 8deg 16deg); }
.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 28px; line-height: 1; }
.card-body p { margin: 0; color: var(--muted); font-size: 15px; }
.card-meta { margin-top: auto; padding-top: 6px; font-size: 13px; color: var(--muted); font-weight: 600; }
.tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--poster); font-size: 14px; background: var(--gold); color: var(--ink); padding: 4px 12px 5px; border-radius: 999px; border: 2px solid var(--ink); }
.tag.t-review { background: var(--red); color: var(--cream); }
.tag.t-feature { background: var(--cream); }
.score-stub { position: absolute; top: 10px; right: 10px; z-index: 2; width: 58px; height: 58px; border-radius: 50%; background: var(--cream); border: 3px solid var(--ink); display: grid; place-items: center; font-family: var(--display); font-size: 24px; line-height: 1; box-shadow: 0 3px 0 var(--ink); }
.score-stub small { font-family: var(--body); font-size: 10px; font-weight: 800; display: block; text-align: center; margin-top: -4px; }
.sample-flag { display: inline-block; font-size: 12px; font-weight: 800; color: var(--red-dark); background: rgba(229,50,45,.1); border-radius: 6px; padding: 1px 8px; }
.empty { padding: 40px; text-align: center; border: 3px dashed var(--line); border-radius: var(--r); color: var(--muted); }

/* ===== filter tabs ===== */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.tabs a { text-decoration: none; font-weight: 800; padding: 10px 18px; border-radius: 999px; border: 3px solid var(--ink); background: var(--paper); }
.tabs a.on { background: var(--ink); color: var(--cream); }

/* ===== game act cards ===== */
.acts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.act { position: relative; border-radius: var(--r); border: 3px solid var(--gold); background: #261f3d; color: var(--cream); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; box-shadow: 0 8px 0 var(--ink); transition: transform var(--fast) var(--ease); }
.act:hover { transform: translateY(-4px); }
.act-art { aspect-ratio: 16 / 9; position: relative; overflow: hidden; background: #000; }
.act-art img { width: 100%; height: 100%; object-fit: cover; }
.act-art .title { position: absolute; inset: auto 0 0 0; padding: 60px 18px 14px; background: linear-gradient(transparent, rgba(0,0,0,.85)); font-family: var(--display); font-size: 44px; text-transform: uppercase; line-height: .9; }
.act-art .title em { font-style: normal; color: var(--red); }
.act-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.act-body p { margin: 0; color: #cfc6de; }
.act .btn { align-self: flex-start; margin-top: auto; box-shadow: 0 5px 0 #000; border-color: #000; }
.act.locked { border-color: #4a4263; opacity: .8; }
.act.locked .act-art { display: grid; place-items: center; background: repeating-linear-gradient(45deg, #221c36 0 16px, #2a2342 16px 32px); font-family: var(--poster); font-size: 28px; color: #6f6690; }
.pill { display: inline-block; font-family: var(--pixel); font-size: 9px; padding: 5px 9px; border-radius: 999px; background: var(--gold); color: var(--ink); }

/* ===== about / ringmaster ===== */
.ringmaster { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center; }
.ticket { position: relative; background: var(--gold); color: var(--ink); border-radius: 14px; padding: 28px 30px; border: 3px solid var(--ink); box-shadow: 8px 8px 0 var(--red);
  -webkit-mask: radial-gradient(circle 14px at 0 50%, transparent 98%, #000) left / 51% 100% no-repeat, radial-gradient(circle 14px at 100% 50%, transparent 98%, #000) right / 51% 100% no-repeat; }
.ticket h3 { font-family: var(--poster); text-transform: none; font-size: 34px; margin-bottom: 10px; }
.ticket .stub { border-top: 3px dashed rgba(0,0,0,.35); margin-top: 14px; padding-top: 12px; font-family: var(--pixel); font-size: 10px; }

/* ===== post page ===== */
.post-hero { padding: clamp(40px, 6vw, 72px) 0 30px; }
.post-hero .tag { position: static; display: inline-block; margin-bottom: 14px; }
.post-hero h1 { font-size: clamp(44px, 7vw, 92px); margin-bottom: 14px; }
.post-hero .sub { font-size: 20px; color: var(--muted); max-width: 60ch; }
.post-meta { font-weight: 700; color: var(--muted); font-size: 14px; display: flex; gap: 14px; flex-wrap: wrap; }
.post-cover { border: 3px solid var(--ink); border-radius: var(--r); overflow: hidden; box-shadow: 8px 8px 0 var(--ink); margin: 26px 0 10px; background: var(--night); }
.post-cover img { width: 100%; }
.post-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; align-items: start; padding-bottom: 80px; }
.prose { font-size: 18px; max-width: 70ch; }
.prose h2 { font-size: 40px; margin: 1.4em 0 .5em; }
.prose h3 { font-size: 28px; margin: 1.2em 0 .4em; }
.prose img { border-radius: 12px; border: 3px solid var(--ink); margin: 1em 0; }
.prose blockquote { margin: 1.2em 0; padding: 14px 20px; border-left: 6px solid var(--red); background: var(--paper); border-radius: 0 12px 12px 0; font-style: italic; }
.prose a { color: var(--red-dark); font-weight: 600; }
.prose code { background: var(--paper); padding: 1px 6px; border-radius: 5px; font-size: .9em; }
.prose hr { border: 0; height: 14px; margin: 2em 0; background: radial-gradient(circle, var(--red) 3px, transparent 4px) 0 50% / 24px 14px repeat-x; }
.verdict { position: sticky; top: 100px; background: var(--paper); border: 3px solid var(--ink); border-radius: var(--r); padding: 22px; box-shadow: 6px 6px 0 var(--gold); }
.verdict .big-score { display: flex; align-items: baseline; gap: 6px; font-family: var(--display); font-size: 84px; line-height: .9; color: var(--red); }
.verdict .big-score small { font-size: 28px; color: var(--ink); }
.verdict h3 { font-family: var(--poster); text-transform: none; font-size: 20px; margin-bottom: 6px; }
.verdict dl { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; font-size: 14px; margin: 14px 0 0; }
.verdict dt { font-weight: 800; } .verdict dd { margin: 0; color: var(--muted); }
.cheers { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0; max-width: 70ch; }
.cheers > div { border: 3px solid var(--ink); border-radius: 14px; padding: 16px 18px; background: var(--paper); }
.cheers h3 { font-family: var(--poster); text-transform: none; font-size: 22px; margin-bottom: 8px; }
.cheers ul { margin: 0; padding-left: 20px; }
.cheers .boo h3 { color: var(--red-dark); }
.countdown { list-style: none; padding: 0; margin: 30px 0; display: flex; flex-direction: column; gap: 22px; max-width: 820px; }
.countdown li { display: grid; grid-template-columns: 110px 1fr; gap: 20px; align-items: start; background: var(--paper); border: 3px solid var(--ink); border-radius: var(--r); padding: 18px; box-shadow: 6px 6px 0 var(--ink); }
.countdown .rank { font-family: var(--poster); font-size: 70px; line-height: 1; color: var(--red); text-align: center; }
.countdown li:last-child { box-shadow: 8px 8px 0 var(--gold); border-color: var(--gold-dark); }
.countdown h3 { font-size: 32px; margin: 4px 0 8px; }
.countdown img { border-radius: 10px; border: 2px solid var(--ink); margin-bottom: 10px; width: 100%; max-height: 360px; object-fit: cover; }
.countdown .prose { font-size: 17px; }
.sample-banner { background: rgba(229,50,45,.1); border: 2px dashed var(--red); border-radius: 12px; padding: 10px 16px; font-weight: 700; color: var(--red-dark); margin-top: 18px; max-width: 70ch; }

/* ===== footer (sawdust ring) ===== */
.site-footer { background: var(--ink); color: var(--cream); padding: 40px 0 34px; position: relative; margin-top: 0; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 14px;
  background: radial-gradient(circle at 12px 14px, var(--ink) 11px, transparent 12px) 0 0 / 24px 14px repeat-x; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-inner nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-inner a { text-decoration: none; font-weight: 600; opacity: .85; }
.footer-inner a:hover { opacity: 1; color: var(--gold); }

/* ===== reveal ===== */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); transition-delay: calc(var(--d, 0) * 70ms); }
.js .reveal.in { opacity: 1; transform: none; }
.toast { position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 140%); background: var(--ink); color: var(--cream); padding: 12px 18px; border-radius: 12px; z-index: 90; transition: transform 300ms var(--pop); font-weight: 700; }
.toast.show { transform: translate(-50%, 0); }

/* Gaming page: breadcrumb and the two doors */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: var(--poster); font-size: 18px; color: var(--red); margin-bottom: 10px; }
.crumbs a { color: var(--red); text-decoration: none; border-bottom: 2px dashed currentColor; }
.crumbs a:hover { color: var(--red-dark); }
.crumbs span[aria-hidden] { color: var(--gold-dark); }
.doors { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.door { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 30px 28px 28px; background: var(--paper); color: var(--ink); text-decoration: none;
  border: 3px solid var(--ink); border-radius: 22px 22px 16px 16px; box-shadow: 6px 6px 0 var(--ink); transition: transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease); overflow: hidden; }
.door::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 12px; background: repeating-linear-gradient(90deg, var(--red) 0 22px, var(--cream) 22px 44px); border-bottom: 3px solid var(--ink); }
.door:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.door-icon { font-size: 40px; line-height: 1; margin-top: 8px; }
.door h3 { font-size: clamp(30px, 4vw, 42px); margin: 0; }
.door p { margin: 0; color: var(--muted); }
.door .pill { align-self: flex-start; margin-top: 6px; }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; padding: 26px var(--gutter) 18px; background: #b8211d; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: all 200ms var(--ease); }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav a { font-size: 18px; padding: 12px 16px; }
  .has-sub { display: flex; flex-direction: column; }
  .sub-parent { justify-content: space-between; }
  .caret { display: none; }
  .nav-sub { position: static; transform: none; opacity: 1; visibility: inherit; padding: 0 0 0 18px; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
  .nav-sub::before { display: none; }
  .nav-sub > a, .nav-sub > a:first-child, .nav-sub > a:last-child { background: none; color: var(--cream); border: 0; border-left: 3px solid rgba(255,255,255,.3); border-radius: 0 999px 999px 0; box-shadow: none; font-size: 16px; padding: 9px 16px; }
  .nav-sub > a + a { border-top: 0; }
  .nav-sub > a:hover { background: rgba(255,255,255,.16); color: var(--cream); }
  .nav-sub > a.active { background: var(--cream); color: var(--red-dark); }
  .has-sub:hover .nav-sub, .has-sub:focus-within .nav-sub, .has-sub.tapped .nav-sub { transform: none; visibility: inherit; }
  .hero-inner, .ringmaster, .post-grid { grid-template-columns: 1fr; }
  .big-top { width: min(320px, 76vw); margin-top: 8px; }
  .verdict { position: static; }
  .cheers { grid-template-columns: 1fr; }
  .countdown li { grid-template-columns: 1fr; gap: 6px; }
  .countdown .rank { text-align: left; font-size: 52px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } .js .reveal { opacity: 1; transform: none; } }
