:root {
	--color-ink: #102018;
	--color-muted: #5d665f;
	--color-cream: #f6f2e8;
	--color-white: #fffdf8;
	--color-forest: #173b22;
	--color-forest-deep: #07170d;
	--color-gold: #d7a432;
	--color-coral: #e98262;
	--color-teal: #3d9f9a;
	--color-blue: #557ecb;
	--color-violet: #8b6fd9;
	--shadow-soft: 0 18px 48px rgba(16, 32, 24, 0.11);
	--shadow-small: 0 8px 22px rgba(16, 32, 24, 0.09);
	--radius-card: 8px;
	--max-width: 1200px;
	--header-height: 88px;
	--font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-cream);
	color: var(--color-ink);
	font-family: var(--font-main);
	font-size: 18px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

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

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

p {
	margin: 0;
}

h1,
h2,
h3 {
	margin: 0;
	line-height: 1.05;
	letter-spacing: 0;
}

h1 {
	max-width: 780px;
	color: #fff;
	font-size: 7.5rem;
	font-weight: 850;
}

h2 {
	color: var(--color-ink);
	font-size: 4.75rem;
	font-weight: 840;
}

h3 {
	color: var(--color-ink);
	font-size: 2rem;
	font-weight: 820;
}

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

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 12px 16px;
	background: #fff;
	color: var(--color-ink);
	clip: auto;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-small);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	transition: background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
	background: rgba(255, 253, 248, 0.95);
	box-shadow: 0 1px 0 rgba(16, 32, 24, 0.08);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100% - 48px, 1320px);
	min-height: var(--header-height);
	margin: 0 auto;
}

.site-brand,
.site-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 850;
}

.site-brand {
	color: #fff;
	font-size: 1.2rem;
}

.site-header.is-scrolled .site-brand,
.site-header.is-open .site-brand {
	color: var(--color-ink);
}

.site-brand img,
.custom-logo {
	width: auto;
	max-height: 56px;
}

.site-brand__mark {
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 2px solid currentColor;
	border-radius: 50%;
	font-size: 1.3rem;
	line-height: 1;
}

.site-brand__text {
	white-space: nowrap;
}

.site-nav__list,
.site-footer__menu {
	display: flex;
	align-items: center;
	gap: clamp(22px, 4vw, 64px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	position: relative;
	color: #fff;
	font-size: 1.05rem;
	font-weight: 760;
}

.site-header.is-scrolled .site-nav a,
.site-header.is-open .site-nav a {
	color: var(--color-ink);
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 100%;
	height: 2px;
	background: var(--color-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
}

.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
	border-color: rgba(16, 32, 24, 0.18);
	color: var(--color-ink);
	background: rgba(16, 32, 24, 0.04);
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
	display: block;
	width: 22px;
	height: 2px;
	margin: 0 auto;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__line {
	position: relative;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__line::before {
	top: -7px;
}

.nav-toggle__line::after {
	top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::before {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
	transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
	position: relative;
	display: grid;
	min-height: 100svh;
	overflow: hidden;
	background: var(--color-forest-deep);
}

.hero-section__media,
.hero-section__shade {
	position: absolute;
	inset: 0;
}

.hero-section__media {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: scale(1.02);
}

.hero-section__shade {
	background:
		linear-gradient(90deg, rgba(2, 13, 7, 0.86) 0%, rgba(2, 13, 7, 0.68) 41%, rgba(2, 13, 7, 0.18) 100%),
		linear-gradient(0deg, rgba(2, 13, 7, 0.58) 0%, rgba(2, 13, 7, 0.08) 42%);
}

.hero-section__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
	width: min(100% - 48px, 1320px);
	min-height: 100svh;
	margin: 0 auto;
	padding: calc(var(--header-height) + 44px) 0 86px;
}

.section-kicker {
	max-width: 740px;
	color: var(--color-gold);
	font-size: 1rem;
	font-weight: 820;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hero-section__rule {
	width: 58px;
	height: 8px;
	background: #fff;
	border-radius: 99px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 6px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border: 2px solid currentColor;
	border-radius: var(--radius-card);
	font-weight: 820;
	line-height: 1;
	text-align: center;
	white-space: normal;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--light {
	background: #fff;
	color: var(--color-ink);
	border-color: #fff;
}

.button--ghost {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.6);
}

.button--ghost-light {
	color: var(--color-ink);
	background: rgba(255, 255, 255, 0.58);
	border-color: rgba(16, 32, 24, 0.22);
}

.button--dark {
	color: #fff;
	background: var(--color-forest);
	border-color: var(--color-forest);
}

.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 22px;
	z-index: 3;
	display: grid;
	width: 54px;
	height: 62px;
	place-items: center;
	transform: translateX(-50%);
	animation: everplay-bounce 1.45s ease-in-out infinite;
}

.hero-scroll span {
	grid-area: 1 / 1;
	display: block;
	width: 24px;
	height: 24px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

.hero-scroll span:nth-child(2) {
	margin-top: 18px;
	opacity: 0.65;
}

.section {
	padding: clamp(56px, 7vw, 100px) 24px;
}

.section--cream {
	background: var(--color-cream);
}

.section--white {
	background: var(--color-white);
}

.section__header {
	display: grid;
	gap: 16px;
	width: min(100%, var(--max-width));
	margin: 0 auto clamp(32px, 5vw, 58px);
	text-align: center;
}

.section__header .section-kicker {
	justify-self: center;
}

.game-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	width: min(100%, var(--max-width));
	margin: 0 auto;
}

.game-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(16, 32, 24, 0.08);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
}

.game-card__promo {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #e6efe9;
}

.game-card__promo-media {
	position: absolute;
	inset: 0;
	display: block;
	overflow: hidden;
	background: #edf2ec;
}

.game-card__promo-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.game-art {
	position: absolute;
	inset: 0;
	overflow: hidden;
	opacity: 0.82;
	background:
		radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.7), transparent 24%),
		linear-gradient(135deg, var(--art-a), var(--art-b));
}

