/* Pixel Warriors marketing site. Fill-first depth like the game's UI: tone-on-tone
   panels with a darker bottom course, no outline rings; the one glow is the CTA. */

/* BoldPixels by Yuki (CC BY-SA 4.0), the game's own typeface. Single drawn
   weight; the 100-900 range stops browsers from synthesizing a fake bold. */
@font-face {
	font-family: "BoldPixels";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/bold-pixels-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+2013-2014, U+2018-2019, U+201C-201D, U+2026;
}

@font-face {
	font-family: "Nunito";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/nunito-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2013-2014, U+2018-2019, U+201C-201D, U+2026, U+2212;
}

:root {
	--bg0: #0c0a12;
	--bg1: #131020;
	--panel: #1a1530;
	--panel-2: #221c3d;
	--ink: #f4eeda;
	--muted: #a99fc7;
	--faint: #8a81b0;
	--gold: #f5c542;
	--gold-deep: #b97f24;
	--ember: #ff7a4d;
	--leaf: #86d96c;
	--line: #2e2650;
	--edge: #080611;
	--font-display: "BoldPixels", "Courier New", monospace;
	--font-body: "Nunito", -apple-system, "Segoe UI", sans-serif;
	--nav-height: 4.25rem;
	--radius: 6px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nav-height) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--ink);
	background: var(--bg0);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.pixel-art {
	image-rendering: pixelated;
}

a {
	color: var(--gold);
	text-decoration: none;
}

a:hover {
	color: #ffd968;
}

/* Fill-first focus: a gold course, never an outline ring. */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px var(--gold);
	border-radius: var(--radius);
}

/* Scroll-reveal only arms when JS is present, so content never hides without it. */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 500ms ease, transform 500ms ease;
}

.js [data-reveal].is-revealed {
	opacity: 1;
	transform: none;
}

.container {
	width: min(1120px, 92vw);
	margin-inline: auto;
}

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.01em;
}

.section-kicker {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.9rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ember);
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(1.75rem, 4.2vw, 2.6rem);
	margin-bottom: 1rem;
}

.section-lead {
	color: var(--muted);
	max-width: 60ch;
}

section {
	padding: clamp(4rem, 9vw, 6.5rem) 0;
}

/* Battlement divider between major bands: teeth on top, solid course below. */
.pixel-divider {
	height: 12px;
	background:
		repeating-linear-gradient(90deg, var(--panel-2) 0 24px, transparent 24px 48px) top / 48px 6px repeat-x,
		linear-gradient(var(--line), var(--line)) bottom / 100% 6px no-repeat;
}

/* ---------- Buttons: fill-first, darker bottom course ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	padding: 0.8rem 1.6rem;
	border-radius: var(--radius);
	border: 0;
	cursor: pointer;
	transition: transform 120ms ease, filter 120ms ease;
}

.btn:active {
	transform: translateY(2px);
}

.btn-primary {
	color: #241703;
	background: linear-gradient(180deg, #ffd968 0%, var(--gold) 55%, #e2a92f 100%);
	box-shadow: 0 4px 0 var(--gold-deep), 0 0 24px rgba(245, 197, 66, 0.25);
}

.btn-primary:hover {
	color: #241703;
	filter: brightness(1.06);
}

.btn-ghost {
	color: var(--ink);
	background: var(--panel-2);
	box-shadow: 0 4px 0 var(--edge);
}

.btn-ghost:hover {
	color: var(--ink);
	filter: brightness(1.15);
}

/* ---------- Nav ---------- */

.site-nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	height: var(--nav-height);
	transition: background-color 200ms ease, box-shadow 200ms ease;
}

.site-nav.is-scrolled {
	background: rgba(12, 10, 18, 0.92);
	backdrop-filter: blur(8px);
	box-shadow: 0 2px 0 var(--edge);
}

.nav-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--ink);
}

.nav-brand img {
	width: 34px;
	height: 34px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
}

.nav-links a:not(.btn) {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--muted);
}

.nav-links a:not(.btn):hover {
	color: var(--ink);
}

.nav-links .btn {
	font-size: 0.9rem;
	padding: 0.55rem 1.1rem;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
	content: "";
	display: block;
	width: 22px;
	height: 3px;
	margin-inline: auto;
	background: var(--ink);
	transition: transform 200ms ease, opacity 200ms ease;
}

