@layer normalize, theme, elements, frame, parts, helpers;
@layer theme {
	:root {
		color-scheme: dark;
		--bg: #0c1014;
		--surface: #121a20;
		--surface-2: #19232a;
		--line: rgba(226, 240, 245, .08);
		--line-strong: rgba(226, 240, 245, .15);
		--fg: #eef4f6;
		--fg-muted: #a8b5bd;
		--fg-subtle: #83929b;
		--fg-faint: #6a7982;
		--brand: #2dd4bf;
		--brand-light: #7fe3d4;
		--brand-alt: #f6c453;
		--warm: #ff8a3d;
		--on-brand: #0a1512;
		--brand-wash: rgba(45, 212, 191, .09);
		--alt-wash: rgba(246, 196, 83, .09);
		--hot: #ff6b6b;
		--good: #4ade80;
		--bad: #ff8a8a;
		--bad-wash: rgba(255, 90, 90, .09);
		--good-wash: rgba(74, 222, 128, .08);
		--grad-cta: linear-gradient(100deg, var(--brand-alt) 0%, var(--warm) 100%);
		--glow-cta: 0 10px 30px -10px rgba(255, 138, 61, .55);
		--elev-2: 0 24px 48px -12px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .06);
		--elev-1: 0 16px 32px -14px rgba(0, 0, 0, .75);
		--radius-xs: 6px;
		--radius-sm: 10px;
		--radius-md: 14px;
		--radius-lg: 20px;
		--edge: 16px;
		--bar-h: 60px;
		--nav-w: 264px;
		--line-len: 72ch;
		--sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
		--serif: ui-serif, "Iowan Old Style", "Sitka Heading", Charter, Cambria, Georgia, "Noto Serif", "DejaVu Serif", serif;
		--fs-12: .75rem;
		--fs-13: .8125rem;
		--fs-14: .875rem;
		--fs-15: .9375rem;
		--fs-16: 1rem;
		--fs-18: 1.125rem;
		--fs-h3: clamp(1.1rem, 1rem + .5vw, 1.25rem);
		--fs-h2: clamp(1.375rem, 1.15rem + 1vw, 1.75rem);
		--fs-h1: clamp(1.9rem, 1.4rem + 2.2vw, 2.9rem);
		--fs-hero: clamp(2.3rem, 1.5rem + 3.4vw, 3.9rem);
		--curve-out: cubic-bezier(.2, .7, .2, 1);
		--curve-io: cubic-bezier(.65, 0, .35, 1);
		--speed-1: 120ms;
		--speed-2: 200ms;
		--speed-3: 320ms;
		--sp-2: 8px;
		--sp-3: 12px;
		--sp-4: 16px;
		--sp-5: 24px;
		--sp-6: 32px;
		--sp-7: 48px;
		--sp-8: 64px;
	}
	@media (min-width: 768px) { :root { --edge: 28px; } }
	@media (min-width: 1024px) { :root { --bar-h: 68px; } }
	@media (prefers-reduced-motion: reduce) { :root { --speed-1: 0ms; --speed-2: 0ms; --speed-3: 0ms; } }
}
@layer normalize {
	*, *::before, *::after { box-sizing: border-box; }
	html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + 1rem); }
	body { margin: 0; min-height: 100svh; }
	img, svg, video { max-width: 100%; height: auto; display: block; }
	[hidden] { display: none !important; }
	button, input, select, textarea { font: inherit; color: inherit; }
	button { background: none; border: 0; padding: 0; cursor: pointer; }
	h1, h2, h3, h4, p, ul, ol, dl, figure { margin: 0; }
	ul, ol { padding: 0; }
	a { color: inherit; }
	summary { list-style: none; }
	summary::-webkit-details-marker { display: none; }
	:focus { outline: none; }
	:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
}
@layer elements {
	body {
		background: var(--bg);
		color: var(--fg);
		font: 400 15px/1.6 var(--sans);
		font-optical-sizing: auto;
		overflow-wrap: break-word;
		-webkit-font-smoothing: antialiased;
	}
	@media (min-width: 768px) { body { font-size: 16px; } }
	body::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: -1;
		pointer-events: none;
		background:
			radial-gradient(60% 40% at 55% -10%, rgba(45, 212, 191, .13), transparent 70%),
			radial-gradient(40% 30% at 0% 20%, rgba(246, 196, 83, .08), transparent 70%);
	}
	h1, h2, h3, h4 { font-family: var(--serif); color: var(--fg); text-wrap: balance; letter-spacing: -.01em; }
	h1 { font-size: var(--fs-h1); line-height: 1.08; font-weight: 700; letter-spacing: -.015em; }
	h2 { font-size: var(--fs-h2); line-height: 1.18; font-weight: 700; }
	h3 { font-size: var(--fs-h3); line-height: 1.3; font-weight: 700; letter-spacing: -.01em; }
	p { text-wrap: pretty; }
	a { color: var(--brand-light); text-decoration: none; text-underline-offset: .18em; }
	a:hover { text-decoration: underline; }
	strong, b { color: var(--fg); font-weight: 700; }
	small { font-size: var(--fs-13); }
	::selection { background: rgba(45, 212, 191, .35); color: #fff; }
	main { container-type: inline-size; container-name: content; }
}
@layer frame {
	.container { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: var(--edge); }
	.shell { display: block; padding-bottom: var(--sp-8); }
	.content { min-width: 0; }
	.band { padding-block: clamp(1.75rem, 3.5vw, 3rem); }
	.band--rail { padding-top: 0; }
	.entry__body > * + *, .entry__cols > * + * { margin-top: var(--sp-5); }
	.entry__cols > .richtext { margin-top: var(--sp-6); }
	.richtext, .deck, .tldr, .qa, .byline, .outline__inline, .trail, .doc-head, .promo, .prevnext, .further { max-width: var(--line-len); }
	.entry--home .richtext { max-width: var(--line-len); }
	@media (min-width: 1024px) {
		.shell {
			display: grid;
			grid-template-columns: minmax(0, 1fr) var(--nav-w);
			column-gap: clamp(1.75rem, 3vw, 3.25rem);
			align-items: start;
		}
		.shell > .content { grid-column: 1; grid-row: 1; padding-right: clamp(1.75rem, 3vw, 3.25rem); border-right: 1px solid var(--line); min-height: calc(100vh - var(--bar-h)); }
		.shell > .sidenav { grid-column: 2; grid-row: 1; }
	}
	@media (min-width: 1280px) {
		.entry__body { max-width: 920px; margin-inline: auto; }
		.entry--home .entry__body, .entry--index .entry__body { max-width: none; }
		.entry:not(.entry--home):not(.entry--index) :is(.entry__body, .entry__cols) > *, .entry:not(.entry--home):not(.entry--index) .outline__inline { margin-inline: auto; }
	}
}
@layer parts {
	
	.masthead { position: sticky; top: 0; z-index: 40; background: rgba(12, 16, 20, .94); border-bottom: 1px solid var(--line); transition: background var(--speed-2), border-color var(--speed-2); }
	.masthead.is-scrolled { background: rgba(12, 16, 20, .88); box-shadow: 0 12px 30px -20px rgba(0, 0, 0, .9); }
	@media (min-width: 1024px) { .masthead.is-scrolled { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } }
	@media (prefers-reduced-transparency: reduce) { .masthead.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--bg); } }
	@media screen and (min-width: 783px) { body.admin-bar .masthead { top: 32px; } }
	@media screen and (max-width: 782px) { body.admin-bar .masthead { top: 46px; } body.admin-bar .readbar { top: 46px; } }
	@media screen and (min-width: 783px) and (max-width: 1023px) { body.admin-bar .sidenav { top: 32px; } }
	@media screen and (max-width: 782px) { body.admin-bar .sidenav { top: 46px; } }
	.masthead__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto 40px; align-items: center; gap: .75rem; min-height: var(--bar-h); }
	.menu-btn { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); color: var(--fg); }
	@media (min-width: 1024px) { .masthead__inner { grid-template-columns: auto 1fr auto; } .masthead .menu-btn { display: none; } }
	.menu-btn__icon { width: 20px; height: 20px; }
	.logo { display: inline-flex; align-items: center; gap: .6rem; color: var(--fg); text-decoration: none; }
	.logo:hover { text-decoration: none; }
	.logo__icon svg { width: 36px; height: 36px; }
	.logo__text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
	.logo__word { font: 700 var(--fs-18)/1.05 var(--serif); letter-spacing: -.005em; white-space: nowrap; }
	.logo__sub { margin-top: .22rem; font: 800 .6875rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; background: var(--grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent; }
	.colophon__tag { margin-top: .7rem; font: 600 var(--fs-13)/1.3 var(--sans); color: var(--fg-subtle); }
	@media (max-width: 639px) { .logo__word { font-size: var(--fs-16); } .logo__icon svg { width: 32px; height: 32px; } }
	.quicklinks { display: none; }
	@media (min-width: 1024px) {
		.quicklinks { display: flex; gap: .15rem; justify-content: flex-end; padding-right: .5rem; }
		.quicklinks a { padding: .45rem .75rem; border-radius: var(--radius-xs); font: 500 var(--fs-14)/1 var(--sans); color: var(--fg-muted); }
		.quicklinks a:hover { color: var(--fg); background: rgba(255, 255, 255, .05); text-decoration: none; }
		.quicklinks a[aria-current="page"] { color: var(--fg); background: var(--brand-wash); }
	}
	.masthead__cta { justify-self: end; }
	@media (max-width: 479px) { .masthead__cta .masthead__cta-label { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; } .masthead__cta { width: 40px; height: 40px; padding: 0; min-height: 40px; border-radius: 50%; } .masthead__cta .ui-btn__icon { margin: 0; } }
	@media (min-width: 480px) and (max-width: 639px) { .masthead__cta { min-width: 0; max-width: 100%; } .masthead__cta .masthead__cta-label { display: block; max-width: 32vw; overflow: hidden; text-overflow: ellipsis; } }
	.top-marker { position: absolute; top: 0; height: 1px; width: 1px; }
	.readbar { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 41; pointer-events: none; }
	body.admin-bar .readbar { top: 32px; }
	.readbar__fill { display: block; height: 100%; width: 100%; background: var(--brand); transform-origin: left; transform: scaleX(var(--read, 0)); transition: transform 80ms linear; }
	body:not(.view-guide):not(.view-series):not(.view-creator) .readbar { display: none; }
	
	.ui-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 44px; padding: .75rem 1.35rem; border-radius: 999px; font: 700 var(--fs-14)/1.1 var(--sans); letter-spacing: 0; border: 0; cursor: pointer; white-space: nowrap; text-decoration: none; transition: background var(--speed-1), color var(--speed-1), translate var(--speed-2) var(--curve-out), scale 60ms; }
	.ui-btn:hover { text-decoration: none; }
	.ui-btn:active { scale: .98; transition-duration: 60ms; }
	.ui-btn__icon { width: 16px; height: 16px; flex: none; }
	.ui-btn__icon--end { order: 2; }
	.ui-btn--primary { background: var(--grad-cta); color: var(--on-brand); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25); }
	.ui-btn--primary::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: var(--glow-cta); opacity: 0; transition: opacity var(--speed-2); pointer-events: none; }
	.ui-btn--primary:hover { color: var(--on-brand); translate: 0 -1px; }
	.ui-btn--primary:hover::after { opacity: 1; }
	.ui-btn--primary:focus-visible { outline-color: #fff; }
	.ui-btn--ghost { background: transparent; border: 1px solid var(--line-strong); color: var(--fg); }
	.ui-btn--ghost:hover { background: rgba(255, 255, 255, .1); color: var(--fg); }
	.ui-btn--sm { min-height: 36px; padding: .5rem 1.05rem; font-size: var(--fs-13); border-radius: 999px; }
	.ui-btn--lg { min-height: 50px; padding: .9rem 1.6rem; font-size: var(--fs-15); }
	.ui-btn--block { width: 100%; }
	.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: var(--sp-5); }
	.promo .ui-btn, .show-head__cta .ui-btn, .intro__cta .ui-btn, .agewall__actions .ui-btn { white-space: normal; max-width: 100%; text-align: center; }
	.more-link { display: inline-flex; align-items: center; gap: .35rem; font: 600 var(--fs-14)/1.2 var(--sans); color: var(--fg-muted); text-decoration: none; }
	.more-link:hover { color: var(--fg); text-decoration: none; }
	.more-link__icon { width: 16px; height: 16px; transition: translate var(--speed-2) var(--curve-out); }
	.more-link:hover .more-link__icon { translate: 3px 0; }
	.text-btn { color: inherit; text-decoration: underline; text-underline-offset: .18em; cursor: pointer; }
	.aff-note { display: block; margin-top: .5rem; font: 500 var(--fs-12)/1.3 var(--sans); color: var(--fg-subtle); }
	
	.tokens { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--sp-4); }
	.token { display: inline-flex; align-items: center; gap: .35rem; min-height: 32px; padding: .35rem .8rem; border-radius: 8px; background: rgba(255, 255, 255, .05); border: 1px solid var(--line-strong); color: var(--fg-muted); font: 600 var(--fs-13)/1 var(--sans); white-space: nowrap; transition: background var(--speed-1), color var(--speed-1), border-color var(--speed-1); }
	button.token:hover { color: var(--fg); background: rgba(255, 255, 255, .09); }
	.token.is-active, .token[aria-pressed="true"] { background: var(--brand-wash); border-color: rgba(45, 212, 191, .45); color: var(--fg); font-weight: 700; }
	button.token[aria-pressed="true"]::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 6px var(--brand); }
	.token__n { color: var(--fg-subtle); font-weight: 500; }
	.token--static { min-height: 28px; padding: .25rem .65rem; font-size: var(--fs-12); }
	.token--spicy { color: var(--hot); border-color: rgba(255, 107, 107, .45); }
	.lozenge { display: inline-flex; align-items: center; padding: .2rem .5rem; border-radius: 999px; background: var(--grad-cta); color: var(--on-brand); font: 800 var(--fs-12)/1 var(--sans); letter-spacing: .02em; }
	.lozenge--muted { background: rgba(255, 255, 255, .1); color: var(--fg-muted); }
	.cat-label, .overline { display: inline-block; font: 600 var(--fs-12)/1.2 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--fg-subtle); }
	.overline { margin-bottom: .7rem; }
	
	.intro { position: relative; display: grid; gap: var(--sp-6); align-items: center; padding: clamp(1.25rem, 4cqw, 3rem) 0 clamp(1rem, 3cqw, 2rem); isolation: isolate; overflow: clip; }
	@media (min-width: 900px) { .intro { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); } .intro__collage { order: -1; } }
	.intro__glow { position: absolute; inset: -10% -20% auto; height: 70%; z-index: -1; pointer-events: none; background: radial-gradient(50% 60% at 30% 40%, rgba(45, 212, 191, .18), transparent 70%), radial-gradient(40% 50% at 80% 30%, rgba(246, 196, 83, .16), transparent 70%); filter: blur(10px); }
	.intro__eyebrow { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: 1rem; font: 600 var(--fs-13)/1 var(--sans); color: var(--brand-light); }
	.intro__eyebrow-icon { width: 16px; height: 16px; }
	.intro__title { font-size: var(--fs-hero); line-height: 1.02; }
	.intro__brand { display: block; color: var(--fg); text-decoration: underline; text-decoration-color: var(--brand-alt); text-decoration-thickness: .08em; text-underline-offset: .16em; padding-bottom: .14em; }
	.intro__tag { display: block; margin-top: .55rem; font: 700 clamp(1.1rem, 1rem + .8vw, 1.5rem)/1.25 var(--sans); letter-spacing: -.015em; color: var(--fg); max-width: 28ch; }
	.intro__lede { margin-top: 1.1rem; max-width: 52ch; font-size: var(--fs-16); line-height: 1.65; color: var(--fg-muted); }
	.intro__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem; margin-top: 1.5rem; }
	.intro__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; list-style: none; }
	.intro__collage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 300px; padding-block: 1.75rem; }
	.intro__poster { position: absolute; width: clamp(104px, 28%, 150px); aspect-ratio: 2 / 3; border-radius: 10px; overflow: clip; box-shadow: 0 22px 40px -16px rgba(0, 0, 0, .85), 0 0 0 1px rgba(255, 255, 255, .08); transform: translateX(calc((var(--n) - 2) * 62%)) translateY(calc(var(--lift, 0) * 1px)); transition: transform var(--speed-3) var(--curve-out); z-index: calc(3 - (var(--n) - 2) * (var(--n) - 2)); }
	.intro__poster:nth-child(odd) { --lift: -14; }
	.intro__poster:nth-child(even) { --lift: 18; }
	.intro__poster:nth-child(3) { z-index: 5; }
	.intro__poster img { width: 100%; height: 100%; object-fit: cover; }
	.intro__collage:hover .intro__poster { transform: translateX(calc((var(--n) - 2) * 68%)) translateY(calc(var(--lift, 0) * 1px)); }
	@media (max-width: 899px) {
		.intro__collage { min-height: 236px; order: -1; }
		.intro__poster { width: clamp(84px, 24%, 128px); }
	}
	
	.block-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1rem; margin-bottom: var(--sp-4); }
	.block-head h2 { font-weight: 700; }
	.block-head h2::before { content: ""; display: inline-block; width: .3em; height: .82em; margin-right: .45em; border-radius: 2px; background: var(--grad-cta); vertical-align: -.04em; }
	.block-head__sub { flex: 0 0 100%; width: 100%; max-width: 62ch; color: var(--fg-muted); font-size: var(--fs-15); margin-top: -.25rem; margin-bottom: var(--sp-4); }
	.band > .block-head__sub { margin-top: -.75rem; }
	
	.tiles { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); list-style: none; }
	.tiles--3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
	.tile { position: relative; display: flex; flex-direction: column; gap: .35rem; padding: 1.15rem 1.25rem 1.2rem; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--line); transition: border-color var(--speed-2), background var(--speed-2), translate var(--speed-2) var(--curve-out); }
	.tile:hover, .tile:focus-within { border-color: rgba(45, 212, 191, .35); background: var(--surface-2); translate: 0 -2px; }
	.tile__title { font: 700 var(--fs-16)/1.3 var(--serif); letter-spacing: -.01em; color: var(--fg); padding-right: 1.5rem; }
	.tile__link { color: inherit; text-decoration: none; }
	.tile__link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
	.tile__link:focus-visible { outline: none; }
	.tile:has(.tile__link:focus-visible) { outline: 3px solid var(--brand); outline-offset: 3px; }
	.tile__link:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
	.tile__desc { font-size: var(--fs-14); line-height: 1.5; color: var(--fg-muted); }
	.tile__arrow { position: absolute; top: 1.15rem; right: 1.1rem; width: 18px; height: 18px; color: var(--fg-subtle); transition: translate var(--speed-2) var(--curve-out), color var(--speed-2); }
	.tile:hover .tile__arrow { translate: 3px 0; color: var(--brand-light); }
	
	.poster-list { display: grid; gap: 1rem .9rem; grid-template-columns: repeat(2, minmax(0, 1fr)); position: relative; }
	@container content (min-width: 520px) { .poster-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
	@container content (min-width: 760px) { .poster-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem 1.1rem; } }
	@container content (min-width: 1000px) { .poster-list { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
	@container content (min-width: 1240px) { .poster-list { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
	@supports not (container-type: inline-size) {
		@media (min-width: 640px) { .poster-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
		@media (min-width: 1200px) { .poster-list { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
	}
	@media (max-width: 639px) {
		.poster-list--rail { display: flex; gap: .8rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--edge); padding: .25rem var(--edge) 1rem; margin-inline: calc(-1 * var(--edge)); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
		.poster-list--rail::-webkit-scrollbar { display: none; }
		.poster-list--rail .poster-list__item { flex: 0 0 42%; scroll-snap-align: start; }
	}
	.poster-list__item[hidden] { display: none !important; }
	.poster-list__empty { grid-column: 1 / -1; color: var(--fg-subtle); font-size: var(--fs-14); padding: 1rem 0; }
	.poster { position: relative; display: grid; gap: .55rem; }
	.poster__thumb { position: relative; aspect-ratio: 2 / 3; border-radius: 8px; overflow: clip; background: var(--surface-2); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06); transition: translate var(--speed-2) var(--curve-out); }
	.poster__thumb::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: var(--elev-1); opacity: 0; transition: opacity var(--speed-2); pointer-events: none; }
	.poster__thumb img { width: 100%; height: 100%; object-fit: cover; transition: scale var(--speed-3) var(--curve-out); }
	.poster:hover .poster__thumb, .poster:focus-within .poster__thumb { translate: 0 -4px; }
	.poster:hover .poster__thumb::after { opacity: 1; }
	.poster:hover .poster__thumb img { scale: 1.035; }
	.poster__badge { position: absolute; top: .6rem; left: .6rem; z-index: 2; display: inline-flex; align-items: center; gap: .35rem; padding: .3rem .55rem; border-radius: 999px; font: 700 var(--fs-12)/1 var(--sans); background: rgba(8, 12, 15, .62); color: #fff; border: 1px solid rgba(255, 255, 255, .16); backdrop-filter: blur(4px); }
	.poster__badge.is-new::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand); }
	.poster__badge.is-flagship { background: var(--grad-cta); color: var(--on-brand); border-color: transparent; }
	.poster__spicy { position: absolute; top: .6rem; right: .6rem; z-index: 2; padding: .28rem .5rem; border-radius: 999px; font: 700 var(--fs-12)/1 var(--sans); color: var(--hot); background: rgba(8, 12, 15, .78); border: 1px solid rgba(255, 107, 107, .5); }
	.poster__caption { padding-inline: .15rem; }
	.poster__title { font: 600 var(--fs-14)/1.3 var(--serif); letter-spacing: -.01em; color: var(--fg); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
	.poster__link { color: inherit; text-decoration: none; }
	.poster__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
	.poster__link:focus-visible { outline: none; }
	.poster:has(.poster__link:focus-visible) .poster__thumb { outline: 3px solid var(--brand); outline-offset: 3px; }
	.poster__link:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
	.poster__meta { margin-top: .2rem; font: 500 var(--fs-12)/1.3 var(--sans); color: var(--fg-subtle); font-variant-numeric: tabular-nums; }
	.img-empty { display: block; width: 100%; height: 100%; background: linear-gradient(160deg, var(--surface-2), var(--surface)); }
	
	.poster__badge.is-fresh { background: var(--grad-cta); color: var(--on-brand); border-color: transparent; box-shadow: 0 6px 18px -6px rgba(255, 138, 61, .7); backdrop-filter: none; }
	.poster--new .poster__thumb { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), 0 0 0 2px rgba(45, 212, 191, .6); }
	.fresh { margin-top: var(--sp-4); padding: 1rem 1.1rem 1.1rem; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(45, 212, 191, .15), rgba(246, 196, 83, .08)); border: 1px solid rgba(45, 212, 191, .32); }
	.fresh__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .2rem 1rem; margin-bottom: .8rem; }
	.fresh__title { display: inline-flex; align-items: center; gap: .55rem; font: 800 var(--fs-18)/1.2 var(--serif); }
	.fresh__dot, .fresh-note__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px var(--brand); flex: none; }
	.fresh-note__dot { background: var(--on-brand); box-shadow: none; }
	.fresh__sub { color: var(--fg-muted); font-size: var(--fs-14); }
	.fresh__list { list-style: none; display: grid; gap: .6rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
	.fresh-item__link { display: flex; align-items: center; gap: .75rem; height: 100%; padding: .6rem .75rem; border-radius: var(--radius-sm); background: rgba(12, 16, 20, .6); border: 1px solid var(--line); color: var(--fg); text-decoration: none; transition: border-color var(--speed-2), background var(--speed-2); }
	.fresh-item__link:hover { border-color: var(--line-strong); background: var(--surface-2); text-decoration: none; }
	.fresh-item__thumb { width: 40px; height: 60px; border-radius: 4px; object-fit: cover; flex: none; box-shadow: 0 4px 10px rgba(0, 0, 0, .5); }
	.fresh-item__thumb--round { width: 44px; height: 44px; border-radius: 50%; }
	.fresh-item__body { display: flex; flex-direction: column; gap: .15rem; min-width: 0; flex: 1 1 auto; }
	.fresh-item__date { font: 800 var(--fs-12)/1.1 var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--brand-light); }
	.fresh-item__title { font: 700 var(--fs-15)/1.25 var(--serif); }
	.fresh-item__note { font-size: var(--fs-13); line-height: 1.4; color: var(--fg-muted); }
	.fresh-item__arrow { width: 18px; height: 18px; flex: none; color: var(--fg-subtle); transition: translate var(--speed-2) var(--curve-out); }
	.fresh-item__link:hover .fresh-item__arrow { translate: 3px 0; color: var(--brand-light); }
	.fresh-note { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem; max-width: var(--line-len); padding: .85rem 1.1rem; border-radius: var(--radius-sm); background: var(--brand-wash); border: 1px solid rgba(45, 212, 191, .42); }
	.fresh-note__label { display: inline-flex; align-items: center; gap: .4rem; padding: .32rem .65rem; border-radius: 999px; background: var(--grad-cta); color: var(--on-brand); font: 800 var(--fs-12)/1 var(--sans); letter-spacing: .05em; text-transform: uppercase; }
	.fresh-note__text { flex: 1 1 260px; color: var(--fg-muted); font-size: var(--fs-15); line-height: 1.5; }
	.fresh-note__text strong { color: var(--fg); }
	.nav-new { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand); flex: none; }
	.flag-new { display: inline-block; margin-left: .35rem; padding: .12rem .45rem; border-radius: 999px; background: var(--grad-cta); color: var(--on-brand); font: 800 var(--fs-12)/1.2 var(--sans); letter-spacing: .03em; vertical-align: middle; }
	.token--new::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 6px var(--brand); }
	.token--new[aria-pressed="true"]::before { display: none; }
	
	.trail { font: 500 var(--fs-13)/1.3 var(--sans); color: var(--fg-subtle); }
	.trail ol { display: flex; flex-wrap: wrap; gap: .25rem .5rem; list-style: none; }
	.trail li + li::before { content: "/"; margin-right: .5rem; color: var(--fg-faint); }
	.trail a { display: inline-block; padding: .3rem 0; color: var(--fg-subtle); }
	.trail a:hover { color: var(--fg); }
	.trail [aria-current] { color: var(--fg-muted); }
	.doc-head__title { margin-bottom: .6rem; }
	.deck { font-size: var(--fs-18); line-height: 1.55; color: var(--fg-muted); font-weight: 400; margin-top: .9rem; }
	.byline { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: 1.1rem; font: 500 var(--fs-13)/1.3 var(--sans); color: var(--fg-subtle); }
	.byline > span { display: inline-flex; align-items: center; gap: .4rem; }
	.byline__icon { width: 15px; height: 15px; }
	.byline time { color: var(--fg-muted); }
	
	.tldr { position: relative; padding: 1.2rem 1.4rem 1.3rem; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(45, 212, 191, .16), rgba(246, 196, 83, .07) 55%, transparent); border: 1px solid rgba(45, 212, 191, .3); scroll-margin-top: calc(var(--bar-h) + 1rem); }
	.tldr__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .35rem 1rem; margin-bottom: .6rem; }
	.tldr__label { display: inline-flex; align-items: center; gap: .4rem; font: 700 var(--fs-12)/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--brand-light); }
	.tldr__icon { width: 16px; height: 16px; }
	.tldr__date { font: 500 var(--fs-12)/1 var(--sans); color: var(--fg-subtle); }
	.tldr__text { font: 500 var(--fs-18)/1.55 var(--sans); color: var(--fg); }
	.tldr__text a { color: var(--brand-light); text-decoration: underline; }
	
	.outline__label { display: flex; align-items: center; gap: .5rem; font: 700 var(--fs-12)/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--fg-subtle); }
	.outline__icon, .outline__chev { width: 16px; height: 16px; }
	.outline__chev { margin-left: auto; rotate: 90deg; transition: rotate var(--speed-2) var(--curve-out); }
	.outline__inline[open] .outline__chev { rotate: -90deg; }
	.outline__inline { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
	.outline__inline summary { padding: .85rem 1rem; cursor: pointer; }
	.outline__inline .outline__list { padding: 0 1rem 1rem; }
	.outline__sticky { display: none; }
	.outline__list { list-style: none; counter-reset: toc; margin-top: .4rem; }
	.outline__list li { counter-increment: toc; }
	.outline__list a { display: block; padding: .35rem 0 .35rem .85rem; border-left: 2px solid var(--line); font: 500 var(--fs-13)/1.4 var(--sans); color: var(--fg-subtle); text-decoration: none; transition: color var(--speed-1), border-color var(--speed-1); }
	.outline__list a:hover { color: var(--fg); }
	.outline__list a[aria-current="location"] { color: var(--fg); border-left-color: var(--brand); }
	@media (min-width: 1280px) {
		.outline__inline { background: var(--surface-2); max-width: var(--line-len); }
	}
	
	.richtext { font-size: var(--fs-16); }
	.richtext > * + * { margin-top: 1.1em; }
	.richtext p, .richtext li { color: var(--fg-muted); font-size: 1.0625rem; line-height: 1.72; }
	.richtext h2 { margin-top: 2.4em; scroll-margin-top: calc(var(--bar-h) + 1.25rem); }
	.richtext h3 { margin-top: 1.8em; scroll-margin-top: calc(var(--bar-h) + 1.25rem); }
	.richtext h2 + *, .richtext h3 + * { margin-top: .75em; }
	.richtext ul, .richtext ol { padding-left: 1.25em; }
	.richtext li + li { margin-top: .45em; }
	.richtext li::marker { color: var(--brand-light); }
	.richtext a { color: var(--brand-light); text-decoration: underline; text-decoration-color: rgba(127, 227, 212, .35); }
	.richtext a:hover { text-decoration-color: currentColor; }
	.richtext figure img { border-radius: var(--radius-md); }
	.richtext figcaption { margin-top: .5rem; font-size: var(--fs-13); color: var(--fg-subtle); }
	.richtext .aside { position: relative; margin-block: 1.6em; padding: 1rem 1.15rem 1rem 3.1rem; border-radius: var(--radius-sm); background: var(--alt-wash); border: 1px solid rgba(246, 196, 83, .22); color: var(--fg); font-size: 1.0625rem; line-height: 1.6; font-style: italic; }
	.richtext .aside::before { content: ""; position: absolute; left: 1rem; top: 1.05rem; width: 20px; height: 20px; background: currentColor; color: var(--brand-alt); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M7 7h5v6H8a3 3 0 0 0-3 3v1H3v-4a6 6 0 0 1 4-6z'/><path d='M17 7h4v6h-3a3 3 0 0 0-3 3v1h-2v-4a6 6 0 0 1 4-6z'/></svg>") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M7 7h5v6H8a3 3 0 0 0-3 3v1H3v-4a6 6 0 0 1 4-6z'/><path d='M17 7h4v6h-3a3 3 0 0 0-3 3v1h-2v-4a6 6 0 0 1 4-6z'/></svg>") center / contain no-repeat; }
	.richtext .aside::after { content: "Our take"; position: absolute; top: -.6rem; left: 2.9rem; padding: .1rem .5rem; border-radius: 5px; background: var(--bg); color: var(--brand-alt); font: 700 var(--fs-12)/1.3 var(--sans); font-style: normal; letter-spacing: .06em; text-transform: uppercase; }
	.note { padding: 1rem 1.2rem; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); }
	.note p { color: var(--fg-muted); }
	.note p + p { margin-top: .6em; }
	.note-warn { background: var(--bad-wash); border-color: rgba(255, 138, 138, .3); }
	.note-warn p { color: #ffd0d0; }
	.note-ok { background: var(--good-wash); border-color: rgba(74, 222, 128, .3); }
	.note-ok p { color: #c8f5d6; }
	.note-info { background: var(--alt-wash); border-color: rgba(246, 196, 83, .28); }
	.note-info p { color: #fff1cf; }
	.stats { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin-block: 1.4em; }
	.stat { display: flex; flex-direction: column; gap: .25rem; padding: 1rem 1.05rem; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); }
	.stat b { font: 800 clamp(1.4rem, 1.2rem + 1vw, 1.8rem)/1.05 var(--serif); letter-spacing: -.03em; color: var(--fg); font-variant-numeric: tabular-nums; }
	.stat span { font-size: var(--fs-13); color: var(--fg-subtle); }
	.entry__figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--elev-1); }
	.entry__figure figcaption { margin-top: .5rem; font-size: var(--fs-13); color: var(--fg-subtle); }
	
	.tbl-wrap { border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
	.tbl-wrap:not(.tbl-wrap--kv) { overflow-x: auto; background: linear-gradient(90deg, var(--surface) 30%, transparent) left, linear-gradient(270deg, var(--surface) 30%, transparent) right, linear-gradient(90deg, rgba(0, 0, 0, .5), transparent) left, linear-gradient(270deg, rgba(0, 0, 0, .5), transparent) right, var(--surface); background-repeat: no-repeat; background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%, auto; background-attachment: local, local, scroll, scroll, scroll; }
	.tbl-wrap:focus-visible { outline-offset: 2px; }
	.tbl { width: 100%; border-collapse: separate; border-spacing: 0; font-size: var(--fs-15); }
	.tbl thead th { position: sticky; top: 0; text-align: left; padding: .75rem 1rem; font: 700 var(--fs-12)/1.3 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--fg-subtle); background: var(--surface-2); border-bottom: 1px solid var(--line); }
	.tbl tbody td, .tbl tbody th { padding: .85rem 1rem; border-bottom: 1px solid var(--line); color: var(--fg-muted); vertical-align: top; text-align: left; line-height: 1.5; }
	.tbl tbody tr:last-child td, .tbl tbody tr:last-child th { border-bottom: 0; }
	.tbl tbody tr:nth-child(even) td { background: rgba(255, 255, 255, .015); }
	.tbl tbody td:first-child, .tbl tbody th { color: var(--fg); font-weight: 600; }
	.tbl td a, .tbl th a { color: var(--brand-light); }
	.tbl--kv { display: grid; grid-template-columns: minmax(100px, max-content) 1fr; }
	.tbl--kv tbody, .tbl--kv tr { display: contents; }
	.tbl--kv th, .tbl--kv td { display: block; }
	.tbl--kv th { font: 600 var(--fs-13)/1.5 var(--sans); color: var(--fg-subtle); }
	.tbl--kv caption { display: none; }
	@media (max-width: 639px) {
		.tbl:not(.tbl--kv) thead { position: absolute; clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; }
		.tbl:not(.tbl--kv) tbody tr { display: grid; gap: .35rem; padding: .9rem 1rem; border-bottom: 1px solid var(--line); }
		.tbl:not(.tbl--kv) tbody tr:last-child { border-bottom: 0; }
		.tbl:not(.tbl--kv) tbody td { padding: 0; border: 0; background: none !important; }
		.tbl:not(.tbl--kv) tbody td[data-label]::before { content: attr(data-label); display: block; font: 700 var(--fs-12)/1.2 var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--fg-subtle); margin-bottom: .15rem; }
	}
	
	.show-head { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 1rem 1.1rem; align-items: start; }
	.show-head__poster { position: relative; aspect-ratio: 2 / 3; border-radius: 10px; overflow: clip; background: var(--surface-2); box-shadow: 0 24px 48px -18px rgba(0, 0, 0, .8), inset 0 0 0 1px rgba(255, 255, 255, .08); }
	.show-head__poster img { width: 100%; height: 100%; object-fit: cover; }
	.show-head__title { font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.4rem); }
	.show-head__lede { font-size: var(--fs-16); margin-top: .7rem; }
	.show-head__facts { grid-column: 1 / -1; display: grid; gap: var(--sp-4); }
	.show-head__cta { display: flex; flex-direction: column; align-items: flex-start; }
	.show-head__facts .byline { margin-top: 0; }
	@container content (min-width: 720px) {
		.show-head { grid-template-columns: minmax(200px, 280px) minmax(0, 1fr); gap: 1.25rem 2rem; }
		.show-head__poster { grid-row: 1 / span 2; }
		.show-head__facts { grid-column: 2; }
	}
	.facts { display: grid; gap: .55rem; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); grid-auto-flow: dense; list-style: none; }
	@media (max-width: 399px) { .show-head { grid-template-columns: 96px minmax(0, 1fr); } }
	.fact { display: flex; flex-direction: column; gap: .3rem; padding: .75rem .85rem; border-radius: var(--radius-xs); background: var(--surface); border: 1px solid var(--line); min-width: 0; }
	.fact--tags, .fact--free, .fact--creator { grid-column: span 2; }
	.fact__label { font: 700 var(--fs-12)/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--fg-subtle); }
	.fact__value { font: 700 var(--fs-16)/1.25 var(--serif); color: var(--fg); font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
	.fact__chips { display: flex; flex-wrap: wrap; gap: .35rem; }
	.fact__status { display: inline-flex; align-items: center; gap: .45rem; }
	.led { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 8px var(--good); }
	.led--muted { background: var(--fg-faint); box-shadow: none; }
	.fact__value--free { font-size: var(--fs-14); }
	.ep-bar { display: flex; flex-wrap: wrap; gap: 3px; margin-top: .1rem; }
	.ep-bar span { width: 12px; height: 16px; border-radius: 3px; border: 1px solid var(--line-strong); }
	.ep-bar span.is-free { background: var(--grad-cta); border-color: transparent; }
	.fact__hint { font: 500 var(--fs-12)/1.2 var(--sans); color: var(--fg-subtle); }
	.fact__creator { display: inline-flex; align-items: center; gap: .5rem; color: var(--brand-light); text-decoration: none; }
	.fact__creator:hover { text-decoration: underline; }
	.avatar { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; flex: none; }
	
	.promo { display: grid; gap: 1rem; padding: 1.4rem 1.5rem; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(246, 196, 83, .12), rgba(255, 138, 61, .05)); border: 1px solid rgba(246, 196, 83, .28); }
	@container content (min-width: 1000px) { .promo { grid-template-columns: minmax(0, 1fr) auto; align-items: center; } }
	.promo__title { font: 800 var(--fs-h3)/1.25 var(--serif); letter-spacing: -.015em; }
	.promo__text { margin-top: .35rem; color: var(--fg-muted); font-size: var(--fs-15); }
	.promo__action { display: flex; flex-direction: column; align-items: flex-start; }
	@container content (min-width: 1000px) { .promo__action { align-items: flex-end; text-align: right; } }
	
	.qa h2 { margin-bottom: 1rem; }
	.qa__list { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); overflow: clip; }
	.qa__item + .qa__item { border-top: 1px solid var(--line); }
	.qa__item summary { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; cursor: pointer; font: 600 var(--fs-16)/1.4 var(--sans); color: var(--fg); transition: background var(--speed-1); }
	.qa__item summary:hover { background: rgba(255, 255, 255, .03); }
	.qa__item summary:focus-visible { outline-offset: -3px; }
	.qa__chev { flex: none; width: 18px; height: 18px; margin-top: .15rem; color: var(--fg-muted); rotate: 90deg; transition: rotate var(--speed-2) var(--curve-out); }
	.qa__item[open] .qa__chev { rotate: -90deg; }
	.qa__body { padding: 0 1.2rem 1.15rem; }
	.qa__body p { font-size: var(--fs-16); line-height: 1.65; color: var(--fg-muted); }
	.qa__body a, .note a, .block-head__sub a, .deck a { text-decoration: underline; text-decoration-color: rgba(127, 227, 212, .45); }
	.qa__item { scroll-margin-top: calc(var(--bar-h) + 1rem); }
	@supports (interpolate-size: allow-keywords) {
		:root { interpolate-size: allow-keywords; }
		.qa__item::details-content { block-size: 0; overflow: clip; transition: block-size var(--speed-3) var(--curve-out), content-visibility var(--speed-3) allow-discrete; }
		.qa__item[open]::details-content { block-size: auto; }
	}
	
	.further h2 { margin-bottom: 1rem; }
	.prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
	.prevnext__link { display: flex; align-items: center; gap: .6rem; padding: .9rem 1rem; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--surface); color: var(--fg); font: 600 var(--fs-14)/1.3 var(--serif); text-decoration: none; transition: border-color var(--speed-2), background var(--speed-2); }
	.prevnext__link:hover { border-color: var(--line-strong); background: var(--surface-2); text-decoration: none; }
	.prevnext__link small { display: block; font: 500 var(--fs-12)/1 var(--sans); color: var(--fg-subtle); margin-bottom: .25rem; }
	.prevnext__link--next { justify-content: flex-end; text-align: right; }
	.prevnext__icon { width: 18px; height: 18px; flex: none; color: var(--fg-subtle); }
	
	.sidenav { position: fixed; top: 0; right: calc(100% - 100vw); bottom: 0; z-index: 60; width: min(320px, 88vw); padding: .75rem 1rem 1.5rem; background: var(--surface); border-left: 1px solid var(--line); border-radius: var(--radius-lg) 0 0 var(--radius-lg); box-shadow: var(--elev-2); overflow-y: auto; overscroll-behavior: contain; translate: 100% 0; visibility: hidden; transition: translate var(--speed-3) var(--curve-out), visibility 0s linear var(--speed-3); }
	html.nav-open .sidenav { translate: 0 0; visibility: visible; transition: translate var(--speed-3) var(--curve-out), visibility 0s; }
	html.nav-open { overflow: hidden; scrollbar-gutter: stable; }
	.sidenav-backdrop { position: fixed; inset: 0; z-index: 55; background: rgba(4, 8, 10, .7); opacity: 0; transition: opacity var(--speed-3); }
	html.nav-open .sidenav-backdrop { opacity: 1; }
	.sidenav__top { display: flex; align-items: center; justify-content: space-between; min-height: 44px; margin-bottom: .75rem; }
	.logo--sb .logo__word { font-size: var(--fs-16); }
	.sidenav__close { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); color: var(--fg); }
	.sidenav__close svg { width: 18px; height: 18px; }
	.nav-group + .nav-group { margin-top: .9rem; }
	.nav-group--minor { padding-top: .9rem; border-top: 1px solid var(--line); }
	.nav-heading { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin: 0 .35rem .35rem .6rem; font: 700 var(--fs-12)/1.2 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--fg-subtle); }
	summary.nav-heading { cursor: pointer; padding: .35rem 0; margin-bottom: .1rem; border-radius: 6px; }
	summary.nav-heading:hover { color: var(--fg-muted); }
	.nav-chev { width: 14px; height: 14px; rotate: 90deg; transition: rotate var(--speed-2) var(--curve-out); }
	.nav-group--fold[open] .nav-chev { rotate: -90deg; }
	.nav-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
	.nav-link { position: relative; display: flex; align-items: center; gap: .65rem; min-height: 40px; padding: .45rem .6rem; border-radius: 6px; color: var(--fg-muted); font: 500 var(--fs-14)/1.25 var(--sans); text-decoration: none; transition: background var(--speed-1), color var(--speed-1); }
	.nav-link:hover { background: rgba(255, 255, 255, .045); color: var(--fg); text-decoration: none; }
	.nav-link:focus-visible { outline-offset: -3px; }
	.nav-link[aria-current="page"] { background: var(--brand-wash); color: var(--fg); font-weight: 600; box-shadow: inset -3px 0 0 var(--brand); }
	.nav-link.is-parent { color: var(--fg); }
	.nav-ico { width: 18px; height: 18px; flex: none; color: var(--fg-subtle); }
	.nav-link:hover .nav-ico, .nav-link[aria-current="page"] .nav-ico { color: var(--brand-light); }
	.nav-thumb { width: 24px; height: 36px; border-radius: 4px; object-fit: cover; flex: none; box-shadow: 0 2px 6px rgba(0, 0, 0, .5); }
	.nav-thumb--round { width: 26px; height: 26px; border-radius: 50%; }
	.nav-link__label { flex: 1 1 auto; min-width: 0; overflow-wrap: anywhere; }
	.nav-count { flex: none; font: 500 var(--fs-12)/1 var(--sans); color: var(--fg-subtle); font-variant-numeric: tabular-nums; }
	.nav-promo { margin-top: 1.25rem; padding: 1rem; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(246, 196, 83, .11), rgba(255, 138, 61, .05)); border: 1px solid rgba(246, 196, 83, .24); }
	.nav-promo__text { margin-bottom: .7rem; font: 500 var(--fs-13)/1.45 var(--sans); color: var(--fg-muted); }
	@media (min-width: 1024px) {
		.sidenav { position: sticky; inset: auto; top: calc(var(--bar-h) + 1rem); width: auto; max-width: none; padding: .75rem .6rem 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: none; translate: 0 0; visibility: visible; transition: none; z-index: 1; max-height: calc(100vh - var(--bar-h) - 2rem); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
		body.admin-bar .sidenav { top: calc(32px + var(--bar-h) + 1rem); max-height: calc(100vh - 32px - var(--bar-h) - 2rem); }
		.sidenav__top, .sidenav-backdrop { display: none !important; }
		html.nav-open { overflow: visible; }
	}
	
	.colophon { margin-top: var(--sp-6); padding-block: var(--sp-7) var(--sp-6); border-top: 2px solid; border-image: linear-gradient(90deg, var(--brand), var(--brand-alt), var(--warm)) 1; background: var(--surface); font-size: var(--fs-14); color: var(--fg-subtle); }
	.colophon__grid { display: grid; gap: var(--sp-6); }
	@media (min-width: 640px) { .colophon__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6) var(--sp-7); } .colophon__brand { grid-column: 1 / -1; } }
	@media (min-width: 1024px) { .colophon__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } .colophon__brand { grid-column: auto; } }
	.logo--foot .logo__word { font-size: var(--fs-18); }
	.legal-note { margin-top: 1rem; padding: 1rem 1.1rem; border-radius: var(--radius-sm); background: rgba(255, 255, 255, .03); border: 1px solid var(--line); color: var(--fg-muted); font-size: var(--fs-13); line-height: 1.55; }
	.legal-note strong { color: var(--fg); }
	.colophon__h { font: 700 var(--fs-12)/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--fg-subtle); margin-bottom: .8rem; }
	.colophon__col ul { list-style: none; display: flex; flex-direction: column; gap: .1rem; }
	.colophon__col a { display: inline-block; padding: .35rem 0; color: var(--fg-muted); text-decoration: none; }
	.colophon__col a:hover { color: var(--fg); text-decoration: underline; }
	.colophon__more { color: var(--brand-light) !important; }
	.colophon__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid var(--line); }
	.colophon__legal { display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; }
	.colophon__legal a, .colophon__legal button { padding: .35rem 0; color: var(--fg-muted); font: 500 var(--fs-13)/1.3 var(--sans); text-decoration: none; }
	.colophon__legal a:hover, .colophon__legal button:hover { color: var(--fg); text-decoration: underline; }
	.colophon__copy { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; font-size: var(--fs-13); color: var(--fg-subtle); max-width: 60ch; }
	
	.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; padding: .6rem var(--edge) calc(.6rem + env(safe-area-inset-bottom)); background: rgba(12, 16, 20, .92); border-top: 1px solid var(--line); translate: 0 110%; transition: translate var(--speed-3) var(--curve-out); }
	.sticky-cta.is-visible { translate: 0 0; }
	@media (min-width: 640px) { .sticky-cta { display: none; } }
	@media (max-width: 639px) { html:not(.adult-ok) body.has-age-banner .sticky-cta { translate: 0 110%; } }
	html.js body.view-guide, html.js body.view-series, html.js body.view-creator { --sticky-pad: 72px; }
	@media (max-width: 639px) { .colophon { padding-bottom: calc(var(--sp-6) + var(--sticky-pad, 0px)); } }
	.age-banner { position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 50; display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; max-width: 620px; margin-inline: auto; padding: .9rem 1rem; border-radius: var(--radius-md); background: var(--surface-2); border: 1px solid var(--line-strong); box-shadow: var(--elev-2); font-size: var(--fs-14); color: var(--fg-muted); }
	.age-banner p { flex: 1 1 260px; }
	@media (min-width: 1024px) { .age-banner { left: auto; right: 24px; bottom: 24px; } }
	html.adult-ok .age-banner, html:not(.js) .age-banner { display: none; }
	html:not(.adult-ok) body.has-age-banner { padding-bottom: 120px; }
	html { scroll-padding-bottom: 1.5rem; }
	html:not(.adult-ok):has(body.has-age-banner) { scroll-padding-bottom: 140px; }
	@media (max-width: 639px) { html.js:has(body.view-guide), html.js:has(body.view-series), html.js:has(body.view-creator) { scroll-padding-bottom: 96px; } }
	html.nav-open .age-banner, html.nav-open .consent { visibility: hidden; }
	.agewall { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(8, 12, 15, .9); backdrop-filter: blur(10px); }
	html.adult-ok .agewall { display: none !important; }
	html.js:not(.adult-ok) body.agewall-open { overflow: hidden; }
	.agewall__box { max-width: 460px; text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--line-strong); box-shadow: var(--elev-2); }
	.agewall__title { font: 800 var(--fs-h3)/1.2 var(--serif); margin-bottom: .6rem; }
	.agewall__box p { color: var(--fg-muted); font-size: var(--fs-15); }
	.agewall__box small { display: block; margin-top: 1rem; color: var(--fg-subtle); }
	.agewall__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1.25rem; }
	.consent { position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 52; max-width: 520px; padding: 1rem 1.1rem; border-radius: var(--radius-md); background: var(--surface-2); border: 1px solid var(--line-strong); box-shadow: var(--elev-2); font-size: var(--fs-14); color: var(--fg-muted); }
	.consent p { margin-bottom: .7rem; }
	.consent .actions { margin: 0; }
	@media (min-width: 1024px) { .consent { left: auto; right: 24px; bottom: 24px; } }
	html.consent-done .consent, html:not(.adult-ok) .consent:not(.consent--force) { display: none; }
	body.has-age-banner .consent { bottom: 110px; }
}
@layer helpers {
	.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
	.skip-link { position: absolute; top: .75rem; left: .75rem; z-index: 1000; padding: .6rem 1rem; border-radius: 8px; background: var(--brand); color: var(--on-brand); font-weight: 700; clip-path: inset(50%); }
	.skip-link:focus { clip-path: none; }
	.ico { width: 1em; height: 1em; }
	@media (prefers-reduced-motion: reduce) {
		*, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
		.poster:hover .poster__thumb img { scale: 1; }
	}
	@media (forced-colors: active) {
		.ui-btn, .nav-link, .tile, .poster__thumb, .token { outline: 1px solid; }
		.ui-btn--primary { forced-color-adjust: none; }
	}
	@media print {
		.masthead, .sidenav, .sidenav-backdrop, .consent, .agewall, .age-banner, .sticky-cta, .readbar, .promo, .nav-promo, .colophon__legal, .outline { display: none !important; }
		body { background: #fff; color: #000; }
		.shell { display: block; }
		.content { border: 0; padding: 0; }
		a { color: #000; text-decoration: underline; }
	}
}
