/* =========================================================================
   nobulem.wtf : v4 design system
   OLED black, hairline borders, one typeface, no gradients-as-decoration.
   ========================================================================= */

/* ---------- tokens ---------- */
:root {
	--bg: #000000;
	--bg-soft: #050506;
	--panel: #0a0a0b;
	--panel-hi: #101012;
	--panel-lo: #070708;
	--line: rgba(255, 255, 255, 0.07);
	--line-hi: rgba(255, 255, 255, 0.14);
	--text: #f4f5f6;
	--text-mid: #9a9ca3;
	--text-dim: #6b6d74;
	--white: #ffffff;
	--green: #3ddc84;
	--blue: #5aa2ff;
	--orange: #f5a524;
	--red: #ff6b6b;
	--violet: #a78bfa;

	--r-sm: 8px;
	--r-md: 12px;
	--r-lg: 16px;
	--r-xl: 22px;
	--pill: 999px;

	--shell: 1240px;
	--nav-h: 64px;

	--font: "Inter", "Inter var", -apple-system, BlinkMacSystemFont, "Segoe UI",
		system-ui, sans-serif;
	--mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "Cascadia Mono",
		Consolas, monospace;

	--ease: cubic-bezier(0.22, 0.68, 0.24, 1);
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
}
[hidden] {
	display: none !important;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nav-h) + 24px);
}
body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.6;
	font-feature-settings: "cv11", "ss01";
	letter-spacing: -0.006em;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	min-height: 100vh;
	overflow-x: hidden;
}
img,
svg,
video {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
}
button {
	cursor: pointer;
}
ul,
ol {
	list-style: none;
}
::selection {
	background: rgba(255, 255, 255, 0.16);
}
:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.55);
	outline-offset: 2px;
	border-radius: 6px;
}
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-track {
	background: #000;
}
::-webkit-scrollbar-thumb {
	background: #1b1b1e;
	border-radius: 99px;
	border: 2px solid #000;
}
::-webkit-scrollbar-thumb:hover {
	background: #2a2a2f;
}

/* ---------- typography ---------- */
h1,
h2,
h3,
h4 {
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.05;
	text-wrap: balance;
}
h1 {
	font-size: clamp(2.4rem, 6.4vw, 4.6rem);
}
h2 {
	font-size: clamp(1.75rem, 3.4vw, 2.6rem);
}
h3 {
	font-size: 1.0625rem;
	letter-spacing: -0.02em;
	line-height: 1.3;
}
p {
	color: var(--text-mid);
}
b,
strong {
	font-weight: 650;
	color: var(--text);
}
code,
kbd,
pre {
	font-family: var(--mono);
	font-size: 0.85em;
	letter-spacing: 0;
}
.eyebrow {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 650;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-dim);
}
.lede {
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	color: var(--text-mid);
	max-width: 62ch;
	line-height: 1.65;
}
.dim {
	color: var(--text-dim);
}

/* ---------- layout ---------- */
.shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: 22px;
}
main {
	display: block;
	min-height: 60vh;
}
.section {
	padding: clamp(56px, 8vw, 104px) 0;
}
.section.tight {
	padding-top: 0;
}
.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}
.section-head p {
	margin-top: 8px;
	max-width: 54ch;
}
.section-head h2 {
	margin-top: 10px;
}
.section-head.center {
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.section-head.center p {
	margin-inline: auto;
}

/* ---------- buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 42px;
	padding: 0 20px;
	border-radius: var(--pill);
	background: var(--panel-hi);
	border: 1px solid var(--line);
	color: var(--text);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	white-space: nowrap;
	transition: background 0.18s var(--ease), border-color 0.18s var(--ease),
		transform 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:hover {
	background: #17171a;
	border-color: var(--line-hi);
}
.btn:active {
	transform: translateY(1px);
}
.btn svg {
	width: 16px;
	height: 16px;
	flex: none;
}
.btn.primary {
	background: var(--white);
	border-color: var(--white);
	color: #000;
}
.btn.primary:hover {
	background: #e9e9ec;
	border-color: #e9e9ec;
}
.btn.quiet {
	background: transparent;
}
.btn.quiet:hover {
	background: var(--panel-hi);
}
.btn.lg {
	height: 48px;
	padding: 0 26px;
	font-size: 0.9375rem;
}
.btn.sm {
	height: 34px;
	padding: 0 14px;
	font-size: 0.8125rem;
	border-radius: var(--pill);
}
.btn.block {
	width: 100%;
}
.btn.danger {
	color: var(--red);
	border-color: rgba(255, 107, 107, 0.28);
}
.btn.danger:hover {
	background: rgba(255, 107, 107, 0.1);
}
.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: var(--panel);
	border: 1px solid var(--line);
	color: var(--text-mid);
	transition: color 0.18s var(--ease), background 0.18s var(--ease),
		border-color 0.18s var(--ease);
}
.icon-btn svg {
	width: 17px;
	height: 17px;
}
.icon-btn:hover {
	color: var(--text);
	background: var(--panel-hi);
	border-color: var(--line-hi);
}

/* ---------- chips / badges ---------- */
.chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 24px;
	padding: 0 9px;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid var(--line);
	color: var(--text-mid);
	font-size: 0.75rem;
	font-weight: 550;
	letter-spacing: -0.005em;
	white-space: nowrap;
}
.chip.mono {
	font-family: var(--mono);
	font-size: 0.6875rem;
	letter-spacing: 0;
}
.chip.green {
	color: var(--green);
	border-color: rgba(61, 220, 132, 0.24);
	background: rgba(61, 220, 132, 0.08);
}
.chip.blue {
	color: var(--blue);
	border-color: rgba(90, 162, 255, 0.24);
	background: rgba(90, 162, 255, 0.08);
}
.chip.orange {
	color: var(--orange);
	border-color: rgba(245, 165, 36, 0.24);
	background: rgba(245, 165, 36, 0.08);
}
.chip.red {
	color: var(--red);
	border-color: rgba(255, 107, 107, 0.24);
	background: rgba(255, 107, 107, 0.08);
}
.chip.solid {
	background: rgba(255, 255, 255, 0.9);
	color: #000;
	border-color: transparent;
	font-weight: 650;
}
.chip.off {
	color: var(--text-dim);
	border-color: var(--line-hi);
	background: rgba(255, 255, 255, 0.03);
}
.status-chip {
	gap: 7px;
	flex: none;
}
.dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--text-dim);
	flex: none;
}
.dot.live,
.dot.green {
	background: var(--green);
	box-shadow: 0 0 0 3px rgba(61, 220, 132, 0.16);
}
.dot.dev,
.dot.orange {
	background: var(--orange);
	box-shadow: 0 0 0 3px rgba(245, 165, 36, 0.14);
}
.dot.off {
	background: #4b4b52;
}
.count-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 22px;
	padding: 0 7px;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--line);
	font-size: 0.75rem;
	font-weight: 650;
	color: var(--text-mid);
}

