:root {
	color-scheme: dark;
	--ink: #f2dfc8;
	--ink-soft: rgba(242, 223, 200, 0.82);
	--black: #090606;
	--panel: rgba(18, 11, 8, 0.94);
	--panel-alt: rgba(28, 17, 12, 0.97);
	--paper: #e7c891;
	--paper-dark: #c59c55;
	--accent: #f26b1d;
	--accent-dark: #7a260d;
	--line: rgba(242, 223, 200, 0.16);
	--gold: #d7b15b;
}

html, body {
	min-height: 100%;
	margin: 0;
}

body {
	background:
		radial-gradient(ellipse at top, rgba(66, 41, 28, 0.78), rgba(8, 6, 5, 1) 58%),
		linear-gradient(180deg, #140c09 0%, #050403 100%);
	color: var(--ink);
	font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
	letter-spacing: 0.01em;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%) 0 0 / 8px 8px,
		linear-gradient(315deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%) 0 0 / 10px 10px;
	mix-blend-mode: soft-light;
	opacity: 0.22;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.site-shell {
	width: min(1440px, calc(100vw - 32px));
	margin: 0 auto;
	padding: 28px 0 40px;
}

.hero,
.feature-strip article,
.showcase-copy,
.play-copy,
.showcase-panel,
.playframe-wrap,
.downloads-intro,
.download-card {
	border: 1px solid rgba(242, 223, 200, 0.18);
	background:
		linear-gradient(180deg, rgba(18, 11, 8, 0.94), rgba(7, 5, 4, 0.97)),
		radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 48%);
	box-shadow:
		0 26px 70px rgba(0, 0, 0, 0.48),
		inset 0 0 0 1px rgba(255, 240, 210, 0.03);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	gap: 28px;
	padding: 28px;
	position: relative;
	overflow: hidden;
}

.hero::before,
.hero::after {
	content: "";
	position: absolute;
	inset: 14px;
	pointer-events: none;
	border: 1px solid rgba(242, 223, 200, 0.12);
}

.hero::after {
	inset: 20px;
	border-color: rgba(242, 223, 200, 0.06);
}

.hero-copy {
	position: relative;
	z-index: 1;
	padding-right: 10px;
}

.eyebrow {
	margin: 0 0 10px;
	font-size: 0.92rem;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	color: rgba(242, 223, 200, 0.7);
}

.title-row {
	display: flex;
	align-items: center;
	gap: 16px;
}

.sigil {
	width: 74px;
	height: 74px;
	object-fit: contain;
	flex: 0 0 auto;
	filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 10px rgba(242, 107, 29, 0.22));
}

.hero h1,
.showcase-copy h2,
.play-copy h2,
.downloads-intro h2,
.feature-strip h2 {
	margin: 0;
	font-family: "Boulder", "Impact", "Arial Black", sans-serif;
	font-weight: 400;
	color: #f1d1a0;
	text-shadow: 0 0 18px rgba(0, 0, 0, 0.65);
}

.hero h1 {
	font-size: clamp(3rem, 5vw, 5.2rem);
	line-height: 0.96;
	letter-spacing: 0.02em;
}

.title-subhead {
	margin: 8px 0 0;
	font-size: 1.02rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(242, 223, 200, 0.7);
}

.lede,
.showcase-copy p,
.play-copy p,
.downloads-intro p,
.feature-strip p,
.bullet-points li,
.poster-caption,
.player-note {
	font-size: 1.08rem;
	line-height: 1.6;
	color: var(--ink-soft);
}

.lede {
	max-width: 62ch;
	margin: 18px 0 0;
}

.hero-actions,
.player-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid rgba(242, 223, 200, 0.24);
	background:
		linear-gradient(180deg, rgba(28, 17, 12, 0.98), rgba(10, 7, 5, 0.98));
	color: var(--ink);
	font: inherit;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	box-shadow: inset 0 0 0 1px rgba(255, 240, 210, 0.04);
	transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.cta:hover {
	transform: translateY(-1px);
	border-color: rgba(242, 107, 29, 0.55);
}

.cta.primary {
	background:
		linear-gradient(180deg, rgba(242, 107, 29, 0.96), rgba(122, 38, 13, 0.96));
	border-color: rgba(255, 195, 126, 0.48);
	color: #1b0f09;
	font-weight: 700;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 22px;
}

.hero-stats div,
.downloads-intro {
	padding: 14px 16px;
	border: 1px solid rgba(242, 223, 200, 0.14);
	background: rgba(8, 6, 4, 0.72);
}

.hero-stats span,
.platform,
.dl-detail,
.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.hero-stats span {
	display: block;
	margin-bottom: 7px;
	font-size: 0.8rem;
	color: rgba(242, 223, 200, 0.62);
}

.hero-stats strong {
	font-size: 1rem;
	font-weight: 600;
	color: #f4d5ab;
}

.hero-visual {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
}

.poster-stack {
	display: grid;
	gap: 12px;
	width: 100%;
}

.poster {
	width: 100%;
	height: 100%;
	max-height: 760px;
	object-fit: cover;
	border: 1px solid rgba(242, 223, 200, 0.16);
	box-shadow: 0 26px 50px rgba(0, 0, 0, 0.4);
}

.poster-caption {
	margin: 0;
	padding: 0 4px;
	font-size: 0.96rem;
}

