:root {
	--bg: #0b0d10;
	--panel: rgba(15, 19, 24, 0.88);
	--panel-soft: rgba(18, 24, 31, 0.76);
	--text: #efe6cf;
	--muted: #c2b89d;
	--line: #b88f34;
	--accent: #d2a53d;
	--danger: #912b2b;
}

@font-face {
	font-family: "OswaldCD";
	src: url("./media/fonts/Oswald-VariableFont_wght.ttf") format("truetype");
}

@font-face {
	font-family: "SpecialEliteCD";
	src: url("./media/fonts/SpecialElite-Regular.ttf") format("truetype");
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
	background:
		linear-gradient(180deg, rgba(11, 13, 16, 0.22), rgba(11, 13, 16, 0.96)),
		url("./media/images/background_mission.png") center top / cover fixed no-repeat,
		var(--bg);
	color: var(--text);
	font-family: "OswaldCD", sans-serif;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background:
		radial-gradient(circle at 20% 12%, rgba(210, 165, 61, 0.16), transparent 22%),
		radial-gradient(circle at 82% 18%, rgba(145, 43, 43, 0.14), transparent 20%),
		linear-gradient(transparent 0 96%, rgba(255, 255, 255, 0.025) 96% 100%);
	pointer-events: none;
}

.page-shell {
	position: relative;
	z-index: 1;
	max-width: 1440px;
	margin: 0 auto;
	padding: 28px clamp(16px, 3vw, 36px) 48px;
}

.hero,
.briefing-grid,
.showcase,
.player-section,
.downloads {
	position: relative;
	z-index: 1;
}

.hero {
	display: grid;
	grid-template-columns: minmax(360px, 1.1fr) minmax(280px, 0.9fr);
	gap: 28px;
	align-items: center;
	min-height: 72vh;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--accent);
	font-family: "SpecialEliteCD", serif;
	font-size: 0.92rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.title-lockup {
	display: block;
	width: min(680px, 100%);
	height: auto;
	margin-bottom: 18px;
}

.lede,
.section-copy p,
.downloads p,
.briefing-grid p {
	color: var(--muted);
	font-size: clamp(1rem, 1.25vw, 1.16rem);
	line-height: 1.6;
	max-width: 62ch;
}

.hero-actions,
.section-actions,
.download-grid,
.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	border: 1px solid var(--line);
	background: rgba(19, 25, 32, 0.9);
	color: var(--text);
	text-decoration: none;
	padding: 12px 18px;
	border-radius: 10px;
	font: inherit;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
	transform: translateY(-2px);
	background: rgba(32, 40, 52, 0.94);
}

.button-primary {
	background: linear-gradient(180deg, #7b1d1f, #491013);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.button.is-playing {
	background: linear-gradient(180deg, #6d5b27, #473a17);
}

.hero-stats {
	margin-top: 22px;
}

.hero-stats div,
.briefing-grid article,
.section-copy,
.player-frame-wrap,
.downloads,
.showcase-image {
	border: 1px solid rgba(184, 143, 52, 0.9);
	background: var(--panel-soft);
	backdrop-filter: blur(4px);
}

.hero-stats div {
	min-width: 170px;
	padding: 12px 14px;
	border-radius: 12px;
}

.hero-stats span,
.download-card span {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.hero-stats strong,
.download-card strong {
	display: block;
	margin-top: 6px;
}

.hero-art {
	display: grid;
	gap: 16px;
	align-content: center;
}

.poster {
	padding: 16px;
	border: 1px solid rgba(184, 143, 52, 0.9);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(21, 18, 15, 0.95), rgba(11, 13, 16, 0.98));
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.poster img,
.showcase-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.hero-emblems {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.hero-emblems img {
	width: 100%;
	border: 1px solid rgba(184, 143, 52, 0.9);
	border-radius: 16px;
	background: rgba(11, 13, 16, 0.82);
	padding: 14px;
}

.briefing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.briefing-grid article,
.section-copy,
.downloads {
	padding: 22px;
	border-radius: 16px;
}

.briefing-grid h2,
.section-copy h2,
.downloads h2 {
	margin: 0 0 12px;
	font-family: "SpecialEliteCD", serif;
	font-size: clamp(1.5rem, 2.6vw, 2.5rem);
	line-height: 1.05;
	text-transform: uppercase;
}

.showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
	gap: 18px;
	margin-top: 24px;
}

.showcase-image {
	min-height: 260px;
	border-radius: 18px;
	overflow: hidden;
}

.showcase-image.tall {
	min-height: 540px;
}

.player-section {
	display: grid;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
	gap: 18px;
	margin-top: 24px;
	align-items: start;
}

.player-frame-wrap {
	padding: 14px;
	border-radius: 18px;
}

.player-frame {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 12px;
	background: #000;
}

.player-note {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.downloads {
	margin-top: 24px;
}

.download-grid {
	margin-top: 18px;
}

.download-card {
	flex: 1 1 240px;
	padding: 16px 18px;
	border: 1px solid rgba(184, 143, 52, 0.9);
	border-radius: 14px;
	background: rgba(20, 27, 35, 0.92);
	color: var(--text);
	text-decoration: none;
	transition: transform 160ms ease, background 160ms ease;
}

.download-card:hover {
	transform: translateY(-2px);
	background: rgba(31, 39, 50, 0.96);
}

@media (max-width: 1080px) {
	.hero,
	.player-section,
	.showcase,
	.briefing-grid {
		grid-template-columns: 1fr;
	}

	.showcase-image.tall {
		min-height: 360px;
	}
}

@media (max-width: 640px) {
	.page-shell {
		padding-inline: 14px;
	}

	.button,
	.download-card {
		width: 100%;
	}
}