.game-art::before,
.game-art::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.26);
}

.game-art::before {
	top: 16%;
	left: 10%;
	width: 36%;
	height: 44%;
}

.game-art::after {
	right: -8%;
	bottom: -22%;
	width: 44%;
	height: 58%;
}

.game-art--sage {
	--art-a: #a6c77b;
	--art-b: #315b35;
}

.game-art--teal {
	--art-a: #89d6cf;
	--art-b: #236e69;
}

.game-art--coral {
	--art-a: #f2a188;
	--art-b: #b85243;
}

.game-art--gold {
	--art-a: #f0d36b;
	--art-b: #a57425;
}

.game-art--blue {
	--art-a: #96b8f1;
	--art-b: #375f9d;
}

.game-art--violet {
	--art-a: #bca9f2;
	--art-b: #5b4ca0;
}

.game-art__sun,
.game-art__panel,
.game-art__tile {
	position: absolute;
	display: block;
	box-shadow: 0 14px 34px rgba(16, 32, 24, 0.18);
}

.game-art__sun {
	top: 12%;
	right: 14%;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
}

.game-art__panel {
	left: 13%;
	bottom: 13%;
	width: 48%;
	height: 46%;
	border: 8px solid rgba(255, 253, 248, 0.9);
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(255, 253, 248, 0.88) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 253, 248, 0.88) 1px, transparent 1px),
		rgba(255, 253, 248, 0.24);
	background-size: 28px 28px;
}

.game-art__tile {
	width: 58px;
	height: 72px;
	border: 4px solid rgba(255, 253, 248, 0.95);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.72);
}

.game-card__icon {
	position: absolute;
	right: 24px;
	bottom: -38px;
	z-index: 2;
	display: grid;
	width: 88px;
	height: 88px;
	place-items: center;
	overflow: hidden;
	border: 3px solid rgba(255, 255, 255, 0.82);
	border-radius: 18px;
	background: #101a35;
	box-shadow: 0 12px 26px rgba(16, 32, 24, 0.22);
}

.game-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.game-card__icon-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	background:
		radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.32), transparent 26%),
		linear-gradient(145deg, var(--art-a), var(--art-b));
	color: #fff;
	font-size: 2.35rem;
	font-weight: 850;
	line-height: 1;
}

.game-art__tile--one {
	right: 24%;
	bottom: 18%;
	transform: rotate(-8deg);
}

.game-art__tile--two {
	right: 16%;
	bottom: 27%;
	transform: rotate(8deg);
}

.game-art__tile--three {
	right: 31%;
	bottom: 33%;
	transform: rotate(3deg);
}

.game-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 14px;
	padding: 42px 24px 24px;
}

