@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/assets/barlow-condensed-bold-20260812.ttf") format("truetype");
}

@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("/assets/barlow-condensed-extrabold-20260812.ttf") format("truetype");
}

@font-face {
	font-family: "Nunito";
	font-style: normal;
	font-weight: 200 1000;
	font-display: swap;
	src: url("/assets/nunito-variable-20260813.ttf") format("truetype");
}

:root {
	color-scheme: dark;
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-synthesis: none;
	--background: #030814;
	--surface: #0c1628;
	--surface-raised: #101c31;
	--line: #24334f;
	--line-cyan: #21bff4;
	--line-violet: #874bff;
	--text: #f7f8fd;
	--muted: #b6c2d8;
	--subtle: #8b9ab4;
	--cyan: #20baf3;
	--blue: #2577fa;
	--violet: #7e36f3;
	--focus: #69e1ff;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--background);
	scroll-behavior: smooth;
	scrollbar-color: #394b6b var(--background);
	scrollbar-width: thin;
}

body {
	min-width: 280px;
	min-height: 100vh;
	margin: 0;
	background:
		radial-gradient(circle at 21% 40%, rgba(28, 166, 239, 0.065), transparent 27rem),
		radial-gradient(circle at 80% 36%, rgba(116, 56, 242, 0.075), transparent 28rem),
		linear-gradient(180deg, #020713 0%, #050b19 58%, #020713 100%);
	color: var(--text);
}

.catalog-page {
	min-width: 0;
	padding:
		env(safe-area-inset-top)
		env(safe-area-inset-right)
		env(safe-area-inset-bottom)
		env(safe-area-inset-left);
}

.catalog-page .skip-link {
	top: max(12px, env(safe-area-inset-top));
	left: max(12px, env(safe-area-inset-left));
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	background-image:
		radial-gradient(circle at 17% 29%, rgba(255, 255, 255, 0.28) 0 0.7px, transparent 0.9px),
		radial-gradient(circle at 79% 68%, rgba(112, 210, 255, 0.25) 0 0.65px, transparent 0.9px);
	background-position: 0 0, 38px 51px;
	background-size: 127px 127px, 173px 173px;
	content: "";
	opacity: 0.13;
	pointer-events: none;
}

::selection {
	background: #6939db;
	color: #fff;
}

a {
	color: inherit;
	text-decoration-thickness: 0.12em;
	text-underline-offset: 0.22em;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 20;
	padding: 11px 15px;
	border-radius: 10px;
	background: var(--text);
	color: var(--background);
	font-weight: 800;
	transform: translateY(-170%);
}

.skip-link:focus {
	transform: translateY(0);
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.site-shell {
	width: min(100% - 80px, 1400px);
	margin: 0 auto;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 112px;
	border-bottom: 1px solid rgba(139, 154, 180, 0.24);
	gap: 24px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: "Nunito", ui-rounded, system-ui, sans-serif;
	font-size: clamp(1.82rem, 2vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1;
}

.brand-link,
.header-link {
	text-decoration: none;
}

.brand-link {
	min-height: 44px;
}

.brand-name {
	color: var(--text);
	text-shadow: 0 2px 12px rgba(247, 248, 253, 0.08);
	white-space: nowrap;
}

.brand-dot {
	color: #ff5baa;
}

.brand-mark {
	display: block;
	width: 58px;
	height: 58px;
	object-fit: contain;
	filter: drop-shadow(0 8px 16px rgba(75, 43, 219, 0.24));
	flex: 0 0 58px;
}

.header-label {
	color: #e6ebf6;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

main {
	padding: clamp(25px, 3.15vw, 44px) 0 64px;
}

.intro {
	max-width: 980px;
	margin: 0 auto clamp(24px, 2.7vw, 36px);
	text-align: center;
}

.intro-summary {
	max-width: 64ch;
	margin: 20px auto 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.55;
}

h1,
h2,
h3,
p {
	text-wrap: pretty;
}

h1 {
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(4.35rem, 7.1vw, 6rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 0.89;
	text-transform: uppercase;
}

h1 span,
h1 strong {
	display: block;
}

h1 span {
	color: #f5f6fa;
	text-shadow: 0 3px 22px rgba(255, 255, 255, 0.08);
}

h1 strong {
	color: #667bf9;
	font-weight: inherit;
	text-shadow:
		-11px 0 30px rgba(30, 188, 246, 0.15),
		11px 0 32px rgba(128, 53, 242, 0.17);
}

.catalog-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	scroll-margin-top: 24px;
	gap: 20px;
	animation: catalog-handoff 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes catalog-handoff {
	from {
		opacity: 0.88;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.catalog-heading h2,
.catalog-count {
	margin: 0;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.catalog-heading h2 {
	color: #dce4f2;
}

.catalog-count {
	color: var(--subtle);
}

.game-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 24px;
}

.game-card {
	position: relative;
	display: flex;
	overflow: hidden;
	min-width: 0;
	border: 1px solid var(--line-cyan);
	border-radius: 15px;
	background: linear-gradient(155deg, rgba(16, 28, 49, 0.985), rgba(8, 16, 31, 0.99));
	flex-direction: column;
	transition:
		border-color 190ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 190ms cubic-bezier(0.22, 1, 0.36, 1);
}

.plane-game-card {
	border-color: var(--line-violet);
}

.game-visual {
	position: relative;
	width: calc(100% - 16px);
	min-width: 0;
	margin: 8px 8px 0;
	aspect-ratio: 2 / 1;
	overflow: hidden;
	border-radius: 12px;
	background: #060b16;
}

.game-visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.space-game-visual {
	background: #03040a;
}

.space-game-visual img {
	object-position: center;
}

.plane-game-visual {
	aspect-ratio: 2 / 1;
	background:
		radial-gradient(circle at 0 0, #4cb0f3, rgb(76 176 243 / 0%) 52%),
		radial-gradient(circle at 100% 100%, #addaf4, rgb(173 218 244 / 0%) 52%),
		linear-gradient(180deg, #0584f8, #69c2f8);
}

.plane-game-visual img {
	object-fit: cover;
	object-position: center 44%;
}

.game-copy {
	display: flex;
	align-items: flex-start;
	min-width: 0;
	min-height: 300px;
	padding: clamp(24px, 2vw, 31px);
	flex: 1;
	flex-direction: column;
}

.game-copy h3 {
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(2.6rem, 3.7vw, 3.6rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 0.94;
}

.game-copy > p {
	max-width: 60ch;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.55;
}

.catalog-page .game-copy h3,
.catalog-page .game-copy > p,
.catalog-page .game-actions a {
	overflow-wrap: anywhere;
}

.catalog-support-link {
	color: #bdefff;
	font-weight: 750;
	text-decoration-color: rgba(105, 225, 255, 0.58);
	text-underline-offset: 0.18em;
}

.game-facts {
	display: flex;
	flex-wrap: wrap;
	margin: 24px 0 0;
	padding: 0;
	gap: 9px;
	list-style: none;
}

.game-facts li {
	padding: 7px 13px;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.045em;
	line-height: 1;
	text-transform: uppercase;
}

.fact-free {
	background: #0e4b83;
	color: #8fddff;
}

.fact-browser {
	background: #3c245f;
	color: #d3a4ff;
}

.fact-download {
	background: #123e4a;
	color: #82efff;
}

.play-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	margin-top: auto;
	padding: 14px 18px;
	border-radius: 10px;
	background: linear-gradient(96deg, #158bea 0%, #316af4 48%, #802cf0 100%);
	box-shadow: 0 14px 25px -13px rgba(50, 105, 245, 0.9);
	color: #fff;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.015em;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		box-shadow 190ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 190ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 190ms cubic-bezier(0.22, 1, 0.36, 1);
}

.game-actions {
	display: grid;
	width: 100%;
	margin-top: auto;
	grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
	gap: 10px;
}

.game-actions .play-link {
	margin-top: 0;
}

.details-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 16px;
	border: 1px solid rgba(174, 124, 255, 0.72);
	border-radius: 10px;
	background: rgba(24, 24, 49, 0.84);
	color: #e8ddff;
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0.015em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color 190ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 190ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 190ms cubic-bezier(0.22, 1, 0.36, 1);
}

a:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 4px;
}

footer {
	display: flex;
	align-items: center;
	min-height: 76px;
	border-top: 1px solid rgba(139, 154, 180, 0.2);
}

footer p {
	margin: 0;
	color: var(--subtle);
	font-size: 0.875rem;
}

.not-found-main {
	display: grid;
	min-height: calc(100vh - 112px);
	min-height: calc(100svh - 112px);
	padding: clamp(32px, 5vw, 72px) 0;
	place-items: center;
}

.not-found {
	position: relative;
	display: grid;
	overflow: hidden;
	width: min(100%, 1120px);
	min-height: 500px;
	padding: clamp(40px, 5vw, 68px);
	border: 1px solid var(--line-violet);
	border-radius: 15px;
	background:
		radial-gradient(circle at 77% 46%, rgba(47, 106, 244, 0.1), transparent 19rem),
		linear-gradient(155deg, rgba(16, 28, 49, 0.985), rgba(8, 16, 31, 0.99));
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	align-items: center;
	gap: clamp(28px, 4vw, 56px);
}

.not-found::before {
	position: absolute;
	top: 0;
	right: 13%;
	left: 13%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--line-cyan) 30%, var(--line-violet) 72%, transparent);
	content: "";
}

.not-found-copy {
	position: relative;
	z-index: 2;
}

.not-found h1 {
	font-size: clamp(4rem, 5.2vw, 5.5rem);
	text-align: left;
}

.not-found .intro-copy {
	max-width: 48ch;
	margin: 24px 0 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.55;
}

.not-found .play-link {
	width: min(100%, 328px);
	margin-top: 32px;
	background: linear-gradient(96deg, #0b6bbf 0%, #2451c7 48%, #641dbc 100%);
	gap: 12px;
}

.action-arrow {
	display: block;
	overflow: visible;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform 190ms cubic-bezier(0.22, 1, 0.36, 1);
}

.not-found-signal {
	position: relative;
	display: grid;
	min-width: 0;
	min-height: 360px;
	isolation: isolate;
	place-items: center;
}

.not-found-code {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	margin: 0;
	color: var(--text);
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(10.25rem, 16vw, 14.5rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 0.72;
	text-shadow: 0 6px 28px rgba(247, 248, 253, 0.08);
}

.not-found-zero {
	color: #667bf9;
	text-shadow:
		-10px 0 28px rgba(30, 188, 246, 0.16),
		10px 0 30px rgba(128, 53, 242, 0.2);
}

.lost-route {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.lost-route-line {
	fill: none;
	stroke: var(--focus);
	stroke-dasharray: 0.018 0.024;
	stroke-linecap: round;
	stroke-opacity: 0.74;
	stroke-width: 2;
	vector-effect: non-scaling-stroke;
	animation: lost-route-handoff 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lost-route-start,
.lost-route-end {
	fill: #69e1ff;
}

.lost-route-start {
	fill: #ff5baa;
}

.lost-tile {
	position: absolute;
	top: 21%;
	right: 8%;
	z-index: 3;
	display: block;
	width: 64px;
	height: 46px;
	padding: 6px;
	border: 1px solid #69e1ff;
	border-radius: 10px;
	background: linear-gradient(155deg, var(--surface-raised), var(--surface));
	transform: rotate(8deg);
	animation: lost-tile-arrival 760ms cubic-bezier(0.16, 1, 0.3, 1) 80ms both;
}

.lost-tile span {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--line-cyan), var(--line-violet));
}

.lost-tile::after {
	position: absolute;
	right: 7px;
	bottom: 7px;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	background: #ff5baa;
	content: "";
}

.not-found-status {
	position: absolute;
	right: 15%;
	bottom: 11%;
	z-index: 3;
	padding: 7px 12px;
	border-radius: 6px;
	background: #123e4a;
	color: #82efff;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

@keyframes lost-route-handoff {
	from {
		filter: blur(2px);
		opacity: 0;
		stroke-dashoffset: 0.25;
	}

	to {
		filter: blur(0);
		opacity: 1;
		stroke-dashoffset: 0;
	}
}

@keyframes lost-tile-arrival {
	from {
		filter: blur(3px);
		opacity: 0;
		transform: translate(-54px, 86px) rotate(-5deg);
	}

	to {
		filter: blur(0);
		opacity: 1;
		transform: translate(0, 0) rotate(8deg);
	}
}

.fighter-main {
	padding-top: clamp(30px, 4vw, 56px);
}

.fighter-hero {
	display: grid;
	align-items: center;
	min-height: min(690px, calc(100vh - 168px));
	grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(38px, 5vw, 76px);
}

.fighter-hero-copy {
	position: relative;
	z-index: 1;
}

.fighter-eyebrow {
	margin: 0 0 14px;
	color: #a9dcff;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fighter-hero h1 {
	font-size: clamp(5rem, 8vw, 8rem);
	line-height: 0.78;
	text-align: left;
}

.fighter-hero h1 strong {
	color: #8d5dff;
	text-shadow: 11px 0 32px rgba(128, 53, 242, 0.22);
}

.fighter-lede {
	max-width: 50ch;
	margin: 28px 0 0;
	color: var(--muted);
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	line-height: 1.6;
}

.fighter-facts {
	margin-top: 22px;
}

.fact-account {
	background: #24304e;
	color: #ced9f1;
}

.fighter-play-link {
	width: min(100%, 360px);
	margin-top: 30px;
}

.fighter-hero-art {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line-violet);
	border-radius: 15px;
	background: #071323;
	box-shadow: 0 28px 70px -38px rgba(79, 86, 255, 0.8);
}

.fighter-hero-art::after {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 7px rgba(4, 11, 25, 0.45);
	content: "";
	pointer-events: none;
}

.fighter-hero-art img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.fighter-loop {
	padding: clamp(72px, 8vw, 112px) 0 0;
}

.fighter-section-copy {
	display: grid;
	align-items: end;
	margin-bottom: 30px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
	column-gap: 48px;
}

.fighter-section-copy .fighter-eyebrow {
	grid-column: 1 / -1;
}

.fighter-section-copy h2,
.fighter-final h2 {
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(3.2rem, 5vw, 5.1rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 0.88;
	text-transform: uppercase;
}

.fighter-section-copy > p:last-child {
	max-width: 48ch;
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

.fighter-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.fighter-shot {
	overflow: hidden;
	margin: 0;
	border: 1px solid rgba(72, 105, 156, 0.86);
	border-radius: 15px;
	background: linear-gradient(155deg, rgba(16, 28, 49, 0.985), rgba(8, 16, 31, 0.99));
}

.fighter-shot-wide {
	grid-column: 1 / -1;
}

.fighter-shot img {
	display: block;
	width: calc(100% - 16px);
	height: auto;
	margin: 8px 8px 0;
	border-radius: 12px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.fighter-shot figcaption {
	padding: 18px 22px 20px;
	color: #dce4f2;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fighter-guide,
.fighter-controls,
.fighter-faq {
	padding-top: clamp(72px, 8vw, 112px);
	scroll-margin-top: 28px;
}

.fighter-guide-heading {
	display: grid;
	align-items: end;
	margin-bottom: 30px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
	gap: 48px;
}

.fighter-guide-heading h2 {
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(3.2rem, 5vw, 5.1rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 0.88;
	text-transform: uppercase;
}

.fighter-guide-heading p {
	max-width: 52ch;
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.fighter-guide-steps {
	display: grid;
	margin: 0;
	padding: 0;
	border-block: 1px solid rgba(139, 154, 180, 0.3);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	counter-reset: fighter-step;
}

.fighter-guide-steps li {
	min-width: 0;
	padding: 30px clamp(22px, 3vw, 38px) 34px;
	counter-increment: fighter-step;
}

.fighter-guide-steps li + li {
	border-left: 1px solid rgba(139, 154, 180, 0.24);
}

.fighter-guide-steps h3 {
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(1.65rem, 2.6vw, 2.35rem);
	font-weight: 750;
	letter-spacing: -0.015em;
	line-height: 1;
	text-transform: uppercase;
}

.fighter-guide-steps h3::before {
	display: block;
	margin-bottom: 18px;
	color: #bda2ff;
	content: "0" counter(fighter-step);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.fighter-guide-steps p {
	margin: 18px 0 0;
	color: var(--muted);
	line-height: 1.65;
}

.fighter-control-columns {
	display: grid;
	border-block: 1px solid rgba(139, 154, 180, 0.3);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fighter-control-columns > section {
	min-width: 0;
	padding: 30px clamp(22px, 3vw, 38px) 34px;
}

.fighter-control-columns > section + section {
	border-left: 1px solid rgba(139, 154, 180, 0.24);
}

.fighter-control-columns h3 {
	margin: 0;
	color: #d9caff;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 2rem;
	font-weight: 750;
	letter-spacing: -0.015em;
	text-transform: uppercase;
}

.fighter-control-columns ul {
	margin: 20px 0 0;
	padding-left: 1.1rem;
	color: var(--muted);
	line-height: 1.65;
}

.fighter-control-columns li + li {
	margin-top: 9px;
}

.fighter-control-columns li::marker {
	color: #a876ff;
}

.fighter-control-columns strong {
	color: #f5f6fa;
}

.fighter-faq-list {
	border-top: 1px solid rgba(139, 154, 180, 0.3);
}

.fighter-faq-list details {
	border-bottom: 1px solid rgba(139, 154, 180, 0.3);
}

.fighter-faq-list summary {
	padding: 22px 42px 22px 0;
	color: #f5f6fa;
	cursor: pointer;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.4;
}

.fighter-faq-list p {
	max-width: 72ch;
	margin: -4px 0 24px;
	color: var(--muted);
	line-height: 1.65;
}

.fighter-final {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: clamp(72px, 8vw, 112px);
	padding: clamp(30px, 4vw, 48px);
	border: 1px solid var(--line-violet);
	border-radius: 15px;
	background:
		radial-gradient(circle at 85% 10%, rgba(119, 54, 245, 0.18), transparent 19rem),
		linear-gradient(155deg, rgba(16, 28, 49, 0.985), rgba(8, 16, 31, 0.99));
	gap: 38px;
}

.fighter-final-link {
	width: min(100%, 320px);
	margin-top: 0;
	flex: 0 0 320px;
}

@media (hover: hover) {
	.game-card:hover {
		border-color: #68dcff;
		transform: translateY(-3px);
	}

	.plane-game-card:hover {
		border-color: #ae7cff;
	}

	.details-link:hover {
		border-color: #d4b9ff;
		background: rgba(63, 36, 104, 0.88);
		transform: translateY(-1px);
	}

	.fighter-hero-art:hover {
		border-color: #ae7cff;
	}

	.fighter-shot:hover {
		border-color: rgba(105, 225, 255, 0.76);
	}

	.play-link:hover {
		box-shadow: 0 17px 31px -12px rgba(75, 89, 252, 0.95);
		filter: brightness(1.1) saturate(1.07);
		transform: translateY(-1px);
	}

	.not-found .play-link:hover .action-arrow {
		transform: translateX(3px);
	}
}

.game-card:focus-within {
	border-color: var(--focus);
}

@media (max-width: 900px) {
	.site-shell {
		width: min(100% - 48px, 820px);
	}

	.site-header {
		min-height: 88px;
	}

	.brand-mark {
		width: 48px;
		height: 48px;
		flex-basis: 48px;
	}

	main {
		padding-top: 38px;
	}

	.game-grid {
		gap: 18px;
	}

	.game-actions {
		grid-template-columns: 1fr;
	}

	.game-copy {
		min-height: 306px;
		padding: 25px;
	}

	.not-found {
		min-height: 460px;
		padding: 38px;
		grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
		gap: 24px;
	}

	.not-found h1 {
		font-size: clamp(3.25rem, 7vw, 4rem);
	}

	.not-found-signal {
		min-height: 320px;
	}

	.fighter-hero {
		min-height: 570px;
		grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
		gap: 32px;
	}

	.fighter-section-copy {
		column-gap: 32px;
	}
}

@media (max-width: 760px) {
	html {
		scroll-behavior: auto;
	}

	.site-shell {
		width: min(100% - 32px, 640px);
	}

	.site-header {
		min-height: 74px;
	}

	.brand {
		gap: 10px;
		font-size: 1.5rem;
	}

	.brand-mark {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.header-label {
		font-size: 0.72rem;
	}

	.catalog-page .header-label {
		font-size: 0.875rem;
	}

	main {
		padding: 34px 0 52px;
	}

	.intro {
		margin-bottom: 28px;
		text-align: left;
	}

	h1 {
		font-size: clamp(3.25rem, 15vw, 4.8rem);
		line-height: 0.92;
	}

	.catalog-heading {
		margin-bottom: 12px;
	}

	.game-grid {
		grid-template-columns: 1fr;
	}

	.game-copy {
		min-height: 0;
		padding: 24px 22px 22px;
	}

	.game-copy h3 {
		font-size: clamp(2.7rem, 14vw, 3.6rem);
	}

	.play-link {
		margin-top: 25px;
	}

	.game-actions {
		margin-top: 25px;
		grid-template-columns: 1fr;
	}

	.game-actions .play-link {
		margin-top: 0;
	}

	.fighter-main {
		padding-top: 32px;
	}

	.fighter-hero {
		min-height: 0;
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.fighter-hero h1 {
		font-size: clamp(4.7rem, 24vw, 7rem);
	}

	.fighter-lede {
		margin-top: 22px;
	}

	.fighter-play-link {
		width: 100%;
	}

	.fighter-hero-art {
		grid-row: 2;
	}

	.fighter-loop {
		padding-top: 72px;
	}

	.fighter-section-copy {
		display: block;
		margin-bottom: 24px;
	}

	.fighter-section-copy > p:last-child {
		margin-top: 20px;
	}

	.fighter-guide-heading {
		display: block;
		margin-bottom: 24px;
	}

	.fighter-guide-heading p {
		margin-top: 20px;
	}

	.fighter-guide-steps,
	.fighter-control-columns {
		grid-template-columns: 1fr;
	}

	.fighter-guide-steps li + li,
	.fighter-control-columns > section + section {
		border-top: 1px solid rgba(139, 154, 180, 0.24);
		border-left: 0;
	}

	.fighter-gallery {
		grid-template-columns: 1fr;
	}

	.fighter-shot-wide {
		grid-column: auto;
	}

	.fighter-final {
		align-items: stretch;
		margin-top: 72px;
		padding: 30px 24px;
		flex-direction: column;
	}

	.fighter-final-link {
		width: 100%;
		flex-basis: auto;
	}

	.not-found-main {
		min-height: calc(100vh - 74px);
		min-height: calc(100svh - 74px);
		padding: 38px 0;
	}

	.not-found {
		min-height: 0;
		padding: 32px 24px;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.not-found h1 {
		font-size: clamp(3.25rem, 15vw, 4.8rem);
	}

	.not-found .intro-copy {
		font-size: 1rem;
	}

	.not-found-signal {
		min-height: 230px;
	}

	.not-found-code {
		font-size: clamp(9rem, 34vw, 11rem);
	}

	.lost-tile {
		top: 17%;
		right: 12%;
	}

	.not-found-status {
		right: 17%;
		bottom: 7%;
	}
}

@media (min-width: 600px) and (max-width: 900px) and (max-height: 600px) {
	main {
		padding-top: 18px;
	}

	.intro {
		margin-bottom: 18px;
	}

	h1 {
		font-size: clamp(2.9rem, 7vw, 4rem);
		line-height: 0.9;
	}

	.catalog-heading {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
		border: 0;
		animation: none;
	}

	.game-grid {
		grid-template-columns: 1fr;
	}

	.game-card {
		display: grid;
		grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.18fr);
	}

	.game-visual,
	.plane-game-visual {
		width: calc(100% - 8px);
		height: calc(100% - 16px);
		margin: 8px 0 8px 8px;
		aspect-ratio: auto;
	}

	.game-copy {
		min-height: 292px;
		padding: 22px;
	}

	.game-copy h3 {
		font-size: 2.6rem;
	}

	.game-copy > p {
		margin-top: 12px;
		font-size: 0.9rem;
		line-height: 1.45;
	}

	.game-facts {
		margin-top: 15px;
	}

	.game-actions {
		margin-top: auto;
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr);
		gap: 8px;
	}

	.details-link {
		padding-inline: 10px;
		font-size: 0.78rem;
	}

	.catalog-page .details-link {
		font-size: 0.875rem;
	}

	.fighter-hero {
		min-height: 0;
		grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
	}

	.not-found-main {
		min-height: calc(100vh - 88px);
		min-height: calc(100svh - 88px);
		padding: 18px 0;
	}

	.not-found {
		min-height: 0;
		padding: 28px 34px;
		grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
		gap: 24px;
	}

	.not-found h1 {
		font-size: clamp(3.25rem, 7vw, 4.35rem);
	}

	.not-found .intro-copy {
		margin-top: 18px;
		font-size: 0.94rem;
	}

	.not-found .play-link {
		margin-top: 22px;
	}

	.not-found-signal {
		min-height: 260px;
	}

	.not-found-code {
		font-size: clamp(8.5rem, 18vw, 11rem);
	}
}

@media (max-width: 480px) {
	.site-header > .header-label:not(.header-link) {
		display: none;
	}

	.not-found {
		padding: 28px 20px 24px;
	}

	.not-found-signal {
		min-height: 210px;
	}

	.lost-tile {
		width: 56px;
		height: 42px;
	}
}

@media (min-width: 600px) and (max-width: 700px) and (max-height: 600px) {
	.not-found-main {
		padding: 14px 0;
	}

	.not-found {
		padding: 24px;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.not-found h1 {
		font-size: 3.25rem;
	}

	.not-found .intro-copy {
		margin-top: 16px;
	}

	.not-found .play-link {
		margin-top: 18px;
	}

	.not-found-signal {
		min-height: 180px;
	}
}

@media (max-width: 360px) {
	.site-shell {
		width: min(100% - 24px, 640px);
	}

	.brand-name {
		font-size: 1.34rem;
	}

	h1 {
		font-size: 3rem;
	}

	.not-found h1 {
		font-size: 3.2rem;
	}

	.not-found .play-link {
		padding-inline: 14px;
		font-size: 0.9rem;
	}

	.not-found-code {
		font-size: 8.25rem;
	}

	.game-copy {
		padding: 21px 18px 18px;
	}

	.game-facts li {
		padding: 7px 10px;
		font-size: 0.7rem;
	}

	.catalog-page .site-header {
		gap: 12px;
	}

	.catalog-page .game-facts li {
		font-size: 0.75rem;
	}
}

@media (max-width: 300px) {
	.catalog-page .site-header {
		gap: 8px;
	}

	.catalog-page .brand {
		gap: 8px;
	}

	.catalog-page .brand-name {
		font-size: 1.2rem;
	}

	.catalog-page .brand-mark {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.game-card,
	.play-link,
	.details-link,
	.action-arrow {
		transition: none;
	}

	.catalog-heading {
		animation: none;
	}

	.lost-route-line,
	.lost-tile {
		animation: none;
	}
}

@media (forced-colors: active) {
	.catalog-page .game-card,
	.catalog-page .game-visual,
	.catalog-page .game-facts li,
	.catalog-page .play-link,
	.catalog-page .details-link {
		border: 1px solid CanvasText;
	}

	.catalog-page .play-link,
	.catalog-page .details-link,
	.catalog-page .catalog-support-link,
	.catalog-page .header-link {
		text-decoration: underline;
	}

	.catalog-page .game-card:focus-within {
		border-color: Highlight;
	}
}

/* Mine & Survive landing — scoped port of the canonical game landing styles. */
.space-page {
	--space-ink: #f8fbff;
	--space-muted: #a9b7cb;
	--space-navy: #050916;
	--space-navy-deep: #01030a;
	--space-line: rgba(153, 201, 245, 0.18);
	--space-cyan: #54d5ff;
	--space-cyan-bright: #a9efff;
	--space-orange: #ff7628;
	--space-orange-bright: #ffb44f;
	--space-violet: #7c4dff;
	--space-violet-readable: #bba8ff;
	--space-green: #6bf1aa;
	background:
		radial-gradient(circle at 12% 16%, rgba(70, 34, 148, 0.24), transparent 30rem),
		radial-gradient(circle at 88% 4%, rgba(29, 132, 199, 0.24), transparent 28rem),
		linear-gradient(180deg, #071124 0%, var(--space-navy) 46%, var(--space-navy-deep) 100%);
	color: var(--space-ink);
	line-height: 1.55;
}

.space-page::before {
	opacity: 0.32;
	background-image:
		radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.4px),
		radial-gradient(circle, rgba(84, 213, 255, 0.5) 0 1px, transparent 1.5px);
	background-position: 0 0, 43px 61px;
	background-size: 91px 91px, 137px 137px;
}

.space-page .space-game-nav {
	display: flex;
	min-height: 78px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.space-page .space-game-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--space-ink);
	line-height: 1;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

.space-page .space-game-brand > span {
	display: grid;
	gap: 4px;
}

.space-page .space-game-brand strong {
	font-size: 0.8rem;
}

.space-page .space-game-brand small {
	color: var(--space-cyan);
	font-size: 0.61rem;
	font-weight: 900;
	letter-spacing: 0.2em;
}

.space-page .space-game-brand img {
	display: block;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(151, 193, 239, 0.42);
	border-radius: 9px;
	box-shadow: 0 0 22px rgba(84, 213, 255, 0.4);
	object-fit: cover;
}

.space-page .space-game-links {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.space-page .space-game-links a {
	display: inline-flex;
	min-height: 44px;
	padding-inline: 8px;
	align-items: center;
	color: var(--space-muted);
	text-decoration: none;
}

.space-page .space-game-links a:hover,
.space-page .space-game-links a:focus-visible {
	color: var(--space-ink);
}

.space-page .space-game-links .space-nav-play {
	padding: 10px 20px;
	border: 1px solid rgba(169, 239, 255, 0.55);
	border-radius: 999px;
	color: #04101d;
	background: var(--space-cyan-bright);
	box-shadow: 0 8px 26px rgba(84, 213, 255, 0.18);
}

.space-page .space-main {
	padding: 8px 0 0;
}

.space-page .space-main img {
	display: block;
	max-width: 100%;
}

.space-page .space-main h1,
.space-page .space-main h2,
.space-page .space-main h3 {
	margin-top: 0;
	line-height: 0.98;
}

.space-page .hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
	min-height: 680px;
	padding: 50px 48px 110px;
	align-items: center;
	gap: 38px;
	border: 1px solid rgba(181, 219, 255, 0.24);
	border-radius: 34px;
	background: #02050d;
	box-shadow:
		0 42px 100px rgba(0, 0, 0, 0.5),
		0 0 70px rgba(66, 154, 223, 0.1);
	overflow: hidden;
}

.space-page .hero::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(1, 4, 12, 0.76) 0%, rgba(2, 5, 14, 0.48) 48%, rgba(2, 5, 14, 0.22) 100%),
		linear-gradient(0deg, rgba(2, 5, 13, 0.92) 0%, rgba(3, 7, 18, 0.16) 60%, transparent 100%);
}

.space-page .hero-art {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0.46;
}

.space-page .hero-art.hero-art-visible {
	opacity: 0.78;
	filter: saturate(1.08) contrast(1.03);
}

.space-page .hero-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.space-page .hero-copy {
	position: relative;
	z-index: 2;
	min-width: 0;
}

.space-page .eyebrow {
	margin: 0 0 16px;
	color: var(--space-cyan-bright);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.space-page .hero h1 {
	margin: 0 0 18px;
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(3.1rem, 4.65vw, 4.85rem);
	font-weight: 950;
	letter-spacing: -0.04em;
	line-height: 0.98;
	text-align: left;
	text-shadow:
		0 4px 0 rgba(6, 11, 25, 0.95),
		0 10px 26px rgba(0, 0, 0, 0.5);
}

.space-page .hero h1 > span,
.space-page .hero h1 em {
	display: block;
}

.space-page .hero h1 > span {
	color: var(--space-ink);
	margin-bottom: 10px;
	font-size: 0.48em;
	letter-spacing: 0.02em;
	line-height: 1.05;
	text-transform: uppercase;
}

.space-page .hero h1 em {
	color: var(--space-orange-bright);
	font-style: normal;
	text-shadow:
		0 4px 0 #8f2913,
		0 12px 32px rgba(255, 79, 29, 0.28);
}

.space-page .hero-summary {
	max-width: 560px;
	margin: 0;
	color: #d2dceb;
	font-size: 1rem;
}

.space-page .launch-promise {
	margin: 17px 0 0;
	color: var(--space-green);
	font-size: 0.69rem;
	font-weight: 850;
	letter-spacing: 0.055em;
	line-height: 1.55;
	text-transform: uppercase;
}

.space-page .launch-promise span {
	margin-inline: 5px;
	color: var(--space-cyan);
}

.space-page .hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.space-page .button {
	display: inline-flex;
	min-height: 52px;
	padding: 12px 23px;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		transform 160ms ease,
		box-shadow 160ms ease,
		border-color 160ms ease;
}

.space-page .button:hover,
.space-page .button:focus-visible {
	transform: translateY(-2px);
}

.space-page .button-primary {
	color: #160a02;
	background: linear-gradient(135deg, #ffc35f, var(--space-orange) 62%, #ff5428);
	box-shadow:
		0 4px 0 #8e2916,
		0 14px 32px rgba(255, 91, 31, 0.28);
}

.space-page .button-primary:hover,
.space-page .button-primary:focus-visible {
	box-shadow:
		0 4px 0 #8e2916,
		0 18px 40px rgba(255, 91, 31, 0.42);
}

.space-page .button-ghost {
	border-color: rgba(255, 255, 255, 0.26);
	color: var(--space-ink);
	background: rgba(3, 8, 19, 0.9);
}

.space-page .button-ghost:hover,
.space-page .button-ghost:focus-visible {
	border-color: var(--space-cyan);
}

.space-page .hero-reel {
	position: relative;
	z-index: 2;
	min-width: 0;
	margin: 0;
	padding: 7px;
	border: 1px solid rgba(169, 239, 255, 0.42);
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(84, 213, 255, 0.22), transparent 36%),
		#07101e;
	box-shadow:
		0 32px 74px rgba(0, 0, 0, 0.5),
		0 0 54px rgba(84, 213, 255, 0.1);
	overflow: hidden;
	scroll-margin-top: 16px;
}

.space-page .hero-reel video {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 15px 15px 8px 8px;
	aspect-ratio: 16 / 9;
	background: #01040a;
	object-fit: cover;
}

.space-page .hero-reel figcaption,
.space-page .proof-screen figcaption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: var(--space-muted);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.space-page .hero-reel figcaption {
	min-height: 44px;
	padding: 9px 10px 2px;
	font-size: 0.55rem;
}

.space-page .hero-reel figcaption span:first-child,
.space-page .proof-screen figcaption span:first-child {
	color: var(--space-green);
}

.space-page .hero-facts {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0 34px;
	border-top: 1px solid rgba(183, 222, 255, 0.2);
	background: rgba(2, 6, 15, 0.94);
	list-style: none;
}

.space-page .hero-facts li {
	display: grid;
	min-height: 76px;
	align-content: center;
	padding-inline: 20px;
	border-right: 1px solid rgba(183, 222, 255, 0.14);
}

.space-page .hero-facts li:last-child {
	border-right: 0;
}

.space-page .hero-facts strong {
	font-size: 1.15rem;
	line-height: 1;
}

.space-page .hero-facts span {
	margin-top: 4px;
	color: var(--space-muted);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.space-page .section {
	padding-block: 88px;
}

.space-page .section-heading {
	margin-bottom: 46px;
}

.space-page .split-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	gap: 70px;
	align-items: end;
}

.space-page .section-heading h2,
.space-page .quick-intro h2,
.space-page .final-cta h2 {
	margin-bottom: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(2.5rem, 4.55vw, 4.55rem);
	font-weight: 950;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.space-page .split-heading > p,
.space-page .quick-intro > p:last-child,
.space-page .final-cta p {
	margin: 0;
	color: var(--space-muted);
}

.space-page .proof-screen {
	position: relative;
	margin: 0;
	padding: 9px;
	border: 1px solid rgba(169, 239, 255, 0.34);
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(84, 213, 255, 0.24), transparent 30%),
		#07101e;
	box-shadow:
		0 36px 90px rgba(0, 0, 0, 0.45),
		0 0 55px rgba(84, 213, 255, 0.08);
	overflow: hidden;
}

.space-page .proof-screen::before {
	position: absolute;
	top: -120px;
	right: -80px;
	z-index: 1;
	width: 300px;
	height: 300px;
	border: 32px solid rgba(255, 118, 40, 0.08);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.space-page .gameplay-preview {
	display: block;
}

.space-page .proof-screen img {
	width: 100%;
	height: auto;
	border-radius: 19px 19px 10px 10px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #01040a;
}

.space-page .proof-screen figcaption {
	min-height: 52px;
	padding: 8px 14px 0;
	font-size: 0.62rem;
}

.space-page .run {
	padding-top: 30px;
}

.space-page .expedition-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.space-page .expedition-steps li {
	--space-step: var(--space-cyan);
	position: relative;
	min-width: 0;
	min-height: 214px;
	padding: 24px 20px;
	border-top: 4px solid var(--space-step);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(16, 34, 61, 0.94), rgba(6, 14, 28, 0.92));
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.space-page .expedition-steps li:nth-child(2),
.space-page .expedition-steps li:nth-child(5) {
	--space-step: var(--space-orange);
}

.space-page .expedition-steps li:nth-child(3) {
	--space-step: var(--space-violet-readable);
}

.space-page .expedition-steps li:nth-child(4) {
	--space-step: var(--space-green);
}

.space-page .expedition-steps li > span {
	color: var(--space-step);
	font-size: 0.68rem;
	font-weight: 950;
	letter-spacing: 0.16em;
}

.space-page .expedition-steps h3 {
	margin: 36px 0 12px;
	font-size: 1.15rem;
	font-weight: 900;
	text-transform: uppercase;
}

.space-page .expedition-steps p {
	margin: 0;
	color: var(--space-muted);
	font-size: 0.76rem;
}

.space-page .run-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 18px;
}

.space-page .run-gallery figure {
	position: relative;
	margin: 0;
	border: 1px solid rgba(169, 239, 255, 0.2);
	border-radius: 16px;
	background: #07101e;
	overflow: hidden;
}

.space-page .run-gallery img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.space-page .run-gallery figcaption {
	padding: 11px 14px;
	color: var(--space-cyan-bright);
	font-size: 0.58rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.space-page .fleet {
	padding-top: 58px;
}

.space-page .fleet-stage {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin: 0;
	padding: 28px 24px 20px;
	border-block: 1px solid rgba(169, 239, 255, 0.22);
	background:
		radial-gradient(circle at 16% 48%, rgba(84, 213, 255, 0.16), transparent 24%),
		radial-gradient(circle at 87% 44%, rgba(255, 118, 40, 0.14), transparent 26%),
		linear-gradient(rgba(84, 213, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(84, 213, 255, 0.04) 1px, transparent 1px),
		rgba(6, 14, 29, 0.72);
	background-size: auto, auto, 34px 34px, 34px 34px, auto;
	list-style: none;
	overflow: hidden;
}

.space-page .fleet-stage::before {
	position: absolute;
	top: 48%;
	right: 0;
	left: 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(84, 213, 255, 0.35), rgba(255, 118, 40, 0.35), transparent);
}

.space-page .ship {
	--space-ship-scale: 0.78;
	position: relative;
	min-width: 0;
	text-align: center;
}

.space-page .ship-frigate {
	--space-ship-scale: 0.88;
}

.space-page .ship-cruiser {
	--space-ship-scale: 0.98;
}

.space-page .ship-destroyer {
	--space-ship-scale: 1.08;
}

.space-page .ship > span {
	position: absolute;
	top: 4px;
	left: 10px;
	z-index: 2;
	color: var(--space-cyan-bright);
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.15em;
}

.space-page .ship img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
	transform: scale(var(--space-ship-scale));
	filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.62));
}

.space-page .ship div {
	position: relative;
	z-index: 2;
	margin-top: -14px;
	padding-bottom: 14px;
}

.space-page .ship p {
	margin: 0 0 5px;
	color: var(--space-orange-bright);
	font-size: 0.6rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.space-page .ship h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 900;
	text-transform: uppercase;
}

.space-page .ship small {
	display: block;
	margin-top: 8px;
	color: var(--space-muted);
	font-size: 0.55rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.space-page .fleet-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px 38px;
	margin: 26px 0 0;
	padding: 0;
	color: var(--space-muted);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	list-style: none;
	text-transform: uppercase;
}

.space-page .fleet-numbers strong {
	margin-right: 5px;
	color: var(--space-cyan-bright);
	font-size: 1.1rem;
}

.space-page .world {
	padding-top: 52px;
	border-top: 1px solid var(--space-line);
}

.space-page .world-facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.space-page .world-facts li {
	display: grid;
	min-height: 112px;
	padding: 20px;
	align-content: center;
	border: 1px solid rgba(169, 239, 255, 0.2);
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(16, 34, 61, 0.9), rgba(6, 14, 28, 0.88));
}

.space-page .world-facts strong {
	color: var(--space-orange-bright);
	font-size: 1.8rem;
	line-height: 1;
}

.space-page .world-facts span {
	margin-top: 8px;
	color: var(--space-muted);
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.space-page .station-proof {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
	align-items: stretch;
	border: 1px solid rgba(107, 241, 170, 0.25);
	border-radius: 24px;
	background:
		radial-gradient(circle at 92% 12%, rgba(107, 241, 170, 0.12), transparent 34%),
		linear-gradient(135deg, #0d1f2d, #07101e);
	overflow: hidden;
}

.space-page .station-proof figure {
	min-width: 0;
	margin: 0;
}

.space-page .station-proof img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.space-page .station-proof > div {
	display: grid;
	padding: clamp(28px, 4vw, 48px);
	align-content: center;
}

.space-page .station-proof h3 {
	margin: 0 0 18px;
	font-size: clamp(1.8rem, 3vw, 3rem);
	font-weight: 950;
	letter-spacing: -0.045em;
	text-transform: uppercase;
}

.space-page .station-proof > div > p:not(.eyebrow) {
	margin: 0;
	color: var(--space-muted);
}

.space-page .station-proof .living-detail {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(107, 241, 170, 0.22);
	font-size: 0.76rem;
}

.space-page .quick-start {
	display: grid;
	grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
	gap: 56px;
	align-items: start;
	border-top: 1px solid var(--space-line);
}

.space-page .quick-intro h2 {
	margin-bottom: 18px;
}

.space-page .quick-controls {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0;
	padding: 0;
	border-block: 1px solid var(--space-line);
	list-style: none;
}

.space-page .quick-controls li {
	display: grid;
	min-height: 156px;
	align-content: center;
	gap: 15px;
	padding: 22px;
	border-right: 1px solid var(--space-line);
}

.space-page .quick-controls li:last-child {
	border-right: 0;
}

.space-page .quick-controls li > span {
	display: flex;
	min-height: 35px;
	align-items: center;
	gap: 5px;
}

.space-page .quick-controls strong {
	display: block;
	font-size: 0.73rem;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.space-page .quick-controls small {
	display: block;
	margin-top: 7px;
	color: var(--space-muted);
	font-size: 0.68rem;
	line-height: 1.45;
}

.space-page kbd {
	display: inline-grid;
	min-width: 30px;
	height: 30px;
	padding-inline: 7px;
	place-items: center;
	border: 1px solid rgba(169, 239, 255, 0.35);
	border-bottom-width: 3px;
	border-radius: 7px;
	color: var(--space-ink);
	background: #12213a;
	font-family: inherit;
	font-size: 0.68rem;
	font-weight: 900;
}

.space-page .control-token {
	display: inline-flex;
	width: fit-content;
	min-height: 31px;
	padding: 7px 11px;
	border: 1px solid rgba(107, 241, 170, 0.46);
	border-radius: 999px;
	color: var(--space-green);
	background: rgba(19, 57, 54, 0.54);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.space-page .account-note {
	grid-column: 2;
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: -30px;
	padding: 22px 24px;
	border: 1px solid rgba(107, 241, 170, 0.24);
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(19, 57, 54, 0.62), rgba(8, 20, 35, 0.82));
}

.space-page .account-note > span {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid rgba(107, 241, 170, 0.5);
	border-radius: 50%;
	color: var(--space-green);
	box-shadow: 0 0 24px rgba(107, 241, 170, 0.13);
	flex: 0 0 44px;
}

.space-page .account-note strong {
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.space-page .account-note p {
	margin: 4px 0 0;
	color: var(--space-muted);
	font-size: 0.78rem;
}

.space-page .active-update {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
	gap: 54px;
	margin-bottom: 30px;
	padding: 30px 34px;
	align-items: center;
	border: 1px solid rgba(84, 213, 255, 0.23);
	border-radius: 20px;
	background:
		radial-gradient(circle at 10% 100%, rgba(84, 213, 255, 0.13), transparent 34%),
		linear-gradient(135deg, rgba(13, 30, 54, 0.94), rgba(10, 17, 35, 0.94));
}

.space-page .active-update .eyebrow {
	margin-bottom: 10px;
	color: var(--space-green);
}

.space-page .active-update h2 {
	margin: 0;
	font-size: clamp(1.5rem, 2.7vw, 2.65rem);
	font-weight: 950;
	letter-spacing: -0.045em;
	text-transform: uppercase;
}

.space-page .active-update > p {
	margin: 0;
	color: var(--space-muted);
}

.space-page .final-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 42px;
	margin-bottom: 72px;
	padding: clamp(36px, 6vw, 68px);
	border: 1px solid rgba(255, 174, 79, 0.32);
	border-radius: 28px;
	background:
		radial-gradient(circle at 80% 18%, rgba(255, 118, 40, 0.28), transparent 26%),
		radial-gradient(circle at 13% 95%, rgba(84, 213, 255, 0.18), transparent 28%),
		linear-gradient(130deg, #17213c, #181329 54%, #281326);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
	overflow: hidden;
}

.space-page .final-cta::after {
	position: absolute;
	right: 23%;
	bottom: -90px;
	width: 220px;
	height: 220px;
	border: 22px solid rgba(255, 174, 79, 0.055);
	border-radius: 50%;
	content: "";
}

.space-page .final-cta > * {
	position: relative;
	z-index: 1;
}

.space-page .final-cta h2 {
	margin-bottom: 13px;
}

.space-page .final-cta .button {
	flex: 0 0 auto;
}

.space-page .space-footer {
	display: flex;
	min-height: 122px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	border-top-color: var(--space-line);
}

.space-page .space-footer p:last-child {
	max-width: 72ch;
	text-align: right;
}

@media (max-width: 980px) {
	.space-page .space-game-links > a:not(.space-nav-play) {
		display: none;
	}

	.space-page .hero {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 34px 34px 0;
		gap: 28px;
	}

	.space-page .hero-art {
		opacity: 0.34;
	}

	.space-page .hero-art.hero-art-visible {
		opacity: 0.68;
	}

	.space-page .hero h1 {
		font-size: clamp(3rem, 8.5vw, 5rem);
	}

	.space-page .hero-facts {
		position: relative;
		right: auto;
		bottom: auto;
		left: auto;
		margin: 0 -34px;
	}

	.space-page .expedition-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.space-page .expedition-steps li:last-child {
		grid-column: 1 / -1;
		min-height: 170px;
	}

	.space-page .station-proof,
	.space-page .active-update,
	.space-page .split-heading,
	.space-page .quick-start {
		grid-template-columns: 1fr;
	}

	.space-page .station-proof img {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.space-page .active-update {
		gap: 14px;
	}

	.space-page .split-heading {
		gap: 22px;
	}

	.space-page .split-heading > p {
		max-width: 680px;
	}

	.space-page .quick-start {
		gap: 30px;
	}

	.space-page .account-note {
		grid-column: auto;
		margin-top: -14px;
	}
}

@media (min-width: 721px) and (max-width: 980px) and (max-height: 600px) {
	.space-page .hero {
		grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
		align-items: center;
		gap: 22px;
		padding: 26px 28px 72px;
	}

	.space-page .hero h1 {
		margin-bottom: 7px;
		font-size: clamp(2.25rem, 5vw, 2.9rem);
		line-height: 0.96;
	}

	.space-page .eyebrow {
		margin-bottom: 6px;
	}

	.space-page .hero-summary {
		font-size: 0.78rem;
		line-height: 1.32;
	}

	.space-page .launch-promise {
		margin-top: 6px;
		font-size: 0.75rem;
		line-height: 1.25;
	}

	.space-page .hero-actions {
		gap: 8px;
		margin-top: 8px;
	}

	.space-page .button {
		min-height: 44px;
		gap: 12px;
		padding: 9px 15px;
		font-size: 0.75rem;
	}

	.space-page .hero-reel {
		padding: 5px;
		border-radius: 16px;
	}

	.space-page .hero-reel video {
		border-radius: 11px 11px 6px 6px;
	}

	.space-page .hero-reel figcaption {
		min-height: 36px;
		padding: 7px 8px 2px;
		font-size: 0.75rem;
	}

	.space-page .hero-facts {
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		margin: 0;
		padding: 0 24px;
	}

	.space-page .hero-facts li {
		min-height: 58px;
		padding-inline: 14px;
	}
}

@media (max-width: 720px) {
	.space-page .space-game-nav {
		min-height: 72px;
	}

	.space-page .space-game-brand strong {
		font-size: 0.75rem;
	}

	.space-page .space-game-brand small {
		font-size: 0.75rem;
	}

	.space-page .space-game-brand img {
		width: 33px;
		height: 33px;
	}

	.space-page .space-game-links .space-nav-play {
		padding: 9px 13px;
		font-size: 0.75rem;
	}

	.space-page .hero {
		padding: 24px 22px 0;
		gap: 22px;
		border-radius: 22px;
	}

	.space-page .hero h1 {
		font-size: clamp(2.35rem, 11.5vw, 3.45rem);
		line-height: 0.98;
	}

	.space-page .hero-summary {
		font-size: 0.91rem;
	}

	.space-page .launch-promise {
		font-size: 0.75rem;
	}

	.space-page .hero-actions {
		display: grid;
	}

	.space-page .button {
		width: 100%;
	}

	.space-page .hero-facts {
		grid-template-columns: 1fr 1fr;
		margin: 0 -22px;
		padding: 0;
	}

	.space-page .hero-facts li {
		min-height: 68px;
		padding-inline: 20px;
		border-bottom: 1px solid rgba(183, 222, 255, 0.14);
	}

	.space-page .hero-facts li:nth-child(2) {
		border-right: 0;
	}

	.space-page .hero-facts li:nth-child(n + 3) {
		border-bottom: 0;
	}

	.space-page .section {
		padding-block: 60px;
	}

	.space-page .section-heading {
		margin-bottom: 28px;
	}

	.space-page .section-heading h2,
	.space-page .quick-intro h2,
	.space-page .final-cta h2 {
		font-size: clamp(2.15rem, 10.25vw, 3.35rem);
	}

	.space-page .proof-screen {
		padding: 5px;
		border-radius: 18px;
	}

	.space-page .proof-screen img {
		border-radius: 13px 13px 7px 7px;
	}

	.space-page .proof-screen figcaption {
		display: grid;
		gap: 3px;
		padding: 9px 8px 5px;
		font-size: 0.75rem;
	}

	.space-page .run {
		padding-top: 18px;
	}

	.space-page .expedition-steps,
	.space-page .run-gallery,
	.space-page .quick-controls {
		grid-template-columns: 1fr;
	}

	.space-page .expedition-steps li,
	.space-page .expedition-steps li:last-child {
		display: grid;
		grid-column: auto;
		grid-template-columns: 44px 1fr;
		min-height: 0;
		padding: 20px;
		gap: 8px;
	}

	.space-page .expedition-steps h3 {
		margin: 0 0 8px;
	}

	.space-page .fleet {
		padding-top: 44px;
	}

	.space-page .fleet-stage {
		grid-template-columns: 1fr 1fr;
		gap: 18px 2px;
		padding: 20px 10px 16px;
	}

	.space-page .ship div {
		margin-top: -10px;
	}

	.space-page .ship h3 {
		font-size: 0.78rem;
	}

	.space-page .ship small {
		font-size: 0.75rem;
	}

	.space-page .fleet-numbers {
		display: grid;
		justify-content: start;
		gap: 10px;
	}

	.space-page .world-facts {
		grid-template-columns: 1fr 1fr;
	}

	.space-page .world-facts li {
		min-height: 100px;
		padding: 16px;
	}

	.space-page .station-proof {
		border-radius: 18px;
	}

	.space-page .station-proof > div {
		padding: 26px 22px;
	}

	.space-page .active-update {
		margin-bottom: 24px;
		padding: 26px 22px;
	}

	.space-page .quick-controls li {
		grid-template-columns: minmax(108px, 0.42fr) 1fr;
		min-height: 96px;
		align-items: center;
		gap: 12px;
		border-right: 0;
		border-bottom: 1px solid var(--space-line);
	}

	.space-page .quick-controls li:last-child {
		border-bottom: 0;
	}

	.space-page .account-note {
		align-items: flex-start;
		padding: 20px;
	}

	.space-page .final-cta {
		display: grid;
		margin-bottom: 44px;
		padding: 34px 24px;
	}

	.space-page .space-footer {
		display: grid;
		gap: 14px;
		padding-block: 28px;
	}

	.space-page .space-footer p:last-child {
		text-align: left;
	}
}

@media (orientation: portrait) {
	.space-page .gameplay-preview img {
		aspect-ratio: 9 / 16;
	}
}

@media (prefers-reduced-motion: reduce) {
	.space-page .button {
		transition: none;
	}
}

/* Publisher reading and fleet-guide surfaces. */
.header-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(14px, 2.2vw, 30px);
}

.header-links .header-link {
	position: relative;
	display: inline-flex;
	min-height: 44px;
	align-items: center;
}

.header-links .header-link::after {
	position: absolute;
	right: 0;
	bottom: 7px;
	left: 0;
	height: 1px;
	background: currentcolor;
	content: "";
	opacity: 0;
	transform: scaleX(0.4);
	transition:
		opacity 170ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 170ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-links .header-link[aria-current="page"],
.header-links .header-link:hover,
.header-links .header-link:focus-visible {
	color: #fff;
}

.header-links .header-link[aria-current="page"]::after,
.header-links .header-link:hover::after,
.header-links .header-link:focus-visible::after {
	opacity: 0.72;
	transform: scaleX(1);
}

.breadcrumbs {
	margin-bottom: clamp(34px, 4vw, 54px);
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 8px 11px;
	color: var(--subtle);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.075em;
	list-style: none;
	text-transform: uppercase;
}

.breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 11px;
}

.breadcrumbs li:not(:last-child)::after {
	width: 18px;
	height: 1px;
	background: currentcolor;
	content: "";
	opacity: 0.5;
}

.breadcrumbs a {
	color: #d5deed;
	text-decoration-color: rgba(105, 225, 255, 0.45);
}

.content-footer {
	display: flex;
	min-height: 94px;
	justify-content: space-between;
	gap: 24px;
}

.content-footer nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px 24px;
	color: var(--muted);
	font-size: 0.8rem;
	font-weight: 750;
}

.release-main {
	padding-top: clamp(26px, 4vw, 56px);
}

.release-hero {
	display: grid;
	min-height: 330px;
	padding: clamp(24px, 4vw, 48px) 0 clamp(42px, 5vw, 64px);
	align-items: end;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
	gap: clamp(44px, 7vw, 104px);
}

.release-hero h1 {
	font-size: clamp(4.35rem, 7.1vw, 6rem);
	line-height: 0.82;
}

.release-intro {
	max-width: 58ch;
	padding-bottom: 4px;
}

.release-intro > p:last-child {
	margin: 24px 0 0;
	color: var(--muted);
	font-size: 1.02rem;
	line-height: 1.65;
}

.release-window {
	display: flex;
	align-items: center;
	margin: 0;
	gap: 11px;
	color: #dce4f2;
	font-size: 0.76rem;
	font-weight: 900;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.095em;
	text-transform: uppercase;
}

.release-window span {
	width: 30px;
	height: 1px;
	background: linear-gradient(90deg, var(--line-cyan), var(--line-violet));
	color: transparent;
}

.release-track {
	position: relative;
	display: grid;
	margin-bottom: clamp(76px, 10vw, 132px);
	border-block: 1px solid rgba(139, 154, 180, 0.28);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.release-track::before {
	position: absolute;
	top: -1px;
	right: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--line-cyan), var(--line-violet));
	content: "";
}

.release-track a {
	position: relative;
	display: grid;
	min-height: 112px;
	padding: 24px 30px;
	align-content: center;
	gap: 7px;
	text-decoration: none;
}

.release-track a + a {
	border-left: 1px solid rgba(139, 154, 180, 0.24);
}

.release-track a::after {
	position: absolute;
	right: 28px;
	width: 8px;
	height: 8px;
	border: 2px solid currentcolor;
	border-radius: 50%;
	content: "";
}

.release-track-space {
	color: #9be9ff;
}

.release-track-fighter {
	color: #cfb3ff;
}

.release-track span {
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
	text-transform: uppercase;
}

.release-track small {
	color: var(--subtle);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.release-game {
	--release-accent: var(--line-cyan);
	position: relative;
	display: grid;
	padding: 0 0 clamp(88px, 11vw, 152px) clamp(24px, 3vw, 42px);
	grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
	column-gap: clamp(42px, 7vw, 108px);
	scroll-margin-top: 28px;
}

.release-game::before {
	position: absolute;
	top: 0;
	bottom: clamp(88px, 11vw, 152px);
	left: 0;
	width: 1px;
	background: linear-gradient(180deg, var(--release-accent), transparent);
	content: "";
}

.release-game-fighter {
	--release-accent: #a876ff;
}

.release-game-heading {
	position: sticky;
	top: 24px;
	display: grid;
	align-self: start;
	gap: 28px;
}

.release-game-heading h2 {
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(3.5rem, 5.2vw, 5.5rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 0.86;
	text-transform: uppercase;
}

.release-game-heading p {
	max-width: 31ch;
	margin: 20px 0 0;
	color: var(--muted);
	line-height: 1.55;
}

.release-game-heading > a {
	width: fit-content;
	color: var(--release-accent);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.release-timeline {
	margin: 0;
	padding: 0;
	list-style: none;
}

.release-timeline > li {
	border-top: 1px solid rgba(139, 154, 180, 0.25);
}

.release-timeline > li:last-child {
	border-bottom: 1px solid rgba(139, 154, 180, 0.25);
}

.release-timeline article {
	display: grid;
	padding: 32px 0 38px;
	grid-template-columns: 120px minmax(0, 1fr);
	column-gap: clamp(24px, 4vw, 58px);
}

.release-timeline article > time,
.release-timeline .release-date-range {
	grid-row: 1 / span 2;
	padding-top: 5px;
	color: var(--release-accent);
	font-size: 0.7rem;
	font-weight: 900;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.release-timeline .release-date-range {
	white-space: nowrap;
}

.release-timeline h3 {
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(1.75rem, 2.7vw, 2.65rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
	text-transform: uppercase;
}

.release-timeline ul {
	max-width: 74ch;
	margin: 20px 0 0;
	padding-left: 1.15rem;
	color: var(--muted);
	line-height: 1.65;
}

.release-timeline li li + li {
	margin-top: 9px;
}

.release-timeline li li::marker {
	color: var(--release-accent);
}

.release-actions {
	display: grid;
	grid-column: 2;
	margin-top: 24px;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
	gap: 12px;
}

.release-actions .play-link {
	margin: 0;
}

.release-actions-single {
	grid-template-columns: minmax(0, 0.75fr);
}

.release-scope {
	display: grid;
	max-width: 980px;
	margin: 0 auto 42px;
	padding: 38px 0 0;
	border-top: 1px solid rgba(139, 154, 180, 0.26);
	grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
	gap: 42px;
}

.release-scope h2 {
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
	text-transform: uppercase;
}

.release-scope p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.fighter-update-link {
	margin: 18px 0 0;
	color: #cfb3ff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.space-page .fleet-explore {
	display: flex;
	justify-content: center;
	margin: 24px 0 0;
}

.space-page .fleet-explore .button {
	width: auto;
}

.space-page .active-update a {
	color: var(--space-cyan-bright);
	font-weight: 850;
}

.space-page .ship-catalog-main,
.space-page .ship-detail-main {
	padding: clamp(24px, 4vw, 52px) 0 72px;
}

.space-page .breadcrumbs {
	margin-bottom: clamp(28px, 4vw, 52px);
}

.space-page .breadcrumbs ol {
	color: #8094ad;
}

.space-page .breadcrumbs a {
	color: #d5e6f4;
	text-decoration-color: rgba(84, 213, 255, 0.48);
}

.space-page .ship-catalog-hero {
	display: grid;
	min-height: 360px;
	padding: clamp(30px, 4vw, 52px) 0 clamp(46px, 5vw, 68px);
	align-items: end;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
	gap: clamp(42px, 8vw, 120px);
}

.space-page .ship-catalog-hero h1,
.space-page .ship-dossier h1 {
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-weight: 800;
	letter-spacing: -0.025em;
	text-align: left;
	text-transform: uppercase;
}

.space-page .ship-catalog-hero h1 {
	font-size: clamp(4.35rem, 7.1vw, 6rem);
	line-height: 0.82;
}

.space-page .ship-catalog-hero h1 span {
	font-size: 0.55em;
	letter-spacing: 0.015em;
	line-height: 1;
}

.space-page .ship-catalog-hero h1 span,
.space-page .ship-catalog-hero h1 strong,
.space-page .ship-dossier h1 span,
.space-page .ship-dossier h1 strong {
	display: block;
}

.space-page .ship-catalog-hero h1 strong,
.space-page .ship-dossier h1 strong {
	color: var(--space-orange-bright);
	font-weight: inherit;
	text-shadow: 0 12px 32px rgba(255, 118, 40, 0.18);
}

.space-page .ship-catalog-hero > div > p {
	max-width: 67ch;
	margin: 28px 0 0;
	color: var(--space-muted);
	font-size: 1.04rem;
	line-height: 1.65;
}

.space-page .ship-hero-actions {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	gap: 12px;
}

.space-page .fleet-system-line {
	display: grid;
	margin: 0;
	border-block: 1px solid rgba(169, 239, 255, 0.26);
}

.space-page .fleet-system-line span {
	display: flex;
	min-height: 52px;
	padding: 13px 4px;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(169, 239, 255, 0.12);
	color: var(--space-cyan-bright);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.095em;
	text-transform: uppercase;
}

.space-page .fleet-system-line span:last-child {
	border-bottom: 0;
}

.space-page .fleet-system-line span::after {
	width: 7px;
	height: 7px;
	border: 1px solid currentcolor;
	border-radius: 50%;
	content: "";
}

.space-page .family-jump {
	display: grid;
	margin-bottom: clamp(74px, 9vw, 124px);
	border-block: 1px solid rgba(169, 239, 255, 0.24);
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.space-page .family-jump a {
	display: grid;
	min-height: 88px;
	padding: 19px 22px;
	align-content: center;
	gap: 4px;
	color: var(--space-ink);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.065em;
	text-decoration: none;
	text-transform: uppercase;
}

.space-page .family-jump a + a {
	border-left: 1px solid rgba(169, 239, 255, 0.18);
}

.space-page .family-jump span {
	color: var(--space-muted);
	font-size: 0.62rem;
	letter-spacing: 0.11em;
}

.space-page .ship-family {
	padding-bottom: clamp(78px, 9vw, 128px);
	scroll-margin-top: 22px;
}

.space-page .ship-family-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 34px;
	gap: 42px;
}

.space-page .ship-family-heading h2,
.space-page .ship-balance-note h2,
.space-page .ship-catalog-cta h2,
.space-page .ship-stats h2,
.space-page .ship-operating-profile h2,
.space-page .ship-siblings h2 {
	margin: 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 0.92;
	text-transform: uppercase;
}

.space-page .ship-family-heading h2 {
	font-size: clamp(3.6rem, 6vw, 6rem);
}

.space-page .ship-family-heading div > p {
	max-width: 62ch;
	margin: 16px 0 0;
	color: var(--space-muted);
	line-height: 1.6;
}

.space-page .ship-family-heading > p {
	margin: 0 0 5px;
	color: var(--space-cyan-bright);
	font-size: 0.67rem;
	font-weight: 900;
	letter-spacing: 0.095em;
	text-transform: uppercase;
	white-space: nowrap;
}

.space-page .ship-grid {
	display: grid;
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	list-style: none;
}

.space-page .ship-card {
	display: flex;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(169, 239, 255, 0.23);
	border-radius: 15px;
	background: linear-gradient(155deg, rgba(16, 34, 61, 0.96), rgba(5, 12, 25, 0.98));
	color: var(--space-ink);
	flex-direction: column;
	text-decoration: none;
	transition:
		border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.space-page .ship-card-visual {
	position: relative;
	margin: 0;
	border-bottom: 1px solid rgba(169, 239, 255, 0.14);
	background:
		radial-gradient(circle at 50% 48%, rgba(84, 213, 255, 0.14), transparent 40%),
		linear-gradient(rgba(84, 213, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(84, 213, 255, 0.035) 1px, transparent 1px),
		#050b16;
	background-size: auto, 28px 28px, 28px 28px, auto;
}

.space-page .ship-card-visual img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
	filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.48));
}

.space-page .ship-card-copy {
	display: flex;
	min-height: 220px;
	padding: 20px 18px 18px;
	flex: 1;
	flex-direction: column;
}

.space-page .ship-card-copy > p {
	margin: 0;
	color: var(--space-orange-bright);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.space-page .ship-card-copy h3 {
	margin: 7px 0 0;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: clamp(1.55rem, 2vw, 2.1rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 0.96;
	text-transform: uppercase;
}

.space-page .ship-card-copy dl {
	display: grid;
	margin: 22px 0 18px;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.space-page .ship-card-copy dl div {
	display: grid;
	gap: 4px;
}

.space-page .ship-card-copy dt {
	color: var(--space-muted);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.space-page .ship-card-copy dd {
	margin: 0;
	color: var(--space-cyan-bright);
	font-size: 0.78rem;
	font-variant-numeric: tabular-nums;
	font-weight: 900;
}

.space-page .ship-card-copy > span {
	display: flex;
	margin-top: auto;
	justify-content: space-between;
	gap: 8px;
	color: #dceafa;
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.space-page .ship-balance-note {
	display: grid;
	max-width: 980px;
	margin: 0 auto clamp(68px, 9vw, 116px);
	padding-top: 34px;
	border-top: 1px solid rgba(169, 239, 255, 0.24);
	grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
	gap: 46px;
}

.space-page .ship-balance-note h2 {
	font-size: 2rem;
}

.space-page .ship-balance-note p {
	margin: 0;
	color: var(--space-muted);
	line-height: 1.65;
}

.space-page .ship-catalog-cta {
	display: flex;
	min-height: 220px;
	padding: clamp(32px, 5vw, 62px);
	align-items: center;
	justify-content: space-between;
	gap: 42px;
	border: 1px solid rgba(255, 174, 79, 0.32);
	border-radius: 24px;
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 118, 40, 0.23), transparent 27%),
		linear-gradient(130deg, #17213c, #17132a 58%, #251326);
	box-shadow: 0 30px 74px rgba(0, 0, 0, 0.3);
}

.space-page .ship-catalog-cta h2 {
	font-size: clamp(2.7rem, 4.6vw, 4.5rem);
}

.space-page .ship-catalog-cta p {
	margin: 14px 0 0;
	color: var(--space-muted);
}

.space-page .ship-catalog-cta .button {
	flex: 0 0 auto;
}

.space-page .ship-dossier {
	display: grid;
	min-height: 610px;
	margin-bottom: clamp(74px, 9vw, 124px);
	border-block: 1px solid rgba(169, 239, 255, 0.25);
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
}

.space-page .ship-dossier-visual {
	position: relative;
	display: grid;
	min-width: 0;
	margin: 0;
	padding: clamp(18px, 3vw, 42px);
	place-items: center;
	border-right: 1px solid rgba(169, 239, 255, 0.19);
	background:
		radial-gradient(circle at 50% 48%, rgba(84, 213, 255, 0.16), transparent 42%),
		linear-gradient(rgba(84, 213, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(84, 213, 255, 0.04) 1px, transparent 1px),
		#040a15;
	background-size: auto, 36px 36px, 36px 36px, auto;
	overflow: hidden;
}

.space-page .ship-dossier-visual::before,
.space-page .ship-dossier-visual::after {
	position: absolute;
	width: 74%;
	height: 74%;
	border: 1px solid rgba(84, 213, 255, 0.15);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.space-page .ship-dossier-visual::after {
	width: 52%;
	height: 52%;
	border-color: rgba(255, 174, 79, 0.14);
}

.space-page .ship-dossier-visual img {
	position: relative;
	z-index: 1;
	display: block;
	width: min(100%, 720px);
	height: auto;
	filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.56));
}

.space-page .ship-dossier-visual figcaption {
	position: absolute;
	right: 22px;
	bottom: 20px;
	left: 22px;
	z-index: 2;
	color: var(--space-muted);
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
}

.space-page .ship-dossier-copy {
	display: flex;
	padding: clamp(38px, 5vw, 76px);
	justify-content: center;
	flex-direction: column;
}

.space-page .ship-dossier h1 {
	margin-top: 0;
	font-size: clamp(4.35rem, 7.1vw, 6rem);
	line-height: 0.78;
}

.space-page .ship-role {
	width: fit-content;
	margin: 26px 0 0;
	padding: 7px 12px;
	border-radius: 6px;
	color: #071421;
	background: var(--space-cyan-bright);
	font-size: 0.65rem;
	font-weight: 950;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.space-page .ship-description {
	margin: 24px 0 0;
	color: var(--space-ink);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.5;
}

.space-page .ship-fit {
	max-width: 66ch;
	margin: 14px 0 0;
	color: var(--space-muted);
	line-height: 1.65;
}

.space-page .ship-availability {
	display: flex;
	align-items: center;
	margin: 20px 0 0;
	gap: 10px;
	color: var(--space-green);
	font-size: 0.69rem;
	font-weight: 900;
	letter-spacing: 0.065em;
	text-transform: uppercase;
}

.space-page .ship-availability::before {
	width: 7px;
	height: 7px;
	border: 1px solid currentcolor;
	border-radius: 50%;
	background: rgba(107, 241, 170, 0.22);
	content: "";
}

.space-page .ship-stats {
	margin-bottom: clamp(72px, 8vw, 112px);
}

.space-page .ship-stats > header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 30px;
	gap: 38px;
}

.space-page .ship-stats h2,
.space-page .ship-operating-profile h2 {
	font-size: clamp(3.2rem, 5vw, 5rem);
}

.space-page .ship-stats > header p {
	max-width: 52ch;
	margin: 0 0 4px;
	color: var(--space-muted);
	line-height: 1.6;
}

.space-page .ship-stat-grid {
	display: grid;
	margin: 0;
	border-block: 1px solid rgba(169, 239, 255, 0.25);
	grid-template-columns: repeat(6, 1fr);
}

.space-page .ship-stat-grid > div {
	min-width: 0;
	padding: 24px 18px;
	border-right: 1px solid rgba(169, 239, 255, 0.15);
}

.space-page .ship-stat-grid > div:last-child {
	border-right: 0;
}

.space-page .ship-stat-grid dt {
	color: var(--space-muted);
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.space-page .ship-stat-grid dd {
	display: grid;
	margin: 19px 0 0;
	align-items: center;
	grid-template-columns: 1fr 18px 1fr;
	color: var(--space-ink);
	font-size: clamp(1rem, 1.7vw, 1.35rem);
	font-variant-numeric: tabular-nums;
	font-weight: 800;
}

.space-page .ship-stat-grid dd i {
	color: var(--space-muted);
	font-size: 0.72rem;
	font-style: normal;
	text-align: center;
}

.space-page .ship-stat-grid dd strong {
	color: var(--space-orange-bright);
	font-weight: 900;
	text-align: right;
}

.space-page .ship-stat-legend {
	display: flex;
	margin: 13px 0 0;
	justify-content: flex-end;
	gap: 24px;
	color: var(--space-muted);
	font-size: 0.59rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.space-page .ship-stat-legend span:last-child {
	color: var(--space-orange-bright);
}

.space-page .ship-operating-profile {
	display: grid;
	margin-bottom: clamp(72px, 8vw, 112px);
	padding-block: clamp(44px, 6vw, 76px);
	border-block: 1px solid rgba(169, 239, 255, 0.22);
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
	gap: clamp(48px, 8vw, 118px);
}

.space-page .ship-operating-profile > div > p {
	max-width: 60ch;
	margin: 24px 0 0;
	color: var(--space-muted);
	line-height: 1.65;
}

.space-page .ship-operating-profile dl {
	display: grid;
	margin: 0;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 30px;
}

.space-page .ship-operating-profile dl > div {
	display: flex;
	min-height: 70px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 1px solid rgba(169, 239, 255, 0.14);
}

.space-page .ship-operating-profile dt {
	color: var(--space-muted);
	font-size: 0.62rem;
	font-weight: 850;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.space-page .ship-operating-profile dd {
	margin: 0;
	color: var(--space-cyan-bright);
	font-size: 0.78rem;
	font-variant-numeric: tabular-nums;
	font-weight: 900;
	text-align: right;
}

.space-page .ship-siblings {
	margin-bottom: 36px;
}

.space-page .ship-siblings h2 {
	font-size: 1.7rem;
}

.space-page .ship-siblings ul {
	display: grid;
	margin: 20px 0 0;
	padding: 0;
	border-block: 1px solid rgba(169, 239, 255, 0.22);
	grid-template-columns: repeat(5, 1fr);
	list-style: none;
}

.space-page .ship-siblings li + li {
	border-left: 1px solid rgba(169, 239, 255, 0.14);
}

.space-page .ship-siblings a {
	display: flex;
	min-height: 68px;
	padding: 12px;
	align-items: center;
	justify-content: center;
	color: var(--space-muted);
	font-size: 0.69rem;
	font-weight: 900;
	letter-spacing: 0.055em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.space-page .ship-siblings a[aria-current="page"] {
	color: #071421;
	background: var(--space-cyan-bright);
}

.space-page .ship-sequence {
	display: grid;
	border-block: 1px solid rgba(169, 239, 255, 0.22);
	grid-template-columns: repeat(3, 1fr);
}

.space-page .ship-sequence > * {
	display: grid;
	min-height: 94px;
	padding: 19px 22px;
	align-content: center;
	gap: 6px;
	text-decoration: none;
}

.space-page .ship-sequence > * + * {
	border-left: 1px solid rgba(169, 239, 255, 0.14);
}

.space-page .ship-sequence span {
	color: var(--space-muted);
	font-size: 0.58rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.space-page .ship-sequence strong {
	color: var(--space-ink);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.space-page .ship-sequence-all {
	text-align: center;
}

.space-page .ship-sequence > *:last-child {
	text-align: right;
}

.space-page .ship-sequence-edge {
	opacity: 0.56;
}

.space-page .content-footer {
	border-top-color: rgba(169, 239, 255, 0.2);
}

@media (hover: hover) {
	.space-page .family-jump a:hover,
	.space-page .family-jump a:focus-visible {
		background: rgba(84, 213, 255, 0.065);
	}

	.space-page .ship-card:hover,
	.space-page .ship-card:focus-visible {
		border-color: rgba(169, 239, 255, 0.72);
		transform: translateY(-3px);
	}

	.space-page .ship-sequence a:hover,
	.space-page .ship-siblings a:not([aria-current="page"]):hover {
		background: rgba(84, 213, 255, 0.06);
	}
}

@media (max-width: 1080px) {
	.space-page .ship-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.space-page .ship-stat-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.space-page .ship-stat-grid > div:nth-child(3) {
		border-right: 0;
	}

	.space-page .ship-stat-grid > div:nth-child(-n + 3) {
		border-bottom: 1px solid rgba(169, 239, 255, 0.15);
	}
}

@media (max-width: 900px) {
	.release-hero {
		min-height: 320px;
		grid-template-columns: minmax(0, 1fr) minmax(260px, 0.68fr);
		gap: 42px;
	}

	.release-game {
		padding-left: 24px;
		grid-template-columns: 210px minmax(0, 1fr);
		column-gap: 40px;
	}

	.release-timeline article {
		grid-template-columns: 1fr;
	}

	.release-timeline article > time,
	.release-timeline .release-date-range {
		grid-row: auto;
		margin-bottom: 11px;
	}

	.space-page .ship-catalog-hero {
		min-height: 330px;
		grid-template-columns: minmax(0, 1fr) minmax(230px, 0.46fr);
		gap: 44px;
	}

	.space-page .family-jump {
		grid-template-columns: repeat(2, 1fr);
	}

	.space-page .family-jump a:nth-child(3) {
		border-left: 0;
	}

	.space-page .family-jump a:nth-child(n + 3) {
		border-top: 1px solid rgba(169, 239, 255, 0.18);
	}

	.space-page .ship-dossier {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.space-page .ship-dossier-visual {
		min-height: 520px;
		border-right: 0;
		border-bottom: 1px solid rgba(169, 239, 255, 0.19);
	}

	.space-page .ship-dossier-visual img {
		width: min(86%, 610px);
	}

	.space-page .ship-operating-profile {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

@media (max-width: 760px) {
	.header-links {
		gap: 13px;
	}

	.release-main {
		padding-top: 28px;
	}

	.release-hero {
		display: block;
		min-height: 0;
		padding: 12px 0 52px;
	}

	.release-hero h1 {
		font-size: clamp(3.25rem, 15vw, 4.8rem);
	}

	.release-intro {
		margin-top: 34px;
	}

	.release-track {
		grid-template-columns: 1fr;
		margin-bottom: 82px;
	}

	.release-track a {
		min-height: 96px;
		padding: 20px 22px;
	}

	.release-track a + a {
		border-top: 1px solid rgba(139, 154, 180, 0.24);
		border-left: 0;
	}

	.release-track a::after {
		right: 22px;
	}

	.release-game {
		display: block;
		padding: 0 0 92px 18px;
	}

	.release-game::before {
		bottom: 92px;
	}

	.release-game-heading {
		position: static;
		display: flex;
		align-items: end;
		justify-content: space-between;
		margin-bottom: 30px;
		gap: 20px;
	}

	.release-game-heading > a {
		flex: 0 0 auto;
	}

	.release-game-heading h2 {
		font-size: clamp(3.4rem, 17vw, 5rem);
	}

	.release-game-heading p {
		font-size: 0.9rem;
	}

	.release-timeline article {
		padding: 26px 0 30px;
	}

	.release-actions {
		grid-template-columns: 1fr;
	}

	.release-scope {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.content-footer {
		display: grid;
		padding-block: 25px;
		gap: 14px;
	}

	.content-footer nav {
		justify-content: flex-start;
	}

	.space-page .ship-catalog-main,
	.space-page .ship-detail-main {
		padding-top: 26px;
	}

	.space-page .ship-catalog-hero {
		display: block;
		min-height: 0;
		padding: 12px 0 52px;
	}

	.space-page .ship-catalog-hero h1 {
		font-size: clamp(3.25rem, 15vw, 4.8rem);
	}

	.space-page .fleet-system-line {
		margin-top: 42px;
	}

	.space-page .ship-family-heading {
		display: block;
	}

	.space-page .ship-family-heading > p {
		margin-top: 14px;
	}

	.space-page .ship-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.space-page .ship-card-copy {
		min-height: 196px;
		padding: 17px 15px 15px;
	}

	.space-page .ship-card-copy dl {
		margin-top: 18px;
	}

	.space-page .ship-balance-note {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.space-page .ship-catalog-cta {
		display: grid;
	}

	.space-page .ship-catalog-cta .button {
		width: 100%;
	}

	.space-page .ship-dossier {
		margin-bottom: 76px;
	}

	.space-page .ship-dossier-visual {
		min-height: 390px;
		padding: 18px;
	}

	.space-page .ship-dossier-copy {
		padding: 36px 0 0;
	}

	.space-page .ship-dossier h1 {
		font-size: clamp(3.25rem, 15vw, 4.8rem);
	}

	.space-page .ship-stats > header {
		display: block;
	}

	.space-page .ship-stats > header p {
		margin-top: 18px;
	}

	.space-page .ship-stat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.space-page .ship-stat-grid > div,
	.space-page .ship-stat-grid > div:nth-child(3) {
		border-right: 1px solid rgba(169, 239, 255, 0.15);
		border-bottom: 1px solid rgba(169, 239, 255, 0.15);
	}

	.space-page .ship-stat-grid > div:nth-child(2n) {
		border-right: 0;
	}

	.space-page .ship-stat-grid > div:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.space-page .ship-operating-profile dl {
		grid-template-columns: 1fr;
	}

	.space-page .ship-siblings ul {
		grid-template-columns: 1fr;
	}

	.space-page .ship-siblings li + li {
		border-top: 1px solid rgba(169, 239, 255, 0.14);
		border-left: 0;
	}

	.space-page .ship-siblings a {
		min-height: 54px;
	}

	.space-page .ship-sequence {
		grid-template-columns: 1fr;
	}

	.space-page .ship-sequence > * + * {
		border-top: 1px solid rgba(169, 239, 255, 0.14);
		border-left: 0;
	}

	.space-page .ship-sequence > *,
	.space-page .ship-sequence > *:last-child {
		min-height: 76px;
		text-align: left;
	}
}

@media (max-width: 520px) {
	.site-header .header-links > .header-label:not(.header-link),
	.site-header .header-links > .header-link:first-child:not(:only-child) {
		display: none;
	}

	.release-game-heading {
		display: block;
	}

	.release-game-heading > a {
		display: inline-flex;
		min-height: 44px;
		margin-top: 10px;
		align-items: center;
	}

	.release-timeline h3 {
		font-size: 1.7rem;
	}

	.release-timeline ul {
		padding-left: 1rem;
		font-size: 0.91rem;
	}

	.space-page .ship-grid {
		grid-template-columns: 1fr;
	}

	.space-page .ship-card {
		display: grid;
		grid-template-columns: minmax(126px, 0.74fr) minmax(0, 1fr);
	}

	.space-page .ship-card-visual {
		border-right: 1px solid rgba(169, 239, 255, 0.14);
		border-bottom: 0;
	}

	.space-page .ship-card-copy {
		min-height: 0;
	}

	.space-page .ship-card-copy dl {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.space-page .ship-dossier-visual {
		min-height: 320px;
	}

	.space-page .ship-dossier-copy .button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.header-links .header-link::after,
	.space-page .ship-card {
		transition: none;
	}
}

/* Readable floor for secondary gameplay and fleet labels at every breakpoint. */
.space-page .eyebrow,
.space-page .breadcrumbs,
.space-page .breadcrumbs *,
.space-page .space-game-brand small,
.space-page .launch-promise,
.space-page .hero-reel figcaption,
.space-page .hero-facts span,
.space-page .proof-screen figcaption,
.space-page .expedition-steps li > span,
.space-page .run-gallery figcaption,
.space-page .ship > span,
.space-page .ship p,
.space-page .ship small,
.space-page .fleet-numbers,
.space-page .world-facts span,
.space-page .quick-controls strong,
.space-page .quick-controls small,
.space-page kbd,
.space-page .control-token,
.space-page .fleet-system-line,
.space-page .fleet-system-line span,
.space-page .family-jump span,
.space-page .ship-family-heading > p,
.space-page .ship-dossier-visual figcaption,
.space-page .ship-role,
.space-page .ship-availability,
.space-page .ship-stat-grid dt,
.space-page .ship-stat-legend,
.space-page .ship-operating-profile dt,
.space-page .ship-siblings a,
.space-page .ship-sequence span {
	font-size: 0.75rem;
}