/* ---------- panels ---------- */
.panel {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
}
.panel-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--line);
}
.panel-head svg {
	width: 16px;
	height: 16px;
	color: var(--text-dim);
}
.panel-head h2,
.panel-head h3 {
	font-size: 0.9375rem;
	font-weight: 650;
	letter-spacing: -0.015em;
}
.panel-head .spacer {
	flex: 1;
}
.panel-body {
	padding: 8px;
}
.panel-body.pad {
	padding: 18px;
}

/* rows inside panels */
.row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 14px;
	border-radius: var(--r-md);
	transition: background 0.16s var(--ease);
}
.row + .row {
	box-shadow: inset 0 1px 0 var(--line);
}
.row:hover {
	background: rgba(255, 255, 255, 0.025);
}
.row-main {
	min-width: 0;
	flex: 1;
}
.row-main b {
	display: block;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.015em;
}
.row-main span {
	display: block;
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.row-icon {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
	color: var(--text-mid);
	flex: none;
}
.row-icon svg {
	width: 16px;
	height: 16px;
}

/* ---------- top bar ---------- */
.topbar {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(0, 0, 0, 0.78);
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	border-bottom: 1px solid var(--line);
}
.topbar-inner {
	display: flex;
	align-items: center;
	gap: 8px;
	height: var(--nav-h);
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: 22px;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.035em;
	margin-right: 10px;
	flex: none;
}
.brand img {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	object-fit: cover;
}
.brand .mark {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 6px;
	background: var(--white);
	color: #000;
	font-size: 0.75rem;
	font-weight: 800;
}
.nav {
	display: flex;
	align-items: center;
	gap: 2px;
	min-width: 0;
	overflow: hidden;
}
.nav a {
	position: relative;
	padding: 8px 11px;
	border-radius: var(--r-sm);
	font-size: 0.875rem;
	font-weight: 550;
	color: var(--text-mid);
	white-space: nowrap;
	transition: color 0.16s var(--ease);
}
.nav a:hover {
	color: var(--text);
}
.nav a.active {
	color: var(--text);
	font-weight: 650;
}
.nav a.active::after {
	content: "";
	position: absolute;
	left: 11px;
	right: 11px;
	bottom: -13px;
	height: 2px;
	border-radius: 2px;
	background: var(--white);
}
.nav-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	flex: none;
}
.nav-divider {
	width: 1px;
	height: 22px;
	background: var(--line);
	margin-inline: 2px;
}
.nav-actions .btn {
	height: 38px;
	padding: 0 15px;
	font-size: 0.8125rem;
}
.menu-toggle {
	display: none;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	border: 1px solid var(--line);
	background: var(--panel);
	place-items: center;
}
.menu-toggle i {
	display: block;
	width: 15px;
	height: 1.5px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.22s var(--ease), opacity 0.18s var(--ease);
}
.menu-toggle i + i {
	margin-top: 4px;
}
.menu-toggle.open i:first-child {
	transform: translateY(2.75px) rotate(45deg);
}
.menu-toggle.open i:last-child {
	transform: translateY(-2.75px) rotate(-45deg);
}