.game-card__body h3 {
	display: -webkit-box;
	max-width: calc(100% - 96px);
	max-height: 2.24em;
	overflow: hidden;
	font-size: 1.7rem;
	line-height: 1.12;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.game-card__category {
	margin-bottom: 8px;
	color: var(--color-muted);
	font-size: 0.82rem;
	font-weight: 820;
	text-transform: uppercase;
	letter-spacing: 0;
}

.game-card__description {
	display: -webkit-box;
	min-height: 2.85em;
	max-width: 100%;
	overflow: hidden;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.42;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.game-card__actions {
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
}

.game-card .inline-link {
	align-self: flex-end;
	min-height: 46px;
	padding: 0 16px;
	font-size: 1rem;
	box-shadow: 0 0 0 rgba(16, 32, 24, 0);
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.game-card .inline-link:not(.inline-link--disabled):hover,
.game-card .inline-link:not(.inline-link--disabled):focus-visible {
	background: var(--color-ink);
	color: #fff;
	box-shadow: 0 10px 18px rgba(16, 32, 24, 0.16);
	transform: translateY(-2px);
}

.inline-link--disabled {
	cursor: default;
	opacity: 0.52;
}

.inline-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	min-height: 46px;
	padding: 0 14px;
	border: 2px solid var(--color-ink);
	border-radius: var(--radius-card);
	color: var(--color-ink);
	font-weight: 820;
	line-height: 1.2;
	text-align: center;
	overflow-wrap: anywhere;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.inline-link span {
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 180ms ease;
}

.inline-link:hover span,
.inline-link:focus-visible span {
	transform: translateX(4px) rotate(45deg);
}

.inline-link--disabled:hover span {
	transform: rotate(45deg);
}

.about-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
	width: min(100%, var(--max-width));
	margin: 0 auto;
}

.about-layout__intro {
	display: grid;
	gap: 24px;
}

.about-layout__intro p:not(.section-kicker) {
	color: var(--color-muted);
	font-size: 1.35rem;
}

.values-panel {
	display: grid;
	gap: 1px;
	overflow: hidden;
	border-radius: var(--radius-card);
	background: rgba(16, 32, 24, 0.1);
	box-shadow: var(--shadow-soft);
}

.value-item {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 18px;
	padding: clamp(22px, 4vw, 34px);
	background: var(--color-cream);
}

.value-item__icon {
	display: grid;
	width: 56px;
	height: 56px;
	place-items: center;
	border-radius: 50%;
	background: var(--color-forest);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 850;
}

.value-item p {
	margin-top: 8px;
	color: var(--color-muted);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	width: min(100%, var(--max-width));
	margin: 0 auto;
}

.testimonial-card {
	position: relative;
	display: grid;
	gap: 22px;
	margin: 0;
	padding: clamp(24px, 4vw, 34px);
	background: #fff;
	border: 1px solid rgba(16, 32, 24, 0.08);
	border-top: 4px solid rgba(215, 164, 50, 0.7);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-small);
}

.testimonial-card blockquote {
	margin: 0;
	color: var(--color-ink);
	font-size: 1.12rem;
}

.testimonial-card figcaption {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--color-muted);
	font-weight: 760;
}

.testimonial-card__avatar {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 50%;
	background: var(--color-gold);
	color: var(--color-ink);
	font-weight: 850;
}

.contact-panel {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 0;
	overflow: hidden;
	width: min(100%, var(--max-width));
	margin: 0 auto;
	background: var(--color-gold);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
}

.contact-panel__visual {
	position: relative;
	min-height: 420px;
	background:
		radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.42), transparent 28%),
		linear-gradient(145deg, #efd975, #ba7d23);
}

.contact-device {
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(68%, 300px);
	aspect-ratio: 0.72;
	padding: 22px;
	border: 10px solid rgba(255, 253, 248, 0.88);
	border-radius: 28px;
	background: var(--color-forest);
	box-shadow: 0 30px 80px rgba(16, 32, 24, 0.28);
	transform: translate(-50%, -50%) rotate(-5deg);
}

.contact-device span {
	display: block;
	height: 22%;
	margin-bottom: 18px;
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.86);
}

.contact-device span:nth-child(2) {
	width: 72%;
	background: var(--color-teal);
}

.contact-device span:nth-child(3) {
	width: 84%;
	background: var(--color-coral);
}

.contact-panel__body {
	display: grid;
	align-content: center;
	gap: 22px;
	padding: clamp(28px, 6vw, 72px);
	background:
		radial-gradient(circle at 88% 12%, rgba(215, 164, 50, 0.22), transparent 34%),
		linear-gradient(145deg, var(--color-forest), var(--color-forest-deep));
	color: #fff;
}