@media (max-width: 760px) {
	.nav-toggle {
		display: flex;
	}
	.nav-links {
		position: fixed;
		top: var(--nav-height);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0.75rem 4vw 1.25rem;
		background: var(--bg0);
		box-shadow: 0 4px 0 var(--edge);
		transform: translateY(-130%);
		visibility: hidden;
		transition: transform 220ms ease, visibility 220ms;
	}
	body.nav-open .nav-links {
		transform: translateY(0);
		visibility: visible;
	}
	.nav-links li {
		padding: 0.65rem 0;
	}
	body.nav-open .nav-toggle span {
		opacity: 0;
	}
	body.nav-open .nav-toggle::before {
		transform: translateY(8px) rotate(45deg);
	}
	body.nav-open .nav-toggle::after {
		transform: translateY(-8px) rotate(-45deg);
	}
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	padding-top: calc(var(--nav-height) + clamp(3rem, 8vw, 5.5rem));
	background:
		radial-gradient(1000px 480px at 75% -10%, rgba(94, 60, 160, 0.35), transparent 65%),
		radial-gradient(700px 380px at 12% 8%, rgba(255, 122, 77, 0.14), transparent 60%),
		linear-gradient(rgba(12, 10, 18, 0.74), rgba(12, 10, 18, 0.93)),
		url("../images/hero-bg.webp?v=20260720") center / cover,
		var(--bg1);
	image-rendering: pixelated;
	overflow: hidden;
}

/* Ember motes drifting up; pure CSS, no assets. */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(2px 2px at 18% 82%, rgba(245, 197, 66, 0.75), transparent 55%),
		radial-gradient(2px 2px at 41% 64%, rgba(255, 122, 77, 0.6), transparent 55%),
		radial-gradient(3px 3px at 66% 88%, rgba(245, 197, 66, 0.5), transparent 55%),
		radial-gradient(2px 2px at 87% 60%, rgba(255, 216, 104, 0.65), transparent 55%);
	background-repeat: no-repeat;
	animation: motes 11s linear infinite;
	pointer-events: none;
}

/* Second mote layer on its own clock so the drift never reads as lockstep. */
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(3px 3px at 28% 74%, rgba(255, 216, 104, 0.7), transparent 55%),
		radial-gradient(4px 4px at 58% 92%, rgba(255, 122, 77, 0.55), transparent 55%),
		radial-gradient(3px 3px at 80% 78%, rgba(245, 197, 66, 0.6), transparent 55%);
	background-repeat: no-repeat;
	animation: motes 17s linear infinite;
	animation-delay: -6s;
	pointer-events: none;
}

@keyframes motes {
	from {
		transform: translateY(12vh);
		opacity: 0;
	}
	12% {
		opacity: 1;
	}
	88% {
		opacity: 1;
	}
	to {
		transform: translateY(-58vh);
		opacity: 0;
	}
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.hero-copy .game-logo {
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	text-shadow: 0 4px 0 var(--edge);
	margin-bottom: 1rem;
}

.hero-copy .game-logo .accent {
	color: var(--gold);
}

.hero-tagline {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--muted);
	max-width: 46ch;
	margin-bottom: 1.75rem;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 2rem;
}

.store-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	align-items: flex-start;
}

.badge-store {
	position: relative;
	display: inline-block;
}

.badge-store img {
	height: 52px;
	width: auto;
}

.badge-store.is-soon {
	pointer-events: none;
	filter: saturate(0.55) brightness(0.9);
}

.badge-store.is-soon .soon-chip {
	position: absolute;
	top: -1.05rem;
	right: -0.35rem;
	font-family: var(--font-display);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	color: #241703;
	background: var(--gold);
	padding: 0.15rem 0.5rem;
	border-radius: 3px;
	box-shadow: 0 2px 0 var(--gold-deep), 0 0 0 2px var(--bg1);
	transform: rotate(3deg);
}

.badge-store:nth-child(2) .soon-chip {
	transform: rotate(-2deg);
}

/* The banner's copy already says the badges light up on launch day. */
.cta-banner .soon-chip {
	display: none;
}

.hero-note {
	margin-top: 0.9rem;
	font-size: 0.9rem;
	color: var(--faint);
}

.hero-shot {
	position: relative;
}

.hero-shot img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow:
		0 6px 0 var(--edge),
		0 24px 60px rgba(0, 0, 0, 0.55);
}


@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}
	.hero-copy {
		text-align: center;
	}
	.hero-tagline {
		margin-inline: auto;
	}
	.hero-ctas,
	.store-badges {
		justify-content: center;
	}
}

/* A warrior column marches the hero's bottom edge; pure CSS steps() over the
   game's own walk strips. Reduced-motion freezes them off-screen at -120px. */