.divider {
	margin: 18px 0;
	text-align: center;
	color: rgba(242, 223, 200, 0.54);
}

.divider span {
	display: inline-block;
	padding: 0 12px;
	font-size: 1.4rem;
}

.feature-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.feature-strip article {
	padding: 22px;
	min-height: 100%;
}

.feature-strip h2,
.showcase-copy h2,
.play-copy h2,
.downloads-intro h2 {
	font-size: clamp(1.8rem, 2.2vw, 2.6rem);
	line-height: 1;
}

.showcase {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
	gap: 18px;
	align-items: stretch;
}

.showcase.reverse {
	grid-template-columns: minmax(360px, 1fr) minmax(0, 0.95fr);
}

.showcase-copy,
.play-copy,
.downloads-intro {
	padding: 24px;
}

.showcase-panel {
	padding: 14px;
	display: flex;
	align-items: stretch;
}

.showcase-panel img,
.playframe-wrap iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wide img {
	object-fit: cover;
}

.bullet-points {
	margin: 20px 0 0;
	padding-left: 22px;
}

.bullet-points li + li {
	margin-top: 10px;
}

.play-section {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	gap: 18px;
	align-items: stretch;
}

.play-copy code {
	padding: 0 5px;
	border: 1px solid rgba(242, 223, 200, 0.16);
	background: rgba(8, 6, 4, 0.8);
	color: #f5d8b0;
}

.music-panel {
	margin-top: 22px;
	padding: 16px;
	border: 1px solid rgba(242, 223, 200, 0.16);
	background: rgba(8, 6, 4, 0.72);
}

.music-panel h3 {
	margin: 0;
	font-family: "Boulder", "Impact", "Arial Black", sans-serif;
	font-size: 1.55rem;
	font-weight: 400;
	color: #f1d1a0;
}

.music-panel p {
	margin: 8px 0 0;
	font-size: 0.98rem;
}

.music-panel-controls {
	display: grid;
	gap: 12px;
	margin-top: 14px;
}

.music-track-field {
	display: grid;
	gap: 7px;
}

.music-field-label {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: rgba(242, 223, 200, 0.68);
}

.music-select {
	width: 100%;
	min-height: 46px;
	padding: 0 12px;
	border: 1px solid rgba(242, 223, 200, 0.22);
	background: rgba(18, 11, 8, 0.98);
	color: var(--ink);
	font: inherit;
}

.music-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(242, 223, 200, 0.22);
	background: rgba(28, 17, 12, 0.98);
	color: var(--ink);
	font: inherit;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	cursor: pointer;
}

.music-toggle__rail {
	width: 30px;
	height: 14px;
	border: 1px solid rgba(242, 223, 200, 0.34);
	background: rgba(8, 6, 4, 0.86);
	position: relative;
}

.music-toggle__rail::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 8px;
	height: 8px;
	background: rgba(242, 223, 200, 0.72);
	transition: transform 0.16s ease, background 0.16s ease;
}

.music-toggle[aria-pressed="true"] .music-toggle__rail::after {
	transform: translateX(16px);
	background: var(--accent);
}

.music-status {
	min-height: 1.4em;
	color: rgba(242, 223, 200, 0.72);
}

.playframe-wrap {
	position: relative;
	min-height: 700px;
	padding: 14px;
}

.playframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 670px;
	border: 0;
	background: #000;
}

.downloads {
	display: grid;
	gap: 18px;
}

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

.download-card {
	display: grid;
	gap: 12px;
	padding: 14px;
	min-height: 100%;
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.download-card:hover {
	transform: translateY(-2px);
	border-color: rgba(242, 107, 29, 0.45);
}

.download-art {
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border: 1px solid rgba(242, 223, 200, 0.14);
	background: rgba(8, 6, 4, 0.8);
}

.download-art-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.platform {
	font-size: 0.82rem;
	color: rgba(242, 223, 200, 0.72);
}

.dl-detail {
	font-size: 1.05rem;
	font-weight: 700;
	color: #f0d0a1;
}

.dl-copy {
	font-size: 0.98rem;
	color: var(--ink-soft);
}

.dl-cta {
	margin-top: auto;
	padding-top: 10px;
	font-size: 0.92rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(242, 223, 200, 0.86);
}

.site-footer {
	padding: 20px 16px 30px;
	text-align: center;
	color: rgba(242, 223, 200, 0.68);
}

.site-footer p {
	margin: 0;
}

@media (max-width: 1180px) {
	.hero,
	.showcase,
	.showcase.reverse,
	.play-section {
		grid-template-columns: 1fr;
	}

	.hero-stats,
	.feature-strip,
	.downloads-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.site-shell {
		width: min(100vw - 20px, 100%);
		padding-top: 12px;
	}

	.hero,
	.showcase-copy,
	.play-copy,
	.downloads-intro,
	.feature-strip article,
	.showcase-panel,
	.playframe-wrap,
	.download-card {
		padding: 16px;
	}

	.title-row {
		align-items: flex-start;
	}

	.sigil {
		width: 58px;
		height: 58px;
	}

	.hero-actions,
	.player-actions {
		flex-direction: column;
	}

	.cta {
		width: 100%;
	}

	.hero-stats,
	.feature-strip,
	.downloads-grid {
		grid-template-columns: 1fr;
	}

	.playframe-wrap {
		min-height: 520px;
	}

	.playframe {
		min-height: 490px;
	}

}