.contact-panel__body .section-kicker,
.contact-panel__body h2,
.contact-panel__body p {
	color: #fff;
}

.contact-panel__body p {
	font-size: 1.15rem;
}

.contact-panel__body .button--dark {
	background: #fff;
	color: var(--color-ink);
	border-color: #fff;
}

.contact-panel__body .button--dark:hover,
.contact-panel__body .button--dark:focus-visible {
	background: var(--color-gold);
	border-color: var(--color-gold);
}

.site-footer {
	padding: 42px 24px 54px;
	background: var(--color-forest);
	color: #fff;
}

.site-footer__inner {
	display: grid;
	gap: 28px;
	width: min(100%, var(--max-width));
	margin: 0 auto;
}

.site-footer__top,
.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-footer__top {
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__brand {
	color: #fff;
	font-size: 1.15rem;
}

.store-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.store-link {
	display: grid;
	min-width: 164px;
	min-height: 56px;
	padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, 0.08);
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.store-link:hover,
.store-link:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.48);
	transform: translateY(-2px);
}

.store-link__small {
	font-size: 0.7rem;
	line-height: 1.1;
	opacity: 0.75;
}

.store-link__large {
	font-size: 1.05rem;
	font-weight: 850;
	line-height: 1.15;
}

.site-footer__middle {
	display: flex;
	justify-content: flex-start;
}

.site-footer__menu {
	flex-wrap: wrap;
	gap: 22px;
}

.site-footer__menu a {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 720;
}

.site-footer__bottom {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.92rem;
}

.social-row {
	display: flex;
	gap: 10px;
}

.social-row a {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	color: #fff;
	font-weight: 850;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-row a:hover,
.social-row a:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.site-main--archive,
.site-main--singular,
.site-main--game {
	min-height: 70vh;
	padding: calc(var(--header-height) + 66px) 24px 88px;
	background: var(--color-cream);
}

.archive-hero,
.singular-content {
	width: min(100%, 920px);
	margin: 0 auto;
}

.archive-hero {
	display: grid;
	gap: 14px;
	margin-bottom: 34px;
}

.archive-hero--centered {
	justify-items: center;
	text-align: center;
}

.archive-hero h1,
.singular-header h1 {
	color: var(--color-ink);
	font-size: 4.6rem;
}

.game-grid--archive {
	margin-bottom: 34px;
}

.post-list {
	display: grid;
	gap: 22px;
	width: min(100%, 920px);
	margin: 0 auto;
}

.post-card {
	display: grid;
	grid-template-columns: minmax(220px, 0.42fr) 1fr;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(16, 32, 24, 0.08);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-small);
}

.post-card--no-media {
	grid-template-columns: 1fr;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	display: grid;
	gap: 14px;
	padding: 26px;
}

.post-card h2 a:hover {
	color: var(--color-forest);
}

.singular-content {
	padding: clamp(30px, 6vw, 64px);
	background: #fff;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-small);
}

.singular-content--centered {
	display: grid;
	gap: 20px;
	text-align: center;
}

.singular-header {
	display: grid;
	gap: 14px;
	margin-bottom: 28px;
}

.singular-media {
	margin: 0 0 30px;
	overflow: hidden;
	border-radius: var(--radius-card);
}

.singular-media img {
	width: 100%;
}

.game-detail {
	width: min(100%, var(--max-width));
	margin: 0 auto;
}

.game-detail__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	overflow: hidden;
	background: var(--color-white);
	border: 1px solid rgba(16, 32, 24, 0.08);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-soft);
}

.game-detail__hero--sage {
	--game-hero-a: #dbeac4;
	--game-hero-b: #8fb168;
}

.game-detail__hero--teal {
	--game-hero-a: #d5f1ee;
	--game-hero-b: #6ebfba;
}

.game-detail__hero--coral {
	--game-hero-a: #f7d7cc;
	--game-hero-b: #df866d;
}

.game-detail__hero--gold {
	--game-hero-a: #f6e7a8;
	--game-hero-b: #d2a243;
}

.game-detail__hero--blue {
	--game-hero-a: #d8e5fb;
	--game-hero-b: #7ca0db;
}

.game-detail__hero--violet {
	--game-hero-a: #e5dcfb;
	--game-hero-b: #9c87dd;
}

