:root {
	--bg: #081019;
	--bg-deep: #050a12;
	--bg-soft: #101a25;
	--panel: rgba(10, 18, 28, 0.78);
	--panel-strong: rgba(11, 20, 32, 0.94);
	--line: rgba(160, 190, 214, 0.18);
	--line-strong: rgba(160, 190, 214, 0.32);
	--text: #edf4ff;
	--muted: #9ab0c4;
	--muted-strong: #bfd0de;
	--accent: #72d4ff;
	--accent-warm: #ffc36d;
	--shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
	--radius: 26px;
	--radius-sm: 16px;
	--width: min(1180px, calc(100vw - 2rem));
	--font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
	--font-display: "Space Grotesk", "Segoe UI", sans-serif;
	--font-title: "Bebas Neue", "Impact", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(circle at top left, rgba(114, 212, 255, 0.1), transparent 28%),
		radial-gradient(circle at top right, rgba(255, 195, 109, 0.08), transparent 30%),
		linear-gradient(180deg, #09121d 0%, #061019 54%, #040810 100%);
	color: var(--text);
	font-family: var(--font-body);
	line-height: 1.6;
}

body.lightbox-open {
	overflow: hidden;
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -2;
}

body::before {
	background:
		linear-gradient(rgba(148, 183, 210, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 183, 210, 0.05) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
}

body::after {
	background:
		radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
	z-index: -1;
}

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

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

p {
	margin: 0 0 1rem;
}

ul,
ol {
	margin: 0 0 1.2rem;
	padding-left: 1.3rem;
}

iframe {
	max-width: 100%;
}

.screen-reader-text {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	left: 1rem;
	top: 1rem;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 0.8rem 1rem;
	background: #fff;
	color: #111;
	border-radius: 0.6rem;
}

.site-width {
	width: var(--width);
	margin: 0 auto;
}

.site-main {
	padding-top: 5.8rem;
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	background: rgba(4, 8, 15, 0.4);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid transparent;
	transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
	background: rgba(5, 10, 18, 0.78);
	border-color: var(--line);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 0.9rem 0;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;
}

.site-brand__mark {
	flex: none;
	width: 3.35rem;
	height: 3.35rem;
	padding: 0.45rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-brand__logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-brand__meta {
	display: grid;
	gap: 0.1rem;
	min-width: 0;
}

.site-brand__eyebrow {
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-brand__sub {
	color: var(--muted);
	font-size: 0.86rem;
}

.menu-toggle {
	display: none;
	padding: 0.75rem 1rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--text);
	font: inherit;
}

.header-panel {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-actions .menu,
.header-actions-menu {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a,
.header-link {
	color: var(--muted-strong);
	font-size: 0.97rem;
	transition: color 0.2s ease;
}

.primary-nav a:hover,
.header-link:hover,
.header-actions .menu a:hover {
	color: var(--text);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.header-actions .menu a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--muted-strong);
	font-size: 0.92rem;
	transition:
		color 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease;
}

.header-actions .menu a:hover {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent) 0%, #4db8e8 100%);
	color: #031018;
	font-weight: 700;
	font-family: var(--font-display);
	letter-spacing: 0.02em;
	box-shadow: 0 12px 24px rgba(114, 212, 255, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 30px rgba(114, 212, 255, 0.25);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	border-color: var(--line);
	box-shadow: none;
}

.button--ghost:hover {
	box-shadow: none;
	border-color: var(--line-strong);
}

.button--small {
	padding: 0.72rem 1.05rem;
	font-size: 0.9rem;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--accent);
	font-weight: 700;
	font-family: var(--font-display);
}

.eyebrow,
.section-kicker,
.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 999px;
	color: var(--muted-strong);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.status-pill {
	padding: 0.55rem 0.9rem;
	border: 1px solid rgba(114, 212, 255, 0.28);
	background: rgba(114, 212, 255, 0.08);
}

.hero-band,
.section,
.page-hero {
	padding: 4.2rem 0;
}

.section--dense {
	padding-top: 3.4rem;
	padding-bottom: 3.4rem;
}

.hero-grid,
.studio-grid,
.game-layout,
.contact-grid,
.updates-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.hero-copy,
.page-hero__inner,
.story-card,
.content-surface,
.post-card,
.update-feature,
.update-list__item,
.game-card,
.detail-card,
.contact-panel,
.portrait-card,
.comments-surface {
	position: relative;
	background: linear-gradient(180deg, rgba(15, 24, 37, 0.8), rgba(8, 13, 20, 0.9));
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.hero-spotlight {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(31rem, 56vw, 42rem);
	padding: clamp(1.4rem, 3vw, 2.4rem);
	border-radius: calc(var(--radius) + 0.35rem);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	overflow: hidden;
	background: #08111a;
}

.hero-spotlight__media,
.hero-spotlight__veil {
	position: absolute;
	inset: 0;
}

.hero-spotlight__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.04) contrast(1.04);
	opacity: 0;
	transition: opacity 0.7s ease;
}

.hero-spotlight__media img.is-active {
	opacity: 1;
}

.hero-spotlight__veil {
	background:
		linear-gradient(90deg, rgba(4, 9, 15, 0.92) 0%, rgba(4, 9, 15, 0.78) 40%, rgba(4, 9, 15, 0.2) 100%),
		linear-gradient(180deg, rgba(4, 8, 15, 0.12) 0%, rgba(4, 8, 15, 0.82) 100%);
}

.hero-spotlight__content {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 1rem;
	max-width: min(42rem, 100%);
}

.hero-copy {
	padding: 2rem;
	align-self: start;
}

.hero-copy h1,
.hero-spotlight__content h1,
.page-hero h1,
.story-card h2,
.section-heading h2,
.update-feature h3,
.game-card h3,
.post-card__title,
.detail-card h2 {
	margin: 0;
	line-height: 1.02;
}

.hero-copy h1,
.hero-spotlight__content h1,
.page-hero h1 {
	font-family: var(--font-title);
	font-size: clamp(3.2rem, 6.4vw, 5.4rem);
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.page-hero h1 {
	line-height: 1.1;
	padding-top: 0.08em;
}

.hero-lead,
.page-hero p,
.section-heading p,
.story-card p,
.post-card p,
.update-feature p,
.update-list__item p,
.game-card p,
.detail-card p,
.content-surface,
.entry-content,
.comments-surface {
	color: var(--muted);
}

.hero-feature {
	position: absolute;
	right: clamp(1rem, 2vw, 2rem);
	bottom: clamp(1rem, 2vw, 2rem);
	z-index: 2;
	display: grid;
	gap: 0.75rem;
	width: min(25rem, 34vw);
	padding: 1.35rem;
	border-radius: 1.4rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(180deg, rgba(12, 20, 31, 0.88), rgba(7, 12, 18, 0.96));
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(18px);
}

.hero-feature h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 2.3vw, 2.2rem);
}

.hero-feature p {
	margin: 0;
	color: var(--muted);
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.6rem;
}

.stat-grid,
.highlight-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1.8rem;
}