/* account */
.account {
	position: relative;
}
.profile-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 38px;
	padding: 0 12px;
	border-radius: var(--pill);
	background: var(--panel);
	border: 1px solid var(--line);
	font-size: 0.8125rem;
	font-weight: 600;
}
.profile-trigger:hover {
	background: var(--panel-hi);
}
.profile-avatar {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
}
.profile-caret {
	width: 5px;
	height: 5px;
	border-right: 1.5px solid var(--text-dim);
	border-bottom: 1.5px solid var(--text-dim);
	transform: rotate(45deg) translateY(-1px);
}
.profile-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	width: 244px;
	padding: 8px;
	background: #0b0b0d;
	border: 1px solid var(--line-hi);
	border-radius: var(--r-lg);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
	z-index: 5;
}
.profile-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 6px;
}
.profile-head b {
	display: block;
	font-size: 0.875rem;
}
.profile-head span {
	font-size: 0.75rem;
	color: var(--text-dim);
}
.profile-avatar-lg {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
}
.profile-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 10px;
	border-radius: var(--r-sm);
	font-size: 0.875rem;
	font-weight: 550;
	color: var(--text-mid);
}
.profile-item svg {
	width: 15px;
	height: 15px;
}
.profile-item:hover {
	background: rgba(255, 255, 255, 0.05);
	color: var(--text);
}
.profile-item.danger:hover {
	color: var(--red);
	background: rgba(255, 107, 107, 0.09);
}

/* mobile nav */
.mobile-nav {
	display: none;
	flex-direction: column;
	gap: 2px;
	padding: 10px 16px 18px;
	border-bottom: 1px solid var(--line);
	background: rgba(0, 0, 0, 0.94);
}
.mobile-nav.open {
	display: flex;
}
.mobile-nav a {
	padding: 11px 12px;
	border-radius: var(--r-md);
	font-size: 0.9375rem;
	font-weight: 550;
	color: var(--text-mid);
}
.mobile-nav a.active,
.mobile-nav a:hover {
	background: rgba(255, 255, 255, 0.05);
	color: var(--text);
}
.mobile-nav .mobile-cta {
	margin-top: 8px;
}

/* ---------- hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(72px, 12vw, 148px) 0 clamp(56px, 8vw, 92px);
	text-align: center;
	border-bottom: 1px solid var(--line);
}
.hero::before {
	content: "";
	position: absolute;
	top: -320px;
	left: 50%;
	width: 1100px;
	height: 620px;
	transform: translateX(-50%);
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(122, 108, 255, 0.16),
		rgba(0, 0, 0, 0) 72%
	);
	pointer-events: none;
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(var(--line) 1px, transparent 1px),
		linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(60% 55% at 50% 30%, #000 0%, transparent 78%);
	-webkit-mask-image: radial-gradient(
		60% 55% at 50% 30%,
		#000 0%,
		transparent 78%
	);
	opacity: 0.5;
	pointer-events: none;
}
.hero .shell {
	position: relative;
	z-index: 1;
}
.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 30px;
	padding: 0 13px;
	margin-bottom: 26px;
	border-radius: var(--pill);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line-hi);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-mid);
}
.hero h1 {
	max-width: 20ch;
	margin-inline: auto;
}
.hero .lede {
	margin: 20px auto 0;
	max-width: 58ch;
	font-size: clamp(1rem, 1.6vw, 1.1875rem);
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
}
.hero-note {
	margin-top: 26px;
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.hero-note b {
	color: var(--text-mid);
	font-weight: 550;
}

/* compact page header */
.page-head {
	position: relative;
	padding: clamp(48px, 7vw, 78px) 0 clamp(28px, 4vw, 44px);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
}
.page-head::before {
	content: "";
	position: absolute;
	top: -240px;
	left: 12%;
	width: 720px;
	height: 480px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(122, 108, 255, 0.13),
		transparent 70%
	);
	pointer-events: none;
}
.page-head .shell {
	position: relative;
}
.page-head h1 {
	margin-top: 12px;
	font-size: clamp(2.1rem, 4.6vw, 3.4rem);
}
.page-head .lede {
	margin-top: 16px;
}
.page-head-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 26px;
}
.page-head-actions .status-text {
	font-size: 0.8125rem;
	color: var(--text-dim);
}

/* ---------- stat tiles ---------- */
.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
}
.stat {
	padding: 20px 18px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	text-align: center;
}
.stat b {
	display: block;
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.1;
}
.stat span {
	display: block;
	margin-top: 4px;
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.stat.green b {
	color: var(--green);
}
.stat.blue b {
	color: var(--blue);
}
.stat.orange b {
	color: var(--orange);
}
.stat.violet b {
	color: var(--violet);
}

/* ---------- feature cards ---------- */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
	gap: 12px;
}
.feature {
	position: relative;
	padding: 22px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
		transform 0.2s var(--ease);
}
.feature:hover {
	background: var(--panel-hi);
	border-color: var(--line-hi);
	transform: translateY(-2px);
}
.feature-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}
.feature-top svg {
	width: 18px;
	height: 18px;
	color: var(--text);
	flex: none;
}
.feature h3 {
	font-size: 1rem;
}
.feature p {
	font-size: 0.875rem;
	line-height: 1.6;
}
.feature-num {
	position: absolute;
	top: 18px;
	right: 20px;
	font-family: var(--mono);
	font-size: 0.6875rem;
	color: #2c2c31;
}