.game-detail__copy {
	display: grid;
	align-content: center;
	gap: 22px;
	min-height: 520px;
	padding: clamp(30px, 6vw, 72px);
}

.game-detail__copy h1 {
	color: var(--color-ink);
	font-size: 5rem;
}

.game-detail__summary {
	max-width: 660px;
	color: var(--color-muted);
	font-size: 1.25rem;
}

.game-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.game-detail__media {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--game-hero-a), var(--game-hero-b));
}

.game-detail__media img,
.game-detail__media .game-art {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.game-detail__content {
	width: min(100%, 920px);
	margin: 42px auto 0;
	padding: clamp(30px, 6vw, 64px);
	background: #fff;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-small);
}

.game-detail__content .entry-content > :last-child {
	margin-bottom: 0;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.4em;
}

.entry-content a {
	color: var(--color-forest);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.nav-links {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	width: min(100%, 920px);
	margin: 28px auto 0;
}

.page-numbers,
.nav-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 12px;
	border-radius: var(--radius-card);
	background: #fff;
	box-shadow: var(--shadow-small);
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(22px) scale(0.98);
	transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: none;
}

@keyframes everplay-bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(-12px);
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}

	.reveal-on-scroll {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 900px) {
	:root {
		--header-height: 72px;
	}

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

	.nav-toggle {
		display: inline-grid;
		place-items: center;
	}

	.site-nav {
		position: fixed;
		top: var(--header-height);
		left: 16px;
		right: 16px;
		display: none;
		padding: 18px;
		border-radius: var(--radius-card);
		background: var(--color-white);
		box-shadow: var(--shadow-soft);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: 12px;
	}

	.site-nav a,
	.site-header .site-nav a {
		display: block;
		padding: 12px;
		color: var(--color-ink);
	}

	.hero-section__content {
		width: min(100% - 32px, 1320px);
		gap: 22px;
	}

	h1 {
		font-size: 5rem;
	}

	h2 {
		font-size: 3.35rem;
	}

	h3 {
		font-size: 1.65rem;
	}

	.game-grid,
	.game-detail__hero,
	.testimonial-grid,
	.about-layout,
	.contact-panel,
	.post-card {
		grid-template-columns: 1fr;
	}

	.game-card__body > p {
		min-height: auto;
	}

	.game-card__body h3 {
		font-size: 1.8rem;
	}

	.contact-panel__visual {
		min-height: 310px;
	}

	.game-detail__copy {
		min-height: auto;
	}

	.game-detail__copy h1 {
		font-size: 3.35rem;
	}

	.game-detail__media {
		min-height: 340px;
	}

	.site-footer__top,
	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.store-links {
		justify-content: flex-start;
	}
}

@media (max-width: 560px) {
	body {
		font-size: 16px;
	}

	h1 {
		font-size: 3.55rem;
	}

	h2,
	.archive-hero h1,
	.singular-header h1,
	.game-detail__copy h1 {
		font-size: 2.55rem;
	}

	h3 {
		font-size: 1.45rem;
	}

	.about-layout__intro p:not(.section-kicker),
	.contact-panel__body p,
	.testimonial-card blockquote {
		font-size: 1rem;
	}

	.site-brand__text {
		max-width: 180px;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.hero-section__shade {
		background:
			linear-gradient(90deg, rgba(2, 13, 7, 0.88) 0%, rgba(2, 13, 7, 0.72) 100%),
			linear-gradient(0deg, rgba(2, 13, 7, 0.62) 0%, rgba(2, 13, 7, 0.08) 42%);
	}

	.hero-actions,
	.store-links {
		width: 100%;
	}

	.game-card__icon {
		right: 18px;
		bottom: -34px;
		width: 76px;
		height: 76px;
		border-radius: 16px;
	}

	.game-card__icon-placeholder {
		font-size: 2rem;
	}

	.game-card__body {
		padding: 38px 20px 22px;
	}

	.game-card__body h3 {
		max-width: calc(100% - 84px);
		font-size: 1.45rem;
	}

	.game-card__description {
		max-width: 100%;
		font-size: 1rem;
	}

	.button,
	.store-link {
		width: 100%;
	}

	.game-detail__actions {
		width: 100%;
	}

	.value-item {
		grid-template-columns: 1fr;
	}

	.contact-panel__body {
		text-align: left;
	}

	.nav-links {
		flex-direction: column;
	}
}