.hero-march {
	position: relative;
	height: 96px;
	margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-march .marcher {
	position: absolute;
	bottom: 0;
	left: -120px;
	width: 96px;
	height: 96px;
	image-rendering: pixelated;
	background-repeat: no-repeat;
	background-size: auto 96px;
	animation:
		march-walk 0.65s steps(6) infinite,
		march-cross 20s linear infinite;
}

@keyframes march-walk {
	to {
		background-position-x: -576px;
	}
}

@keyframes march-walk-5 {
	to {
		background-position-x: -480px;
	}
}

@keyframes march-cross {
	to {
		transform: translateX(calc(100vw + 240px));
	}
}

/* Per-marcher rules match the base's two-class specificity so the delays and
   the king's five-frame cycle survive the base animation shorthand. */
.hero-march .marcher-king {
	background-image: url("../images/march-king.png?v=20260719");
	animation-name: march-walk-5, march-cross;
	animation-duration: 0.7s, 20s;
	animation-timing-function: steps(5), linear;
}

.hero-march .marcher-swordsman {
	background-image: url("../images/march-swordsman.png?v=20260719");
	animation-delay: -0.2s, -1.5s;
}

.hero-march .marcher-spearman {
	background-image: url("../images/march-spearman.png?v=20260719");
	animation-delay: -0.45s, -3s;
}

.hero-march .marcher-archer {
	background-image: url("../images/march-archer.png?v=20260719");
	animation-delay: -0.1s, -4.5s;
}

.game-logo .h1-sub {
	display: block;
	font-size: 0.4em;
	color: var(--muted);
	letter-spacing: 0.06em;
	margin-top: 0.6rem;
	text-shadow: none;
}

/* Two overlapped portrait shots, slightly fanned like drawn cards. */
.hero-duo {
	position: relative;
	max-width: 400px;
	margin-inline: auto;
	padding: 1rem 0 1.5rem;
}

.hero-duo .shot-front {
	position: relative;
	z-index: 1;
	width: 84%;
	transform: rotate(-2deg);
}

.hero-duo .shot-back {
	position: absolute;
	top: 3.5rem;
	right: -2%;
	width: 78%;
	transform: rotate(5deg);
	filter: brightness(0.72);
}

.story-quote {
	border-left: 4px solid var(--gold);
	padding: 0.35rem 0 0.35rem 1.1rem;
	margin: 0.5rem 0 1.25rem;
	color: var(--muted);
	font-style: italic;
}

.story-quote cite {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.85rem;
	font-style: normal;
	color: var(--faint);
}

/* ---------- Trust strip ---------- */

.trust-strip {
	padding: 1.4rem 0;
	background: var(--panel);
	box-shadow: inset 0 4px 0 var(--edge), inset 0 -4px 0 var(--edge);
}

.trust-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 3rem;
	list-style: none;
}

.trust-items li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-display);
	font-size: 0.98rem;
	color: var(--ink);
}

.trust-items svg {
	width: 32px;
	height: 32px;
	flex: none;
}

/* ---------- Features ---------- */

.features {
	background: var(--bg0);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.feature-card {
	background: var(--panel);
	border-radius: var(--radius);
	padding: 1.8rem 1.6rem 2rem;
	box-shadow: 0 5px 0 var(--edge), inset 0 1px 0 rgba(244, 238, 218, 0.05);
	transition: transform 160ms ease, filter 160ms ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	filter: brightness(1.05);
}

.feature-card .pixel-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	image-rendering: pixelated;
}

.feature-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.feature-card p {
	color: var(--muted);
	font-size: 0.98rem;
}

.feature-card .count {
	color: var(--gold);
	font-family: var(--font-display);
}

/* ---------- Story ---------- */

.story {
	background:
		radial-gradient(900px 420px at 20% 110%, rgba(94, 60, 160, 0.28), transparent 65%),
		var(--bg1);
}

.story-grid {
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.story-shot img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: 0 6px 0 var(--edge), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.story-copy p + p {
	margin-top: 1rem;
}

.story-copy p {
	color: var(--muted);
}

.story-copy .section-lead strong {
	color: var(--ink);
}

@media (max-width: 900px) {
	.story-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Chapters: the war map ---------- */

.chapters {
	background: var(--bg1);
}

.chapter-track {
	display: flex;
	gap: 1rem;
	margin-top: 2.5rem;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	padding-bottom: 1rem;
	scrollbar-width: thin;
	scrollbar-color: var(--line) transparent;
}

.chapter-card {
	flex: 1 0 200px;
	min-width: 200px;
	scroll-snap-align: start;
	background: var(--panel);
	border-radius: var(--radius);
	box-shadow: 0 5px 0 var(--edge), inset 0 1px 0 rgba(244, 238, 218, 0.05);
	overflow: hidden;
	transition: transform 160ms ease, filter 160ms ease;
}

.chapter-card:hover {
	transform: translateY(-4px);
	filter: brightness(1.06);
}

.chapter-card img {
	width: 100%;
}

.chapter-body {
	padding: 1rem 1.1rem 1.3rem;
}

.chapter-no {
	font-family: var(--font-display);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ember);
}

.chapter-card h3 {
	font-size: 1.02rem;
	margin: 0.35rem 0 0.4rem;
}

.chapter-card p {
	font-size: 0.88rem;
	color: var(--muted);
}

/* ---------- Media gallery ---------- */

.media {
	background: var(--bg0);
}

.media-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.shots-nav {
	display: flex;
	gap: 0.6rem;
}

.shots-nav button {
	width: 44px;
	height: 44px;
	font-family: var(--font-display);
	font-size: 1.15rem;
	color: var(--ink);
	background: var(--panel-2);
	border: 0;
	border-radius: var(--radius);
	box-shadow: 0 4px 0 var(--edge);
	cursor: pointer;
	transition: filter 120ms ease, transform 120ms ease;
}

.shots-nav button:hover {
	filter: brightness(1.2);
}

.shots-nav button:active {
	transform: translateY(2px);
}

/* Bleeds to the right viewport edge so the cut card reads as a designed peek. */
.shots-track {
	display: flex;
	gap: 1.25rem;
	margin-top: 2.5rem;
	margin-right: calc(50% - 50vw);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 1rem;
	padding-right: 4vw;
	scrollbar-width: thin;
	scrollbar-color: var(--line) transparent;
}

.shots-track figure {
	flex: 0 0 min(78vw, 460px);
	scroll-snap-align: start;
}

.shots-track img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: 0 5px 0 var(--edge);
}