/* ---------- loader block ---------- */
.loader-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 12px;
	align-items: stretch;
}
.loader-wrap > * {
	min-width: 0;
}
.loader-card {
	padding: clamp(24px, 3vw, 36px);
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
}
.loader-card h2 {
	margin: 12px 0 12px;
}
.code-line {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 22px;
	padding: 12px 12px 12px 16px;
	background: #000;
	border: 1px solid var(--line-hi);
	border-radius: var(--r-md);
}
.code-line code {
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	white-space: nowrap;
	color: #d8dade;
	font-size: 0.78rem;
	scrollbar-width: none;
}
.code-line code::-webkit-scrollbar {
	display: none;
}
.copy-btn.done {
	background: rgba(61, 220, 132, 0.14);
	border-color: rgba(61, 220, 132, 0.3);
	color: var(--green);
}
.mini-points {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 18px;
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.mini-points span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.mini-points svg {
	width: 14px;
	height: 14px;
	color: var(--green);
}
.terminal {
	display: flex;
	flex-direction: column;
	background: var(--panel-lo);
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	overflow: hidden;
}
.terminal-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 13px 16px;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.015);
}
.terminal-bar i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #26262b;
}
.terminal-bar em {
	margin-left: auto;
	font-family: var(--mono);
	font-size: 0.6875rem;
	font-style: normal;
	color: var(--text-dim);
}
.terminal pre {
	flex: 1;
	max-width: 100%;
	overflow-x: auto;
	padding: 22px;
	font-family: var(--mono);
	font-size: 0.78rem;
	line-height: 1.9;
	color: #c9ccd2;
	white-space: pre;
}
.terminal pre i {
	color: #55565d;
	font-style: normal;
}
.terminal pre span {
	color: var(--violet);
}
.terminal pre .lua-global {
	color: #77bdfb;
}
.terminal pre .lua-method {
	color: #d7a8ff;
}
.terminal pre .lua-fn {
	color: #ff9f7a;
}
.terminal pre b {
	color: #8fd6a8;
	font-weight: 400;
}
.terminal pre strong {
	color: var(--green);
	font-weight: 600;
}

