:root {
	--bg: #090507;
	--bg-deep: #13090b;
	--panel: rgba(31, 12, 16, 0.84);
	--panel-soft: rgba(20, 9, 12, 0.76);
	--ink: #f5e6dd;
	--muted: #d4bdb7;
	--line: #7e1f28;
	--accent: #d8a46f;
	--glow: rgba(216, 164, 111, 0.15);
}

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

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

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	min-height: 100%;
	background:
		radial-gradient(circle at 20% 15%, rgba(216, 164, 111, 0.12), transparent 20%),
		radial-gradient(circle at 80% 10%, rgba(126, 31, 40, 0.18), transparent 18%),
		linear-gradient(180deg, rgba(25, 10, 12, 0.16), rgba(7, 4, 5, 0.96)),
		url("./media/images/splash02.png") center top / cover fixed no-repeat,
		var(--bg);
	color: var(--ink);
	font-family: "EBGaramondBlood", serif;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background:
		linear-gradient(transparent 0 96%, rgba(255, 255, 255, 0.025) 96% 100%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 120px);
	pointer-events: none;
}

.site-shell {
	position: relative;
	padding: 32px clamp(18px, 3vw, 42px) 48px;
}

.hero,
.feature-strip,
.showcase,
.play-section {
	position: relative;
	z-index: 1;
}

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

.eyebrow {
	margin: 0 0 10px;
	color: var(--accent);
	font-size: 0.9rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

h1, h2 {
	margin: 0;
	font-family: "PirataOneBlood", serif;
	line-height: 0.95;
	letter-spacing: 0.03em;
}

h1 {
	font-size: clamp(3rem, 7.5vw, 6.4rem);
	text-shadow: 0 0 28px rgba(216, 164, 111, 0.14);
}

h2 {
	font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.lede,
.showcase-copy p,
.play-copy p,
.feature-strip p,
.downloads-section p {
	max-width: 64ch;
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	color: var(--muted);
	line-height: 1.65;
}

.hero-actions,
.hero-stats,
.player-actions,
.download-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.cta {
	border: 1px solid rgba(216, 164, 111, 0.65);
	background: rgba(64, 22, 27, 0.86);
	color: var(--ink);
	text-decoration: none;
	padding: 13px 18px;
	border-radius: 999px;
	font-family: "EBGaramondBlood", serif;
	font-size: 0.98rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cta.primary {
	background: linear-gradient(180deg, #9d3140, #5a141f);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.cta:hover {
	transform: translateY(-2px);
	background: rgba(92, 28, 36, 0.94);
}

.hero-stats div,
.feature-strip article,
.showcase-copy,
.play-section,
.playframe-wrap,
.downloads-section {
	border: 1px solid rgba(216, 164, 111, 0.5);
	background: var(--panel-soft);
	backdrop-filter: blur(4px);
}

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

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

.hero-stats strong {
	display: block;
	margin-top: 6px;
	font-size: 1.05rem;
}

.hero-visual {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.poster-frame {
	position: relative;
	width: min(640px, 100%);
	padding: 16px;
	border: 1px solid rgba(216, 164, 111, 0.72);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(40, 15, 18, 0.96), rgba(15, 7, 9, 0.96));
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
	transform: rotate(-1deg);
}

.poster-frame::before {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(245, 230, 221, 0.12);
	border-radius: 14px;
	pointer-events: none;
}

.poster-frame img,
.showcase-panel img {
	display: block;
	width: 100%;
	height: auto;
}

.poster-frame img {
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
}

.poster-badge {
	position: absolute;
	right: 28px;
	bottom: 28px;
	padding: 10px 14px;
	border: 1px solid rgba(216, 164, 111, 0.72);
	background: rgba(43, 13, 17, 0.9);
	color: var(--ink);
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 999px;
}

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

.feature-strip article,
.showcase-copy,
.play-section,
.downloads-section {
	padding: 20px;
	border-radius: 16px;
}

.showcase {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr) minmax(260px, 0.9fr);
	gap: 18px;
	margin-top: 26px;
	align-items: stretch;
}

.showcase-panel {
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(216, 164, 111, 0.45);
	background: rgba(10, 7, 8, 0.62);
	min-height: 260px;
}

.icon-panel {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
}

.icon-panel img {
	width: min(70%, 300px);
	filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

.showcase-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bullet-points {
	margin: 12px 0 0;
	padding-left: 20px;
	color: var(--ink);
}

.bullet-points li {
	margin-bottom: 8px;
	color: var(--muted);
}

.play-section {
	display: grid;
	grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
	gap: 18px;
	margin-top: 26px;
}

.playframe-wrap {
	padding: 14px;
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.playframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 14px;
	background: #000;
}

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

.downloads-section {
	margin-top: 26px;
}

.download-grid {
	align-items: stretch;
}

.download-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 210px;
	padding: 16px 18px;
	border: 1px solid rgba(216, 164, 111, 0.62);
	border-radius: 16px;
	text-decoration: none;
	color: var(--ink);
	background: rgba(55, 16, 20, 0.76);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.download-card span {
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.78rem;
}

.download-card strong {
	font-size: 1.02rem;
}

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

	.feature-strip {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		min-height: 0;
	}
}

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

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

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

	.poster-badge {
		right: 16px;
		bottom: 16px;
	}
}