.shots-track figcaption {
	margin-top: 0.7rem;
	font-size: 0.88rem;
	color: var(--muted);
	text-align: center;
}

/* ---------- FAQ ---------- */

.faq {
	background: var(--bg0);
	text-align: center;
}

.faq .section-lead {
	margin-inline: auto;
}

.faq-list {
	margin-top: 2.5rem;
	margin-inline: auto;
	display: grid;
	gap: 0.9rem;
	max-width: 820px;
	text-align: left;
}

.faq-list details {
	background: var(--panel);
	border-radius: var(--radius);
	box-shadow: 0 4px 0 var(--edge);
	padding: 1.1rem 1.4rem;
}

.faq-list summary {
	font-family: var(--font-display);
	font-size: 1.08rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	content: "+" / "";
	font-family: var(--font-display);
	color: var(--gold);
	font-size: 1.3rem;
	transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
	transform: rotate(45deg);
}

.faq-list details p {
	margin-top: 0.75rem;
	color: var(--muted);
	font-size: 0.98rem;
}

/* ---------- Download banner ---------- */

.cta-banner {
	background:
		radial-gradient(720px 300px at 50% 120%, rgba(245, 197, 66, 0.18), transparent 70%),
		var(--panel);
	box-shadow: inset 0 5px 0 var(--edge), inset 0 -5px 0 var(--edge);
	text-align: center;
}

.cta-banner .section-title {
	margin-bottom: 0.5rem;
}

.cta-banner p {
	color: var(--muted);
	margin-bottom: 2rem;
}

.cta-banner .store-badges {
	justify-content: center;
}

/* ---------- Footer ---------- */

.site-footer {
	padding: 3.5rem 0 2rem;
	background: var(--bg0);
	box-shadow: inset 0 4px 0 var(--edge);
}

.footer-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--ink);
}

.footer-brand img {
	width: 28px;
	height: 28px;
}

.footer-tagline {
	color: var(--faint);
	font-size: 0.92rem;
	margin-top: 0.6rem;
	max-width: 26ch;
}

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem 3.5rem;
}

.footer-column {
	display: grid;
	gap: 0.5rem;
	align-content: start;
}

.footer-heading {
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 0.35rem;
}

.footer-column a {
	color: var(--muted);
	font-size: 0.95rem;
}

.footer-column a:hover {
	color: var(--ink);
}

.footer-bottom {
	border-top: 2px solid var(--line);
	padding-top: 1.4rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	color: var(--faint);
	font-size: 0.88rem;
}

/* ---------- Scroll to top ---------- */

.scroll-top {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 40;
	width: 46px;
	height: 46px;
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--ink);
	background: var(--panel-2);
	border: 0;
	border-radius: var(--radius);
	box-shadow: 0 4px 0 var(--edge);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 200ms ease, visibility 200ms;
}

.scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* ---------- Reveal on scroll: armed under .js at the top of the file ---------- */

/* ---------- 404 ---------- */

.notfound-main {
	min-height: 100vh;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 6rem 1rem 4rem;
	background: var(--bg1);
}

/* A swordsman marches in place, going nowhere, much like this URL. */
.lost-warrior {
	width: 96px;
	height: 96px;
	margin: 0 auto 1.25rem;
	image-rendering: pixelated;
	background: url("../images/march-swordsman.png?v=20260719") 0 0 / auto 96px no-repeat;
	animation: march-walk 0.65s steps(6) infinite;
}

.notfound-main h1 {
	font-size: clamp(2rem, 6vw, 3.2rem);
	margin-bottom: 0.75rem;
}

.notfound-main p {
	color: var(--muted);
	margin-bottom: 1.75rem;
}