/* ---------- game cards ---------- */
.game-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
	gap: 12px;
}
.game-card {
	overflow: hidden;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	transition: border-color 0.2s var(--ease), transform 0.2s var(--ease),
		background 0.2s var(--ease);
}
.game-card:hover {
	border-color: var(--line-hi);
	background: var(--panel-hi);
	transform: translateY(-2px);
}
.game-art {
	position: relative;
	aspect-ratio: 16 / 10;
	display: grid;
	place-items: center;
	background: #0e0e11;
	overflow: hidden;
}
.game-art::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 55%);
}
.game-cover {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.35s var(--ease), transform 0.4s var(--ease);
}
.game-art.loaded .game-cover {
	opacity: 1;
}
.game-card:hover .game-cover {
	transform: scale(1.04);
}
.game-letter {
	font-size: 1.75rem;
	font-weight: 800;
	color: #23232a;
	letter-spacing: -0.04em;
}
.game-art .chip {
	position: absolute;
	z-index: 2;
	bottom: 10px;
	left: 10px;
	background: rgba(0, 0, 0, 0.62);
	backdrop-filter: blur(8px);
}
.game-art .dot {
	position: absolute;
	z-index: 2;
	top: 12px;
	right: 12px;
}
.game-body {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 14px;
}
.game-body > div {
	min-width: 0;
	flex: 1;
}
.game-body h3 {
	font-size: 0.9375rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.place-id {
	display: block;
	font-family: var(--mono);
	font-size: 0.6875rem;
	color: var(--text-dim);
	margin-top: 3px;
}

/* ---------- toolbar (search + filters + sort) ---------- */
.toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 12px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
}
.search {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 200px;
	height: 42px;
	padding: 0 14px;
	background: #000;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	transition: border-color 0.18s var(--ease);
}
.search:focus-within {
	border-color: var(--line-hi);
}
.search svg {
	width: 16px;
	height: 16px;
	color: var(--text-dim);
	flex: none;
}
.search input {
	flex: 1;
	min-width: 0;
	font-size: 0.875rem;
}
.search input::placeholder {
	color: #55565d;
}
.segmented {
	display: flex;
	gap: 3px;
	padding: 3px;
	background: #000;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow-x: auto;
	scrollbar-width: none;
}
.segmented::-webkit-scrollbar {
	display: none;
}
.segmented button {
	padding: 8px 13px;
	border-radius: 9px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-dim);
	white-space: nowrap;
	transition: background 0.16s var(--ease), color 0.16s var(--ease);
}
.segmented button:hover {
	color: var(--text);
}
.segmented button.active {
	background: rgba(255, 255, 255, 0.94);
	color: #000;
}
select.select {
	height: 42px;
	padding: 0 34px 0 14px;
	background: #000
		url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6d74' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
		no-repeat right 11px center / 15px;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	font-size: 0.875rem;
	font-weight: 550;
	appearance: none;
	cursor: pointer;
}
select.select option {
	background: #0b0b0d;
}
.meta-line {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
	margin: 16px 2px 18px;
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.empty-state {
	padding: 46px 20px;
	text-align: center;
	color: var(--text-dim);
	font-size: 0.9375rem;
	background: var(--panel);
	border: 1px dashed var(--line-hi);
	border-radius: var(--r-lg);
}

/* ---------- executors ---------- */
.exec-section-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 34px 0 14px;
}
.exec-section-head svg {
	width: 17px;
	height: 17px;
	color: var(--text-mid);
}
.exec-section-head h2 {
	font-size: 1.125rem;
	letter-spacing: -0.025em;
}
.exec-section-head .spacer {
	flex: 1;
}
.exec-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.exec-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 16px 14px 15px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-left: 3px solid #303036;
	border-radius: var(--r-md);
	transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.exec-row:hover {
	background: var(--panel-hi);
	border-color: var(--line-hi);
}
.exec-row.ok {
	border-left-color: var(--green);
}
.exec-row.warn {
	border-left-color: var(--orange);
}
.exec-row.down {
	border-left-color: var(--red);
}
.exec-row-main {
	min-width: 0;
	flex: 1;
}
.exec-title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
}
.exec-title b {
	font-size: 0.9375rem;
	font-weight: 650;
	letter-spacing: -0.02em;
}
.exec-sub {
	margin-top: 5px;
	font-size: 0.75rem;
	color: var(--text-dim);
}
.exec-row-side {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: none;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.exec-row-side .btn.sm {
	height: 30px;
	padding: 0 11px;
	font-size: 0.75rem;
}
.exec-score {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 0.75rem;
	color: var(--text-dim);
}
.bar {
	width: 92px;
	height: 6px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.07);
	overflow: hidden;
}
.bar i {
	display: block;
	height: 100%;
	border-radius: 99px;
	background: var(--green);
}
.bar.warn i {
	background: var(--orange);
}
.bar.down i {
	background: var(--red);
}
.exec-score b {
	min-width: 34px;
	text-align: right;
	font-size: 0.75rem;
	font-weight: 650;
	color: var(--text-mid);
}
.version-value {
	font-family: var(--mono);
	font-size: 0.6875rem;
}
.exec-note {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 26px;
	padding: 13px 16px;
	background: var(--panel-lo);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.exec-note svg {
	width: 15px;
	height: 15px;
	flex: none;
}

/* ---------- showcases ---------- */
.show-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
	gap: 12px;
}
.show-card {
	display: block;
	overflow: hidden;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.show-card:hover,
.show-card:focus-visible {
	border-color: var(--line-hi);
	transform: translateY(-2px);
}
.show-art {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
	background: radial-gradient(80% 80% at 50% 40%, #131318, #08080a);
	border-bottom: 1px solid var(--line);
}
.show-art > b {
	position: absolute;
	top: 12px;
	left: 14px;
	font-family: var(--mono);
	font-size: 0.6875rem;
	font-weight: 400;
	color: #34343b;
}
.show-play {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.93);
	color: #000;
	transition: transform 0.2s var(--ease);
}
.show-play svg {
	width: 17px;
	height: 17px;
	margin-left: 2px;
	fill: currentColor;
}
.show-card:hover .show-play {
	transform: scale(1.08);
}
.show-body {
	padding: 15px 16px 17px;
}
.show-body h3 {
	margin-top: 7px;
	font-size: 0.9375rem;
}
.show-body p {
	margin-top: 7px;
	font-size: 0.8125rem;
	color: var(--text-dim);
}

/* ---------- pricing ---------- */
.plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 12px;
	align-items: start;
}
.plan {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px 22px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.plan:hover {
	border-color: var(--line-hi);
}
.plan.featured {
	background: #0d0d10;
	border-color: rgba(255, 255, 255, 0.24);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04),
		0 30px 70px -40px rgba(255, 255, 255, 0.22);
}
.plan-flag {
	position: absolute;
	top: -1px;
	right: 20px;
	transform: translateY(-50%);
	height: 22px;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	border-radius: var(--pill);
	background: var(--white);
	color: #000;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.06em;
}
.plan h3 {
	font-size: 1.0625rem;
}
.plan-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1;
}
.plan-price small {
	font-size: 0.8125rem;
	font-weight: 550;
	letter-spacing: -0.01em;
	color: var(--text-dim);
}
.plan ul {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding-top: 4px;
	border-top: 1px solid var(--line);
	margin-top: 2px;
}
.plan li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	padding-top: 5px;
	font-size: 0.875rem;
	color: var(--text-mid);
}
.plan li svg {
	width: 15px;
	height: 15px;
	margin-top: 3px;
	color: var(--green);
	flex: none;
}
.plan .btn {
	margin-top: auto;
}
.plan-note {
	padding: 11px 13px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	font-size: 0.75rem;
	color: var(--text-dim);
}
.plan-note b {
	display: block;
	font-size: 0.8125rem;
	margin-bottom: 2px;
}