.stat-card,
.highlight-card {
	padding: 1rem;
	border-radius: 1.2rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card__value,
.highlight-card__value {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--text);
}

.stat-card__label,
.highlight-card__label {
	display: block;
	margin-top: 0.3rem;
	font-size: 0.88rem;
	color: var(--muted);
}

.hero-stage {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.stage-stack {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.stage-card {
	position: relative;
	min-height: 0;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	background: #0c1620;
	box-shadow: var(--shadow);
	transform-style: preserve-3d;
	will-change: transform;
	transition: transform 0.2s ease;
}

.stage-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.05) contrast(1.05);
}

.stage-card::after,
.post-card__media::after,
.update-feature__media::after,
.game-card__media::after,
.gallery-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(4, 8, 15, 0.88) 100%);
}

.stage-card__overlay,
.update-feature__body,
.game-card__body,
.post-card__body {
	position: relative;
	z-index: 2;
	padding: 1.4rem;
}

.stage-card__overlay {
	position: absolute;
	inset: auto 0 0;
}

.stage-card h2 {
	margin: 0.45rem 0 0.55rem;
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 2vw, 2rem);
}

.stage-card--primary {
	min-height: clamp(22rem, 34vw, 28rem);
}

.stage-card--secondary {
	min-height: 14rem;
}

.stage-card--update {
	display: grid;
	align-content: start;
	min-height: 14rem;
	padding: 1.35rem;
	background: linear-gradient(180deg, rgba(14, 23, 34, 0.92), rgba(7, 11, 17, 0.98));
}

.stage-card--update::after {
	display: none;
}