/* value strip */
.strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 28px;
	margin-top: 12px;
	padding: 20px 22px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
}
.strip > div b {
	display: block;
	font-size: 0.9375rem;
}
.strip > div span {
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.strip .btn {
	margin-left: auto;
}

/* faq */
.faq {
	overflow: hidden;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
}
.faq-row + .faq-row {
	border-top: 1px solid var(--line);
}
.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 17px 20px;
	text-align: left;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.015em;
}
.faq-q i {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid var(--line-hi);
	color: var(--text-dim);
	font-style: normal;
	font-size: 0.875rem;
	flex: none;
	transition: transform 0.24s var(--ease), color 0.2s var(--ease);
}
.faq-row.open .faq-q i {
	transform: rotate(45deg);
	color: var(--text);
}
.faq-a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.28s var(--ease);
}
.faq-row.open .faq-a {
	grid-template-rows: 1fr;
}
.faq-a > div {
	overflow: hidden;
}
.faq-a p {
	padding: 0 20px 19px;
	font-size: 0.875rem;
	max-width: 76ch;
}

/* ---------- key page ---------- */
.key-hero-card {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr;
	gap: 24px;
	padding: clamp(24px, 3vw, 34px);
	background: var(--panel);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--r-xl);
}
.key-hero-card h2 {
	margin: 10px 0 12px;
}
.key-benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-top: 18px;
	font-size: 0.8125rem;
	color: var(--text-mid);
}
.key-benefits span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.key-benefits svg {
	width: 14px;
	height: 14px;
	color: var(--green);
}
.key-price {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	padding: 22px;
	background: #000;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	text-align: center;
}
.key-price b {
	font-size: 2.75rem;
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1;
}
.key-price b small {
	font-size: 1.25rem;
	vertical-align: super;
	font-weight: 650;
}
.key-price em {
	font-style: normal;
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 34px 0 22px;
	font-size: 0.75rem;
	font-weight: 650;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-dim);
}
.divider i {
	flex: 1;
	height: 1px;
	background: var(--line);
}
.providers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
	gap: 12px;
}
.provider {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.provider:hover {
	border-color: var(--line-hi);
	background: var(--panel-hi);
}
.provider.main {
	border-color: rgba(255, 255, 255, 0.2);
}
.provider header {
	display: flex;
	align-items: center;
	gap: 11px;
}
.provider header div {
	flex: 1;
}
.provider header p {
	font-size: 0.75rem;
	color: var(--text-dim);
}
.provider-logo {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--line);
	overflow: hidden;
}
.provider-logo img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}
.provider ul {
	display: flex;
	flex-direction: column;
	gap: 7px;
	font-size: 0.8125rem;
	color: var(--text-mid);
}
.provider li {
	display: flex;
	align-items: center;
	gap: 8px;
}
.provider li::before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #3a3a41;
}
.provider .btn {
	margin-top: auto;
}

/* ---------- changelog ---------- */
.clog {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.release {
	display: grid;
	grid-template-columns: 190px 1fr;
	gap: 0;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
}
.release.is-latest {
	border-color: rgba(255, 255, 255, 0.18);
}
.release-date {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.015);
	border-right: 1px solid var(--line);
}
.release-date b {
	font-size: 0.9375rem;
	letter-spacing: -0.02em;
}
.release-date small {
	font-size: 0.75rem;
	color: var(--text-dim);
}
.release-date .chip {
	align-self: flex-start;
	margin-top: 4px;
}
.release-body {
	padding: 8px 8px 12px;
}
.release-body header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 12px 12px 10px;
}
.release-games {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	flex: 1;
}
.release-games span {
	padding: 3px 9px;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid var(--line);
	font-size: 0.75rem;
	font-weight: 550;
	color: var(--text-mid);
}
.release-count {
	font-size: 0.75rem;
	color: var(--text-dim);
}
.release-body ul {
	display: flex;
	flex-direction: column;
}
.release-body li {
	display: flex;
	gap: 12px;
	padding: 11px 12px;
	border-radius: var(--r-md);
}
.release-body li:hover {
	background: rgba(255, 255, 255, 0.025);
}
.release-body li b {
	display: block;
	font-size: 0.8125rem;
	font-weight: 650;
	color: var(--text);
}
.release-body li p {
	font-size: 0.875rem;
	line-height: 1.55;
	margin-top: 2px;
}
.ctype {
	flex: none;
	height: 21px;
	padding: 0 8px;
	display: inline-flex;
	align-items: center;
	border-radius: 6px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin-top: 2px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--line);
	color: var(--text-mid);
}
.ctype.added {
	color: var(--green);
	border-color: rgba(61, 220, 132, 0.26);
	background: rgba(61, 220, 132, 0.08);
}
.ctype.fixed {
	color: var(--blue);
	border-color: rgba(90, 162, 255, 0.26);
	background: rgba(90, 162, 255, 0.08);
}
.ctype.rewritten {
	color: var(--violet);
	border-color: rgba(167, 139, 250, 0.26);
	background: rgba(167, 139, 250, 0.08);
}
.ctype.improved {
	color: var(--orange);
	border-color: rgba(245, 165, 36, 0.26);
	background: rgba(245, 165, 36, 0.08);
}

/* ---------- auth ---------- */
.auth {
	display: grid;
	place-items: center;
	min-height: calc(100vh - var(--nav-h));
	padding: 60px 22px;
}
.auth-card {
	width: 100%;
	max-width: 420px;
	padding: 34px 30px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	text-align: center;
}
.auth-card h1 {
	font-size: 1.75rem;
	margin: 12px 0 12px;
}
.auth-card p {
	font-size: 0.875rem;
}
.auth-logo {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--line);
	overflow: hidden;
}
.auth-logo img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}
.auth-card .btn {
	margin-top: 22px;
}
.auth-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-size: 0.75rem;
	color: var(--text-dim);
}
.auth-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}
.auth-back {
	display: inline-block;
	margin-top: 18px;
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.auth-back:hover {
	color: var(--text);
}

/* ---------- admin ---------- */
.admin-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 26px;
}
.admin-head > div {
	flex: 1;
}
.admin-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	margin-bottom: 12px;
}
.admin-gate-msg {
	padding: 18px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	margin-bottom: 12px;
}
.admin-gate-msg b {
	display: block;
	font-size: 0.9375rem;
}
.admin-gate-msg span {
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.form-panel {
	padding: 22px;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	margin-bottom: 12px;
}
.form-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.form-panel-head h2 {
	font-size: 1.25rem;
	margin-top: 8px;
}
.form-panel-head p {
	font-size: 0.8125rem;
	margin-top: 6px;
}
input.field,
select.field,
textarea.field,
.form-panel input:not([type="checkbox"]),
.form-panel select,
.form-panel textarea {
	width: 100%;
	height: 40px;
	padding: 0 13px;
	background: #000;
	border: 1px solid var(--line);
	border-radius: 10px;
	font-size: 0.875rem;
}
.form-panel input::placeholder {
	color: #4f5057;
}
.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
	border-color: var(--line-hi);
	outline: none;
}
.ping-toggle {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 16px;
	font-size: 0.875rem;
	color: var(--text-mid);
}
.ping-toggle input {
	width: 16px;
	height: 16px;
	accent-color: #fff;
}
.game-group {
	padding: 16px;
	background: #07070880;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	margin-bottom: 10px;
}
.game-group-head,
.change-editor-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.game-name-label {
	flex: 1;
	min-width: 220px;
}
.game-name-label .eyebrow {
	display: block;
	margin-bottom: 6px;
}
.change-editor {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.change-row-editor {
	display: grid;
	grid-template-columns: 130px 1fr 36px;
	gap: 8px;
}
.change-row-editor button {
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 10px;
	color: var(--text-dim);
	font-size: 1rem;
}
.change-row-editor button:hover {
	color: var(--red);
	border-color: rgba(255, 107, 107, 0.3);
}
.add-game,
.add-change,
.remove-game,
.new-changelog {
	height: 34px;
	padding: 0 13px;
	border-radius: var(--pill);
	border: 1px solid var(--line);
	background: var(--panel-hi);
	font-size: 0.8125rem;
	font-weight: 600;
}
.add-game:hover,
.add-change:hover,
.new-changelog:hover {
	border-color: var(--line-hi);
}
.remove-game {
	color: var(--red);
	border-color: rgba(255, 107, 107, 0.26);
}
.announcement-preview {
	margin-top: 18px;
}
.announcement-preview > span {
	display: block;
	margin-bottom: 8px;
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-dim);
}
.announcement-preview pre {
	padding: 16px;
	background: #000;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	font-size: 0.75rem;
	line-height: 1.7;
	color: #c9ccd2;
	white-space: pre-wrap;
	max-height: 320px;
	overflow: auto;
}
.announcement-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 18px;
}
.announcement-actions > span {
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.announcement-actions button[type="submit"] {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 42px;
	padding: 0 20px;
	border-radius: var(--pill);
	background: var(--white);
	color: #000;
	font-size: 0.875rem;
	font-weight: 650;
}
.announcement-actions button[type="submit"] svg {
	width: 16px;
	height: 16px;
}
.game-add {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 8px;
	margin-bottom: 12px;
}
.game-add button {
	height: 40px;
	border-radius: 10px;
	background: var(--white);
	color: #000;
	font-weight: 650;
	font-size: 0.875rem;
}
.manage-list,
.game-manage-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.manage-row,
.game-manage-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 14px;
	background: var(--panel-lo);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
}
.manage-row-main {
	flex: 1;
	min-width: 200px;
}
.manage-row-main b {
	display: block;
	font-size: 0.9375rem;
}
.manage-row-main span {
	font-size: 0.8125rem;
	color: var(--text-dim);
}
.manage-actions,
.game-manage-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.manage-actions button,
.game-manage-actions button {
	height: 32px;
	padding: 0 12px;
	border-radius: var(--pill);
	border: 1px solid var(--line);
	background: var(--panel-hi);
	font-size: 0.8125rem;
	font-weight: 600;
}
.manage-actions button.danger,
.game-manage-actions button.danger {
	color: var(--red);
	border-color: rgba(255, 107, 107, 0.26);
}
.manage-empty {
	padding: 26px;
	text-align: center;
	color: var(--text-dim);
	font-size: 0.875rem;
	border: 1px dashed var(--line-hi);
	border-radius: var(--r-md);
}
.manage-head {
	margin-bottom: 16px;
}
.manage-head h2 {
	font-size: 1.25rem;
	margin: 8px 0 6px;
}
.manage-head p {
	font-size: 0.8125rem;
}