.stage-card--update > * {
	position: relative;
	z-index: 1;
}

.signal-marquee {
	overflow: hidden;
	padding: 1rem 0 1.8rem;
}

.signal-marquee__track {
	display: flex;
	gap: 2.6rem;
	width: max-content;
	padding-left: 2rem;
	font-family: var(--font-title);
	font-size: clamp(1.8rem, 4vw, 3rem);
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.3);
	animation: marquee 30s linear infinite;
	text-transform: uppercase;
}

.section-heading {
	display: grid;
	gap: 0.9rem;
	max-width: 42rem;
	margin-bottom: 1.6rem;
}

.section-heading h2 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3.6rem);
}

.game-grid,
.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.2rem;
}

.game-card,
.post-card,
.update-feature,
.update-list__item {
	display: flex;
	flex-direction: column;
}

.game-card__media,
.post-card__media,
.update-feature__media {
	position: relative;
	display: block;
	aspect-ratio: 1.25;
	overflow: hidden;
}

.update-feature__media {
	aspect-ratio: 1.6;
}

.game-card__media img,
.post-card__media img,
.update-feature__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
}

.game-card__body,
.post-card__body,
.update-feature__body {
	display: grid;
	gap: 0.8rem;
	height: 100%;
}

.game-card h3,
.post-card__title,
.update-feature h3,
.update-list__item h3,
.detail-card h2 {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.chip {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.07);
	color: var(--muted-strong);
	font-size: 0.84rem;
}

.meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	color: var(--muted);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.updates-grid {
	align-items: start;
}

.update-list {
	display: grid;
	gap: 1rem;
}

.update-list__item,
.detail-card {
	padding: 1.25rem;
}

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

.studio-grid--single {
	grid-template-columns: minmax(0, 1fr);
}

.studio-grid--single > .story-card {
	width: 100%;
	max-width: none;
	justify-self: stretch;
}

.story-card,
.portrait-card,
.contact-panel,
.content-surface,
.comments-surface {
	padding: 1.6rem;
}

.portrait-card {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at top, rgba(255, 195, 109, 0.16), transparent 30%),
		linear-gradient(180deg, rgba(16, 26, 37, 0.9), rgba(7, 11, 17, 0.98));
}

.portrait-card img {
	width: min(100%, 420px);
	border-radius: 1.4rem;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.contact-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.contact-panel--stacked {
	display: grid;
	align-content: start;
	gap: 1.2rem;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
	gap: 1.5rem;
	align-items: start;
}

.contact-rail,
.contact-main {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.contact-detail__value {
	display: inline-block;
	margin-top: 0.55rem;
	font-family: var(--font-display);
	font-size: 1.45rem;
}

.inline-link-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.7rem;
}

.inline-link-row a {
	padding: 0.58rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-surface {
	padding: clamp(1.5rem, 3vw, 2rem);
}

.contact-form-surface > h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

.contact-form-surface > p {
	max-width: 44rem;
}

.contact-form-surface .wpforms-container,
.contact-form-surface .wpcf7 {
	margin-top: 1.6rem;
}

.contact-form-surface .wpforms-field-container {
	display: grid;
	gap: 0.2rem;
}

.contact-form-surface .wpforms-field {
	padding: 0;
	margin-bottom: 1rem;
}

.contact-form-surface .wpforms-field-label {
	margin-bottom: 0.5rem;
	color: var(--muted-strong);
	font-weight: 600;
}

.contact-form-surface .wpforms-submit-container {
	margin-top: 0.4rem;
}

.page-hero {
	position: relative;
	padding-top: 4.5rem;
	padding-bottom: 2.6rem;
}

.page-hero__inner {
	display: grid;
	gap: 1rem;
	max-width: 54rem;
	padding: clamp(1.5rem, 3vw, 2.4rem);
	overflow: visible;
}

.page-hero--article,
.page-hero--game {
	padding-top: 5.2rem;
}

.page-hero--game .page-hero__inner {
	max-width: none;
}

.narrow-width {
	max-width: 54rem;
}

.game-hero {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 1.4rem;
	align-items: center;
}

.game-hero__copy,
.game-hero__media {
	position: relative;
	padding: 1.8rem;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(14, 22, 33, 0.86), rgba(7, 12, 18, 0.96));
	box-shadow: var(--shadow);
}

.game-hero__media {
	min-height: 24rem;
	overflow: hidden;
}

.game-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: calc(var(--radius) - 0.4rem);
}