/* ---------- legal / 404 ---------- */
.prose {
	max-width: 76ch;
	padding: clamp(24px, 3vw, 34px);
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
}
.prose h2 {
	font-size: 1.125rem;
	margin-top: 24px;
}
.prose h2:first-child {
	margin-top: 0;
}
.prose p {
	margin-top: 9px;
	font-size: 0.9375rem;
	line-height: 1.7;
}
.center-state {
	display: grid;
	place-items: center;
	min-height: calc(100vh - var(--nav-h) - 220px);
	padding: 80px 22px;
	text-align: center;
}
.center-state h1 {
	margin: 12px 0 14px;
}
.center-state .btn {
	margin-top: 26px;
}

/* ---------- cta ---------- */
.cta {
	position: relative;
	overflow: hidden;
	padding: clamp(40px, 6vw, 72px) 26px;
	text-align: center;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
}
.cta::before {
	content: "";
	position: absolute;
	top: -180px;
	left: 50%;
	width: 620px;
	height: 400px;
	transform: translateX(-50%);
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(122, 108, 255, 0.18),
		transparent 70%
	);
	pointer-events: none;
}
.cta > * {
	position: relative;
}
.cta h2 {
	margin: 12px 0 14px;
}
.cta p {
	margin-inline: auto;
	max-width: 46ch;
}
.cta .btn {
	margin-top: 26px;
}

/* ---------- footer ---------- */
.footer {
	border-top: 1px solid var(--line);
	padding: 52px 0 34px;
	margin-top: 20px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 0.8fr);
	gap: 34px;
}
.footer-lead p {
	margin-top: 14px;
	font-size: 0.875rem;
	max-width: 34ch;
}
.footer-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 0.75rem;
	color: var(--text-mid);
}
.footer-col b {
	display: block;
	margin-bottom: 12px;
	font-size: 0.8125rem;
	font-weight: 650;
}
.footer-col a {
	display: block;
	padding: 4px 0;
	font-size: 0.875rem;
	color: var(--text-dim);
	transition: color 0.16s var(--ease);
}
.footer-col a:hover {
	color: var(--text);
}
.footer-line {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	margin-top: 40px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	font-size: 0.75rem;
	color: var(--text-dim);
}

/* ---------- motion ---------- */
.reveal {
	opacity: 0;
	transform: translateY(14px);
}
.reveal.in {
	opacity: 1;
	transform: none;
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
	html {
		scroll-behavior: auto;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* ---------- responsive ---------- */
@media (max-width: 1140px) {
	.nav {
		display: none;
	}
	.menu-toggle {
		display: grid;
	}
	.nav-actions .hide-md {
		display: none;
	}
}
@media (max-width: 900px) {
	.loader-wrap {
		grid-template-columns: 1fr;
	}
	.key-hero-card {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 26px;
	}
	.release {
		grid-template-columns: 1fr;
	}
	.release-date {
		flex-direction: row;
		align-items: center;
		gap: 10px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
		padding: 14px 16px;
	}
	.release-date > div {
		display: flex;
		align-items: baseline;
		gap: 6px;
	}
	.release-date .chip {
		margin-top: 0;
		margin-left: auto;
	}
}
@media (max-width: 720px) {
	body {
		font-size: 14.5px;
	}
	.exec-row {
		flex-wrap: wrap;
	}
	.exec-row-side {
		width: 100%;
		justify-content: space-between;
	}
	.stats {
		grid-template-columns: 1fr 1fr;
	}
	.hero-actions .btn {
		flex: 1 1 auto;
	}
	.change-row-editor {
		grid-template-columns: 1fr;
	}
	.change-row-editor button {
		height: 36px;
	}
	.strip .btn {
		margin-left: 0;
		width: 100%;
	}
}
@media (max-width: 560px) {
	.shell {
		padding-inline: 16px;
	}
	.topbar-inner {
		padding-inline: 16px;
	}
	.game-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.nav-divider {
		display: none;
	}
	.row-main b,
	.row-main span {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.row {
		gap: 10px;
	}
	.exec-row-side {
		justify-content: flex-start;
	}
}