.game-layout {
	align-items: start;
}

.game-layout__primary,
.game-layout__aside {
	display: grid;
	gap: 1rem;
}

.detail-card ul {
	margin-bottom: 0;
}

.stacked-links {
	display: grid;
	gap: 0.8rem;
}

.stacked-links a {
	padding: 0.9rem 1rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

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

.gallery-card {
	position: relative;
	overflow: hidden;
	border-radius: 1.4rem;
	border: 1px solid var(--line);
	min-height: 15rem;
	background: #08111a;
	box-shadow: var(--shadow);
}

.gallery-card--interactive {
	display: block;
	cursor: zoom-in;
	transition:
		transform 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease;
}

.gallery-card--interactive:hover {
	transform: translateY(-2px);
	border-color: rgba(114, 212, 255, 0.28);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.detail-card--gallery .gallery-card {
	min-height: 11rem;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 90;
	width: min(92vw, 82rem);
	max-width: none;
	max-height: none;
	padding: 0;
	border: 0;
	background: transparent;
	overflow: visible;
}

.lightbox[open] {
	display: grid;
	place-items: center;
}

.lightbox::backdrop {
	background: rgba(3, 7, 12, 0.88);
	backdrop-filter: blur(8px);
}

.lightbox__backdrop-wrap {
	position: fixed;
	inset: 0;
	margin: 0;
	padding: 2rem;
}

.lightbox[hidden] {
	display: none;
}

.lightbox__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: transparent;
}

.lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.8rem;
	width: min(92vw, 82rem);
}

.lightbox__close {
	justify-self: end;
	padding: 0.72rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
	font: inherit;
}

.lightbox__image {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 8rem);
	margin: 0 auto;
	border-radius: 1.2rem;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.content-surface {
	font-size: 1rem;
}

.entry-content > *:first-child {
	margin-top: 0;
}

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

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: var(--font-display);
	color: var(--text);
	line-height: 1.1;
	margin: 1.6rem 0 0.8rem;
}

.entry-content blockquote {
	margin: 1.4rem 0;
	padding: 1.1rem 1.2rem;
	border-left: 3px solid var(--accent);
	background: rgba(255, 255, 255, 0.03);
	color: var(--muted-strong);
}

.entry-content a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.entry-content figure {
	margin: 1.4rem 0;
}

.entry-content .wp-block-image img,
.entry-cover img {
	border-radius: 1.2rem;
}

.entry-content .wp-block-columns {
	gap: 1.2rem;
}

.entry-content .wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin: 1.5rem 0;
}

.entry-content .wp-block-button {
	margin: 0;
}

.entry-content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0.85rem 1.2rem;
	border: 1px solid transparent;
	background: linear-gradient(135deg, var(--accent) 0%, #4db8e8 100%);
	color: #031018;
	font-family: var(--font-display);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease;
}

.entry-content .wp-block-button__link:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.entry-content .wp-block-button.is-style-outline .wp-block-button__link,
.entry-content .wp-block-button__link.has-background[style*="transparent"] {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text);
	box-shadow: none;
}

.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover,
.entry-content .wp-block-button__link.has-background[style*="transparent"]:hover {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
}

.entry-content .wp-block-embed iframe,
.game-embed iframe {
	width: 100%;
	min-height: 22rem;
	border: 0;
	border-radius: 1rem;
}

.entry-content .wp-block-list li + li {
	margin-top: 0.45rem;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content td,
.entry-content th {
	padding: 0.8rem;
	border-bottom: 1px solid var(--line);
}

.entry-content input:not([type="submit"]),
.entry-content textarea,
.entry-content select,
.wpforms-container input:not([type="submit"]),
.wpforms-container textarea,
.wpforms-container select,
.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	border-radius: 1rem;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	font: inherit;
}

.entry-content input[type="submit"],
.entry-content button,
.wpforms-submit,
.wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.35rem;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent) 0%, #4db8e8 100%);
	color: #031018;
	font-family: var(--font-display);
	font-weight: 700;
	cursor: pointer;
}

.entry-content .wpforms-container,
.entry-content .wpcf7 {
	margin-top: 1.4rem;
}

.comments-surface {
	margin-top: 1.2rem;
}

.comments-title {
	margin: 0 0 1rem;
	font-family: var(--font-display);
}

.comment-list {
	padding-left: 1.2rem;
}

.comment-list li + li {
	margin-top: 1rem;
}

.comment-meta,
.comment-metadata {
	font-size: 0.86rem;
	color: var(--muted);
}

.post-card .wp-post-image,
.update-feature .wp-post-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pagination-wrap {
	display: flex;
	justify-content: center;
	padding-top: 0.6rem;
}

.pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem;
	height: 2.4rem;
	padding: 0 0.75rem;
	margin: 0 0.25rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
	color: var(--text);
}

.pagination-wrap .current {
	background: var(--accent);
	color: #031018;
	border-color: transparent;
}

.site-footer {
	padding: 2rem 0 2.4rem;
	border-top: 1px solid var(--line);
	background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 1.2rem;
}

.footer-column h2 {
	margin: 0 0 0.8rem;
	font-family: var(--font-display);
	font-size: 1.1rem;
}

.footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.55rem;
	color: var(--muted);
}

.footer-copy,
.footer-bottom {
	color: var(--muted);
}

.footer-column .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-brand {
	display: grid;
	gap: 0.85rem;
}

.footer-bottom {
	padding-top: 1.2rem;
	font-size: 0.9rem;
}

.site-brand--footer .site-brand__mark {
	width: 3rem;
	height: 3rem;
}

.empty-state {
	text-align: center;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.no-js [data-reveal] {
	opacity: 1;
	transform: none;
}

body.nav-open {
	overflow: hidden;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 1080px) {
	.hero-grid,
	.studio-grid,
	.game-layout,
	.contact-grid,
	.contact-layout,
	.updates-grid,
	.game-hero,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-stage {
		grid-template-columns: 1fr;
	}

	.stage-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-spotlight {
		display: grid;
		align-items: end;
		min-height: 0;
	}

	.hero-feature {
		position: relative;
		right: auto;
		bottom: auto;
		width: min(100%, 28rem);
		margin-top: 1rem;
	}

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

@media (max-width: 920px) {
	.menu-toggle {
		display: inline-flex;
	}

	.header-panel {
		position: absolute;
		top: calc(100% + 0.4rem);
		right: 1rem;
		left: 1rem;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 1rem;
		border-radius: 1.2rem;
		background: rgba(7, 12, 18, 0.96);
		border: 1px solid var(--line);
		box-shadow: var(--shadow);
	}

	.header-panel.is-open {
		display: flex;
	}

	.primary-nav .menu,
	.header-actions,
	.header-actions .menu {
		flex-direction: column;
		align-items: stretch;
	}

	.primary-nav .menu {
		gap: 0.2rem;
	}

	.primary-nav a,
	.header-link {
		display: block;
		padding: 0.8rem 0.25rem;
	}

	.site-main {
		padding-top: 5rem;
	}

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

	.stat-grid,
	.highlight-grid {
		grid-template-columns: 1fr;
	}

	.contact-panel {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 680px) {
	:root {
		--width: min(1180px, calc(100vw - 1.2rem));
	}

	.hero-band,
	.section,
	.page-hero {
		padding: 3.1rem 0;
	}

	.hero-copy,
	.story-card,
	.content-surface,
	.comments-surface,
	.contact-panel,
	.game-hero__copy,
	.game-hero__media {
		padding: 1.2rem;
	}

	.hero-spotlight {
		min-height: 27rem;
		padding: 1.2rem;
		align-items: flex-start;
	}

	.hero-spotlight__veil {
		background:
			linear-gradient(180deg, rgba(4, 9, 15, 0.66) 0%, rgba(4, 9, 15, 0.92) 100%);
	}

	.hero-feature {
		width: 100%;
	}

	.hero-stage,
	.stage-stack,
	.game-grid,
	.post-grid,
	.gallery-grid,
	.update-list {
		gap: 0.85rem;
	}

	.stage-stack {
		grid-template-columns: 1fr;
	}

	.stage-card {
		min-height: 15.5rem;
	}

	.stage-card--primary {
		min-height: 18rem;
	}

	.stage-card--secondary,
	.stage-card--update {
		min-height: 12.5rem;
	}

	.game-hero__media {
		min-height: 17rem;
	}

	.entry-content .wp-block-columns {
		display: grid;
		gap: 1rem;
	}
}

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

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