/*
 * "gama_1" (template 55) — stylesheet.
 *
 * Skeleton from the source property, surface rebuilt. The three decisions that
 * separate this from the source:
 *
 * 1. One CTA colour. The source paints orange, lime and violet at full
 *    saturation across every block, so nothing reads as the primary action.
 *    Here lime (--gm-lime) is the only button fill, violet carries secondary
 *    surfaces and glows, orange is reserved for ratings and live markers.
 * 2. Layered neutrals instead of borders. Cards sit on --gm-s1/--gm-s2 with a
 *    single hairline, so a page of cards has depth without a grid of boxes.
 * 3. Copy is typeset, not dumped. 17/1.75 Inter on a ~70ch measure, real
 *    spacing rhythm between headings, styled lists, tables and callouts —
 *    against the source's 14px grey run edge to edge.
 *
 * Layout order: tokens → base → buttons → chrome (top bar, drawer, tab bar) →
 * home blocks → copy → page types → footer → responsive.
 */

/* ---------------------------------------------------------------- tokens - */

:root {
	--gm-bg: #0d1720;
	--gm-s1: #13212d;
	--gm-s2: #1a2c3d;
	--gm-s3: #21384c;
	--gm-line: rgba(212, 225, 245, .11);
	--gm-line-2: rgba(212, 225, 245, .18);

	--gm-text: #eaf1fb;
	--gm-muted: #93a4b6;
	--gm-dim: #6c7d8e;

	--gm-lime: #dafe31;
	--gm-lime-d: #c2e51c;
	--gm-violet: #735cfc;
	--gm-violet-s: rgba(115, 92, 252, .18);
	--gm-orange: #ff7a00;

	--gm-r-s: 10px;
	--gm-r-m: 14px;
	--gm-r-l: 20px;
	--gm-r-xl: 26px;

	--gm-wrap: 1340px;
	--gm-top-h: 72px;

	--gm-sh-1: 0 2px 10px rgba(0, 0, 0, .22);
	--gm-sh-2: 0 18px 44px rgba(0, 0, 0, .38);

	--gm-font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--gm-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

/* ------------------------------------------------------------------ base - */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
	margin: 0;
	padding: 0;
	background: var(--gm-bg);
	color: var(--gm-text);
	font: 400 16px/1.6 var(--gm-font);
	overflow-x: hidden;
}

img, svg { max-width: 100%; }
img { height: auto; border: 0; }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
	outline: 2px solid var(--gm-lime);
	outline-offset: 2px;
	border-radius: 4px;
}

.gm-ico { flex: none; fill: none; vertical-align: middle; }

.gm-skip {
	position: fixed;
	top: 10px;
	left: 50%;
	z-index: 90;
	padding: 10px 18px;
	background: var(--gm-lime);
	color: #0b131a;
	font-weight: 600;
	border-radius: 999px;
	transform: translate(-50%, -160%);
	transition: transform .18s ease;
}

.gm-skip:focus { transform: translate(-50%, 0); }

.gm-wrap {
	width: 100%;
	max-width: var(--gm-wrap);
	margin: 0 auto;
	padding: 0 20px;
}

.gm-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	display: inline-block;
}

.gm-live {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gm-orange);
	box-shadow: 0 0 0 4px rgba(255, 122, 0, .18);
	display: inline-block;
	animation: gm-pulse 2.4s ease-in-out infinite;
}

@keyframes gm-pulse {
	50% { box-shadow: 0 0 0 7px rgba(255, 122, 0, .05); }
}

/* --------------------------------------------------------------- buttons - */

.gm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 22px;
	font: 600 15px/1 var(--gm-font);
	white-space: nowrap;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: transform .14s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}

.gm-btn:active { transform: translateY(1px); }

.gm-btn--primary {
	background: var(--gm-lime);
	color: #0b131a;
	box-shadow: 0 6px 20px rgba(218, 254, 49, .18);
}

.gm-btn--primary:hover { background: var(--gm-lime-d); box-shadow: 0 8px 26px rgba(218, 254, 49, .28); }

.gm-btn--ghost {
	border-color: var(--gm-line-2);
	color: var(--gm-text);
	background: rgba(255, 255, 255, .02);
}

.gm-btn--ghost:hover { border-color: var(--gm-lime); color: var(--gm-lime); }

.gm-btn--glass {
	background: rgba(255, 255, 255, .07);
	border-color: var(--gm-line-2);
	backdrop-filter: blur(6px);
}

.gm-btn--glass:hover { background: rgba(255, 255, 255, .12); }

.gm-btn--violet { background: var(--gm-violet); color: #fff; }
.gm-btn--violet:hover { filter: brightness(1.08); }

.gm-btn--sm { padding: 10px 18px; font-size: 14px; }
.gm-btn--block { width: 100%; }

/* ---------------------------------------------------------------- top bar - */

.gm-top {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(13, 23, 32, .88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--gm-line);
}

.gm-top__in {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	max-width: var(--gm-wrap);
	height: var(--gm-top-h);
	margin: 0 auto;
	padding: 0 20px;
}

.gm-burger {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: var(--gm-text);
	border-radius: 12px;
	border: 1px solid var(--gm-line);
	transition: border-color .16s ease, color .16s ease;
}

.gm-burger:hover { border-color: var(--gm-lime); color: var(--gm-lime); }

.gm-burger[aria-expanded="true"] {
	color: var(--gm-lime);
	border-color: var(--gm-lime);
	background: rgba(218, 254, 49, .08);
}

.gm-mark { display: inline-flex; align-items: center; }
.gm-mark__img { display: block; height: var(--gm-mark-h, 30px); width: auto; }

.gm-mark__text { display: inline-flex; align-items: center; gap: 9px; }
.gm-mark__glyph { display: block; }

.gm-mark__word {
	font: 700 calc(var(--gm-mark-h, 30px) * .68) / 1 var(--gm-display);
	letter-spacing: -.02em;
	color: #fff;
}

.gm-top__nav { display: flex; align-items: center; gap: 4px; margin-left: 10px; }

.gm-top__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	font-size: 15px;
	font-weight: 500;
	color: var(--gm-muted);
	border-radius: 10px;
	transition: color .16s ease, background-color .16s ease;
}

.gm-top__link:hover { color: var(--gm-text); background: var(--gm-s2); }

.gm-top__search {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-width: 190px;
	margin-left: auto;
	padding: 10px 16px;
	font-size: 14px;
	color: var(--gm-dim);
	background: var(--gm-s1);
	border: 1px solid var(--gm-line);
	border-radius: 999px;
	transition: border-color .16s ease, color .16s ease;
}

.gm-top__search:hover { border-color: var(--gm-line-2); color: var(--gm-muted); }

.gm-top__auth { display: flex; align-items: center; gap: 10px; }

/* ----------------------------------------------------------------- drawer - */

.gm-scrim {
	position: fixed;
	inset: 0;
	z-index: 59;
	background: rgba(6, 12, 18, .66);
	backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .22s ease, visibility .22s ease;
}

body.is-locked { overflow: hidden; }
body.is-locked .gm-scrim { opacity: 1; visibility: visible; }

.gm-drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 60;
	display: flex;
	flex-direction: column;
	width: min(344px, 88vw);
	background: linear-gradient(180deg, #1c2f41 0%, var(--gm-s1) 260px);
	border-right: 1px solid var(--gm-line);
	box-shadow: 26px 0 60px rgba(0, 0, 0, .45);
	transform: translateX(-102%);
	transition: transform .3s cubic-bezier(.32, .72, 0, 1);
	visibility: hidden;
}

.gm-drawer.is-open { transform: none; visibility: visible; }

.gm-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex: none;
	padding: 16px 16px 14px;
	border-bottom: 1px solid var(--gm-line);
}

.gm-drawer__x {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: var(--gm-muted);
	border-radius: 11px;
	border: 1px solid var(--gm-line);
	transition: color .16s ease, border-color .16s ease, transform .16s ease;
}

.gm-drawer__x:hover { color: var(--gm-text); border-color: var(--gm-line-2); transform: rotate(90deg); }

.gm-drawer__scroll {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 14px 12px 18px;
}

/* Promo card at the head of the panel. Its button is the header registration
   link, so the drawer gains a CTA without gaining a third offer destination. */
.gm-dpromo {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	padding: 16px 14px 16px 16px;
	overflow: hidden;
	background:
		radial-gradient(120% 120% at 100% 0%, rgba(218, 254, 49, .16), transparent 62%),
		var(--gm-s2);
	border: 1px solid rgba(218, 254, 49, .26);
	border-radius: var(--gm-r-m);
	transition: border-color .16s ease, transform .16s ease;
}

.gm-dpromo:hover { border-color: var(--gm-lime); transform: translateY(-2px); }

.gm-dpromo img {
	width: 108px;
	height: auto;
	margin: -18px -14px -18px -8px;
	order: 2;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .4));
}

.gm-dpromo__txt { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.gm-dpromo__kick {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gm-muted);
}

.gm-dpromo__t { font: 700 21px/1.1 var(--gm-display); letter-spacing: -.02em; color: var(--gm-lime); }
.gm-dpromo__t em { display: block; margin-top: 3px; font: 500 12.5px/1.2 var(--gm-font); font-style: normal; color: var(--gm-text); }

.gm-dpromo__go {
	order: 3;
	display: grid;
	place-items: center;
	flex: none;
	width: 30px;
	height: 30px;
	color: #0b131a;
	background: var(--gm-lime);
	border-radius: 50%;
	transition: transform .16s ease;
}

.gm-dpromo:hover .gm-dpromo__go { transform: translateX(3px); }

.gm-drawer__group { display: flex; flex-direction: column; }
.gm-drawer__group + .gm-drawer__group { margin-top: 18px; }

.gm-drawer__cap {
	margin: 0 12px 8px;
	font: 600 11px/1 var(--gm-font);
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gm-dim);
}

/* Rows: no heavy icon plate, a lime edge marker on hover, and the chevron
   only when the row is actually pointed at. */
.gm-drow {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 12px;
	font-size: 15px;
	font-weight: 500;
	color: var(--gm-text);
	border-radius: 12px;
	transition: background-color .16s ease, transform .16s ease;
}

.gm-drow::before {
	content: '';
	position: absolute;
	left: 3px;
	top: 50%;
	width: 3px;
	height: 0;
	background: var(--gm-lime);
	border-radius: 2px;
	transform: translateY(-50%);
	transition: height .18s ease;
}

.gm-drow:hover,
.gm-drow:focus-visible { background: var(--gm-s2); transform: translateX(2px); }
.gm-drow:hover::before, .gm-drow:focus-visible::before { height: 20px; }

.gm-drow__ico { display: grid; place-items: center; width: 24px; color: var(--gm-muted); transition: color .16s ease; }
.gm-drow:hover .gm-drow__ico, .gm-drow:focus-visible .gm-drow__ico { color: var(--gm-lime); }

.gm-drow__l { flex: 1; min-width: 0; }

.gm-drow__n {
	padding: 3px 8px;
	font: 600 10.5px/1.4 var(--gm-font);
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--gm-muted);
	background: rgba(255, 255, 255, .05);
	border: 1px solid var(--gm-line);
	border-radius: 999px;
}

.gm-drow__go {
	display: grid;
	place-items: center;
	color: var(--gm-dim);
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity .16s ease, transform .16s ease;
}

.gm-drow:hover .gm-drow__go, .gm-drow:focus-visible .gm-drow__go { opacity: 1; transform: none; }

/* Rows fade in one after another as the panel slides open. */
.gm-drawer.is-open .gm-dpromo,
.gm-drawer.is-open .gm-drow {
	animation: gm-drow-in .34s cubic-bezier(.32, .72, 0, 1) both;
	animation-delay: calc(80ms + var(--i, 0) * 26ms);
}

@keyframes gm-drow-in {
	from { opacity: 0; transform: translateX(-14px); }
	to { opacity: 1; transform: none; }
}

.gm-drawer__foot {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: none;
	padding: 14px 16px;
	background: var(--gm-s1);
	border-top: 1px solid var(--gm-line);
}

.gm-drawer__foot .gm-btn { flex: 1; }

.gm-drawer__help {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 14px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--gm-muted);
	border: 1px solid var(--gm-line);
	border-radius: 999px;
	white-space: nowrap;
	transition: color .16s ease, border-color .16s ease;
}

.gm-drawer__help:hover { color: var(--gm-lime); border-color: var(--gm-lime); }
.gm-drawer__help .gm-ico { color: var(--gm-lime); }
.gm-drawer__help span { color: var(--gm-dim); }

/*
 * Desktop presentation of the same panel: an anchored dropdown under the bar
 * instead of a full-height off-canvas sheet. A sheet that eats the whole
 * viewport height and dims the page is a phone pattern; on a pointer device it
 * reads as unfinished. main.js pins the left edge to the burger and closes the
 * panel on an outside click; the body is never scroll-locked here.
 */
@media (min-width: 1024px) {
	.gm-drawer {
		top: calc(var(--gm-top-h) + 8px);
		bottom: auto;
		left: 20px;
		width: 660px;
		max-height: min(70vh, 620px);
		border: 1px solid var(--gm-line-2);
		border-radius: var(--gm-r-l);
		box-shadow: 0 26px 70px rgba(0, 0, 0, .55);
		background: linear-gradient(180deg, #1c2f41 0%, var(--gm-s1) 200px);
		transform: translateY(-8px) scale(.985);
		transform-origin: 40px top;
		opacity: 0;
		transition: opacity .16s ease, transform .2s cubic-bezier(.32, .72, 0, 1), visibility .2s;
	}

	.gm-drawer.is-open { transform: none; opacity: 1; }

	/* The bar right above it already carries the wordmark. */
	.gm-drawer__head { display: none; }

	.gm-drawer__scroll {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-content: start;
		gap: 4px 24px;
		padding: 18px 18px 14px;
	}

	.gm-dpromo { grid-column: 1 / -1; margin-bottom: 8px; }
	.gm-dpromo img { width: 120px; }
	.gm-dpromo__t { font-size: 24px; }

	.gm-drawer__group + .gm-drawer__group { margin-top: 0; }

	.gm-drawer__foot {
		justify-content: space-between;
		padding: 12px 18px;
		border-radius: 0 0 var(--gm-r-l) var(--gm-r-l);
	}

	/* The shared markup carries gm-btn--block for the mobile sheet; on the
	   dropdown the footer is a row, so the button sizes to its label. */
	.gm-drawer__foot .gm-btn { flex: 0 0 auto; width: auto; min-width: 148px; }

	.gm-dpromo__txt { flex: 1; }

	/* No dimmed page behind a dropdown. */
	.gm-scrim { display: none; }
}

/* --------------------------------------------------------------- tab bar - */

.gm-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 48;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: rgba(19, 33, 45, .96);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--gm-line);
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.gm-bar__i {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 9px 4px 8px;
	font-size: 11px;
	font-weight: 500;
	color: var(--gm-muted);
}

.gm-bar__i:hover, .gm-bar__i:focus-visible { color: var(--gm-lime); }

/* ------------------------------------------------------------------ main - */

.gm-main { padding: 26px 0 40px; }

.gm-sec { margin: 34px 0 0; }

.gm-shead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.gm-shead__t {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font: 600 21px/1.2 var(--gm-display);
	letter-spacing: -.01em;
}

.gm-shead__ico {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: var(--gm-lime);
	background: var(--gm-s2);
	border: 1px solid var(--gm-line);
	border-radius: 10px;
}

.gm-shead__side { display: inline-flex; align-items: center; gap: 10px; }

.gm-shead__all {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--gm-muted);
	background: var(--gm-s1);
	border: 1px solid var(--gm-line);
	border-radius: 999px;
	transition: color .16s ease, border-color .16s ease;
}

.gm-shead__all:hover { color: var(--gm-lime); border-color: var(--gm-lime); }

.gm-arrows { display: inline-flex; gap: 6px; }

.gm-arrow {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	color: var(--gm-muted);
	background: var(--gm-s1);
	border: 1px solid var(--gm-line);
	border-radius: 50%;
	transition: color .16s ease, border-color .16s ease, opacity .16s ease;
}

.gm-arrow:hover:not(:disabled) { color: var(--gm-lime); border-color: var(--gm-lime); }
.gm-arrow:disabled { opacity: .3; cursor: default; }

/* ------------------------------------------------------------------ hero - */

.gm-hero { margin-top: 6px; }

.gm-hero__deck {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 100%;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	border-radius: var(--gm-r-xl);
}

.gm-hero__deck::-webkit-scrollbar { height: 0; }

.gm-slide {
	position: relative;
	scroll-snap-align: center;
	display: flex;
	align-items: center;
	min-height: 300px;
	padding: 40px 44px;
	overflow: hidden;
	background: var(--gm-s1);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-r-xl);
}

/* The source's own 1600x400 banner field, cropped to whatever height the
   slide takes. */
.gm-slide__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
}

/* The banner art is dark on the left but not uniformly so; this veil keeps the
   headline at full contrast over any of the three fields. */
.gm-slide__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(95deg, rgba(9, 17, 24, .93) 0%, rgba(9, 17, 24, .78) 38%, rgba(9, 17, 24, .12) 68%, transparent 100%);
}

.gm-slide__art {
	position: absolute;
	right: 5%;
	top: 50%;
	width: 296px;
	height: auto;
	transform: translateY(-50%);
	filter: drop-shadow(0 20px 34px rgba(0, 0, 0, .5));
	pointer-events: none;
}

.gm-slide--violet .gm-slide__art { right: 3%; width: 320px; }

.gm-slide__body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	max-width: 560px;
}

.gm-slide__kick {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gm-lime);
	background: rgba(218, 254, 49, .1);
	border: 1px solid rgba(218, 254, 49, .26);
	border-radius: 999px;
}

.gm-slide--violet .gm-slide__kick { color: #c7bcff; background: var(--gm-violet-s); border-color: rgba(115, 92, 252, .4); }
.gm-slide--orange .gm-slide__kick { color: #ffb066; background: rgba(255, 122, 0, .12); border-color: rgba(255, 122, 0, .34); }

.gm-slide__t {
	font: 700 clamp(30px, 4.2vw, 46px)/1.1 var(--gm-display);
	letter-spacing: -.025em;
}

.gm-slide__t em { font-style: normal; color: var(--gm-lime); }
.gm-slide--violet .gm-slide__t em { color: #b7a8ff; }
.gm-slide--orange .gm-slide__t em { color: var(--gm-orange); }

.gm-slide__n { max-width: 460px; font-size: 15px; color: var(--gm-muted); }

.gm-hero__dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }

.gm-hero__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	background: var(--gm-s3);
	border-radius: 999px;
	transition: width .2s ease, background-color .2s ease;
}

.gm-hero__dot.is-on { width: 26px; background: var(--gm-lime); }

/* ----------------------------------------------------------------- stats - */

.gm-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 22px;
}

.gm-stat {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 16px 18px;
	background: var(--gm-s1);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-r-m);
	transition: border-color .16s ease, transform .16s ease;
}

.gm-stat:hover { border-color: var(--gm-line-2); transform: translateY(-2px); }

.gm-stat__ico {
	display: grid;
	place-items: center;
	flex: none;
	width: 42px;
	height: 42px;
	color: var(--gm-lime);
	background: rgba(218, 254, 49, .09);
	border-radius: 12px;
}

.gm-stat__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gm-stat__v { font: 600 18px/1.2 var(--gm-display); }
.gm-stat__l { font-size: 12.5px; color: var(--gm-dim); }

/* ----------------------------------------------------------------- chips - */

.gm-chips {
	display: flex;
	gap: 8px;
	margin-top: 26px;
	padding-bottom: 4px;
	overflow-x: auto;
	scrollbar-width: none;
}

.gm-chips::-webkit-scrollbar { height: 0; }

.gm-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: none;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gm-muted);
	background: var(--gm-s1);
	border: 1px solid var(--gm-line);
	border-radius: 999px;
	transition: color .16s ease, border-color .16s ease, background-color .16s ease;
}

.gm-chip:hover { color: var(--gm-text); border-color: var(--gm-line-2); }
.gm-chip .gm-ico { color: var(--gm-dim); transition: color .16s ease; }
.gm-chip:hover .gm-ico { color: var(--gm-lime); }

.gm-chip.is-active {
	color: #0b131a;
	background: var(--gm-lime);
	border-color: var(--gm-lime);
	font-weight: 600;
}

.gm-chip.is-active .gm-ico { color: #0b131a; }

/* ------------------------------------------------------------ game rails - */

.gm-row {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 5 * 14px) / 6);
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.gm-row::-webkit-scrollbar { height: 0; }

.gm-game {
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.gm-game__art {
	position: relative;
	display: block;
	aspect-ratio: 315 / 236;
	overflow: hidden;
	background: var(--gm-s2);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-r-m);
	transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.gm-game__art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.gm-game:hover .gm-game__art { border-color: rgba(218, 254, 49, .5); transform: translateY(-3px); box-shadow: var(--gm-sh-2); }
.gm-game:hover .gm-game__art img { transform: scale(1.06); }

.gm-game__play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #0b131a;
	background: rgba(9, 16, 22, .5);
	opacity: 0;
	transition: opacity .2s ease;
}

.gm-game__play .gm-ico {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 13px;
	fill: currentColor;
	background: var(--gm-lime);
	border-radius: 50%;
	box-sizing: content-box;
}

.gm-game:hover .gm-game__play,
.gm-game:focus-visible .gm-game__play { opacity: 1; }

.gm-game__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 4px 9px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .05em;
	color: #0b131a;
	background: var(--gm-lime);
	border-radius: 6px;
}

.gm-game__badge--new { background: var(--gm-violet); color: #fff; }
.gm-game__badge--jack { background: var(--gm-orange); color: #fff; }

.gm-game__name {
	margin-top: 6px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gm-game__prov { font-size: 12px; color: var(--gm-dim); }

/* ------------------------------------------------------- jackpot + wins - */

.gm-duo {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: 16px;
	margin-top: 34px;
}

.gm-jack {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	/* The winners card beside it is taller; centring keeps the panel from
	   ending in a block of dead space when the row stretches. */
	justify-content: center;
	gap: 12px;
	padding: 28px 30px;
	overflow: hidden;
	background: linear-gradient(135deg, #241b4d 0%, var(--gm-s1) 70%);
	border: 1px solid rgba(115, 92, 252, .3);
	border-radius: var(--gm-r-l);
}

.gm-jack__glow {
	position: absolute;
	left: 45%;
	top: -160px;
	width: 380px;
	height: 380px;
	background: rgba(115, 92, 252, .4);
	border-radius: 50%;
	filter: blur(80px);
}

.gm-jack__kick,
.gm-card__kick {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 13px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #c7bcff;
	background: var(--gm-violet-s);
	border: 1px solid rgba(115, 92, 252, .36);
	border-radius: 999px;
}

.gm-jack__sum {
	position: relative;
	font: 700 clamp(32px, 4.4vw, 46px)/1.05 var(--gm-display);
	letter-spacing: -.02em;
	text-shadow: 0 4px 26px rgba(115, 92, 252, .45);
}

.gm-jack__note { position: relative; font-size: 14px; color: var(--gm-muted); }

.gm-jack__row { position: relative; display: flex; gap: 10px; margin: 6px 0 4px; flex-wrap: wrap; }

.gm-jack__g {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 7px 14px 7px 7px;
	font-size: 13px;
	font-weight: 500;
	background: rgba(255, 255, 255, .05);
	border: 1px solid var(--gm-line);
	border-radius: 999px;
	transition: border-color .16s ease, background-color .16s ease;
}

.gm-jack__g:hover { border-color: rgba(218, 254, 49, .5); background: rgba(255, 255, 255, .09); }

.gm-jack__g img {
	width: 34px;
	height: 26px;
	object-fit: cover;
	border-radius: 6px;
}

/* ----------------------------------------------------------------- cards - */

.gm-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	background: var(--gm-s1);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-r-l);
}

.gm-card__head {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font: 600 16px/1.2 var(--gm-display);
}

.gm-card__head .gm-ico { color: var(--gm-lime); }

.gm-247 {
	margin-left: auto;
	padding: 3px 9px;
	font: 600 11px/1.5 var(--gm-font);
	color: var(--gm-lime);
	background: rgba(218, 254, 49, .1);
	border-radius: 999px;
}

.gm-card__sum {
	font: 700 34px/1 var(--gm-display);
	letter-spacing: -.02em;
	color: var(--gm-lime);
}

.gm-card__sum span {
	display: block;
	margin-top: 6px;
	font: 500 14px/1.3 var(--gm-font);
	color: var(--gm-text);
}

.gm-card__note { font-size: 13.5px; color: var(--gm-muted); }

.gm-card--bonus {
	background:
		radial-gradient(120% 90% at 100% 0%, rgba(218, 254, 49, .13), transparent 60%),
		var(--gm-s1);
	border-color: rgba(218, 254, 49, .22);
}

.gm-card--bonus .gm-card__kick {
	color: var(--gm-lime);
	background: rgba(218, 254, 49, .1);
	border-color: rgba(218, 254, 49, .26);
}

.gm-wins { gap: 10px; }
.gm-wins__list { display: flex; flex-direction: column; }

.gm-win {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 9px 8px;
	border-radius: 12px;
	transition: background-color .16s ease;
}

.gm-win + .gm-win { border-top: 1px solid var(--gm-line); }
.gm-win:hover { background: var(--gm-s2); }

.gm-win img {
	width: 42px;
	height: 32px;
	object-fit: cover;
	border-radius: 7px;
	flex: none;
}

.gm-win__txt { display: flex; flex-direction: column; min-width: 0; }
.gm-win__user { font-size: 13.5px; font-weight: 600; }
.gm-win__game { font-size: 12px; color: var(--gm-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.gm-win__sum {
	margin-left: auto;
	font: 600 14px/1 var(--gm-display);
	color: var(--gm-lime);
	white-space: nowrap;
}

/* ------------------------------------------------------------ offer band - */

.gm-offer {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 34px;
	padding: 30px 34px;
	overflow: hidden;
	background: linear-gradient(115deg, rgba(218, 254, 49, .12), var(--gm-s1) 55%);
	border: 1px solid rgba(218, 254, 49, .2);
	border-radius: var(--gm-r-l);
}

.gm-offer__txt { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; max-width: 620px; }

.gm-offer__kick {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--gm-lime);
}

.gm-offer__t { font: 700 clamp(22px, 2.6vw, 30px)/1.15 var(--gm-display); letter-spacing: -.02em; }
.gm-offer__n { font-size: 14.5px; color: var(--gm-muted); }
.gm-offer__art { width: 132px; height: auto; flex: none; opacity: .95; }

/* ------------------------------------------------------------------ copy - */

.gm-split { margin-top: 40px; }

.gm-copy {
	padding: 30px 34px 34px;
	background: var(--gm-s1);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-r-l);
	/* Contains the floated card column without a clearfix pseudo-element. */
	display: flow-root;
}

.gm-phead { margin-bottom: 20px; }

.gm-phead h1 {
	margin: 0;
	font: 700 clamp(26px, 3.4vw, 38px)/1.18 var(--gm-display);
	letter-spacing: -.025em;
}

.gm-lead {
	margin: 14px 0 0;
	font-size: 17px;
	line-height: 1.65;
	color: var(--gm-muted);
}

.gm-toc {
	margin: 0 0 26px;
	padding: 18px 22px;
	background: var(--gm-s2);
	border: 1px solid var(--gm-line);
	border-left: 3px solid var(--gm-lime);
	border-radius: var(--gm-r-m);
	max-width: 640px;
}

.gm-toc__t {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 10px;
	font: 600 15px/1 var(--gm-display);
}

.gm-toc__t .gm-ico { color: var(--gm-lime); }

.gm-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: gm-toc; }

.gm-toc li { counter-increment: gm-toc; }

.gm-toc li + li { margin-top: 7px; }

.gm-toc a {
	display: flex;
	gap: 10px;
	font-size: 14.5px;
	color: var(--gm-muted);
	transition: color .16s ease;
}

.gm-toc a::before {
	content: counter(gm-toc) '.';
	color: var(--gm-lime);
	font-weight: 600;
	flex: none;
}

.gm-toc a:hover { color: var(--gm-text); }

/*
 * The body copy. The source runs 14px at 1.35 across the full 1200px column;
 * this is 17/1.75 on a ~70ch measure with a real vertical rhythm, which is the
 * single biggest readability change in the template.
 */
.gm-content { font-size: 17px; line-height: 1.75; color: #d5dfeb; }

/* A landing body often carries its own <h1>; style it like the page head so
   the CMS copy never falls back to the browser's default heading. */
.gm-content h1 {
	margin: 0 0 .55em;
	font: 700 clamp(26px, 3.4vw, 36px)/1.18 var(--gm-display);
	letter-spacing: -.025em;
	color: var(--gm-text);
}

.gm-content h2,
.gm-content h3,
.gm-content h4 {
	margin: 2em 0 .6em;
	color: var(--gm-text);
	font-family: var(--gm-display);
	letter-spacing: -.02em;
	line-height: 1.25;
	scroll-margin-top: calc(var(--gm-top-h) + 16px);
}

.gm-content h2 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 600; }

.gm-content h2::after {
	content: '';
	display: block;
	width: 46px;
	height: 3px;
	margin-top: 12px;
	background: var(--gm-lime);
	border-radius: 2px;
}

.gm-content h3 { font-size: 20px; font-weight: 600; }
.gm-content h4 { font-size: 17.5px; font-weight: 600; }

.gm-content p { margin: 0 0 1.15em; }
.gm-content > :first-child { margin-top: 0; }

.gm-content strong { color: #fff; font-weight: 600; }
.gm-content em { color: #e8eef8; }

.gm-content a {
	color: var(--gm-lime);
	text-decoration: underline;
	text-decoration-color: rgba(218, 254, 49, .38);
	text-underline-offset: 3px;
	transition: text-decoration-color .16s ease;
}

.gm-content a:hover { text-decoration-color: var(--gm-lime); }

.gm-content ul, .gm-content ol { margin: 0 0 1.3em; padding-left: 0; list-style: none; }
.gm-content li { position: relative; padding-left: 30px; margin-bottom: .55em; }

.gm-content ul > li::before {
	content: '';
	position: absolute;
	left: 8px;
	top: .62em;
	width: 7px;
	height: 7px;
	background: var(--gm-lime);
	border-radius: 2px;
	transform: rotate(45deg);
}

.gm-content ol { counter-reset: gm-ol; }
.gm-content ol > li { counter-increment: gm-ol; }

.gm-content ol > li::before {
	content: counter(gm-ol);
	position: absolute;
	left: 0;
	top: .1em;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	font: 600 12px/1 var(--gm-font);
	color: var(--gm-lime);
	background: rgba(218, 254, 49, .1);
	border-radius: 6px;
}

.gm-content blockquote {
	margin: 1.6em 0;
	padding: 18px 22px;
	color: var(--gm-text);
	background: var(--gm-s2);
	border-left: 3px solid var(--gm-violet);
	border-radius: 0 var(--gm-r-m) var(--gm-r-m) 0;
}

.gm-content blockquote p:last-child { margin-bottom: 0; }

/* The network caps content images at 812px; centring them keeps a portrait
   shot from hugging the left edge of a full-width column. This is max-width
   rather than fugu_1's width, so a cover-sized image is capped while a small
   one keeps its own size instead of being upscaled into a blur. */
.gm-content img {
	display: block;
	max-width: min(812px, 100%);
	height: auto;
	margin: 26px auto;
	border-radius: var(--gm-r-m);
	border: 1px solid var(--gm-line);
}

.gm-content figure { margin: 1.6em 0; }
.gm-content figcaption { margin-top: 8px; font-size: 13.5px; color: var(--gm-dim); }

.gm-content hr { margin: 2em 0; border: 0; border-top: 1px solid var(--gm-line); }

.gm-tscroll { margin: 1.6em 0; overflow-x: auto; border: 1px solid var(--gm-line); border-radius: var(--gm-r-m); }

.gm-content table { width: 100%; border-collapse: collapse; font-size: 15px; }

.gm-content th, .gm-content td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--gm-line); }

.gm-content thead th {
	font: 600 13px/1.3 var(--gm-font);
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--gm-muted);
	background: var(--gm-s2);
	white-space: nowrap;
}

.gm-content tbody tr:last-child td { border-bottom: 0; }
.gm-content tbody tr:hover { background: rgba(255, 255, 255, .02); }

/* ----------------------------------------------------------- aside cards - */

.gm-aside { display: grid; gap: 14px; margin: 0 0 24px; }

.gm-tops { display: flex; flex-direction: column; }

.gm-tops__i {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 9px 6px;
	border-radius: 10px;
	transition: background-color .16s ease;
}

.gm-tops__i + .gm-tops__i { border-top: 1px solid var(--gm-line); }
.gm-tops__i:hover { background: var(--gm-s2); }

.gm-tops__n {
	flex: none;
	width: 22px;
	font: 700 15px/1 var(--gm-display);
	color: var(--gm-dim);
	text-align: center;
}

.gm-tops__i:nth-child(1) .gm-tops__n { color: var(--gm-lime); }

.gm-tops__i img { width: 46px; height: 34px; object-fit: cover; border-radius: 7px; flex: none; }
.gm-tops__txt { display: flex; flex-direction: column; min-width: 0; }
.gm-tops__name { font-size: 13.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gm-tops__prov { font-size: 11.5px; color: var(--gm-dim); }
.gm-tops__i .gm-ico:last-child { margin-left: auto; color: var(--gm-dim); flex: none; }

/* ---------------------------------------------------------------- rating - */

.gm-rate { display: inline-flex; align-items: center; gap: 8px; }
.gm-rate__stars { display: inline-flex; gap: 2px; }
.gm-rate__s { color: var(--gm-s3); display: inline-flex; }
.gm-rate__s .gm-ico { fill: currentColor; }
.gm-rate__s.is-on { color: var(--gm-orange); }
.gm-rate__n { font: 600 14px/1 var(--gm-display); }

/* ------------------------------------------------------- page type: list - */

.gm-tl { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }

.gm-tl__i {
	display: grid;
	grid-template-columns: 54px minmax(0, 1.5fr) minmax(0, 1.2fr) auto;
	align-items: center;
	gap: 20px;
	padding: 18px 22px;
	background: var(--gm-s1);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-r-l);
	transition: border-color .18s ease, transform .18s ease;
}

.gm-tl__i:hover { border-color: rgba(218, 254, 49, .34); transform: translateY(-2px); }
.gm-tl__i--top { border-color: rgba(218, 254, 49, .28); background: linear-gradient(120deg, rgba(218, 254, 49, .07), var(--gm-s1) 46%); }

.gm-tl__rank {
	display: grid;
    place-items: center;
	width: 46px;
	height: 46px;
	font: 700 19px/1 var(--gm-display);
	color: var(--gm-dim);
	background: var(--gm-s2);
	border: 1px solid var(--gm-line);
	border-radius: 14px;
}

.gm-tl__i--top .gm-tl__rank { color: #0b131a; background: var(--gm-lime); border-color: var(--gm-lime); }

.gm-tl__main { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.gm-tl__name { font: 600 19px/1.2 var(--gm-display); }
.gm-tl__tags { display: flex; flex-wrap: wrap; gap: 6px; }

.gm-tl__tag {
	padding: 4px 10px;
	font-size: 12px;
	color: var(--gm-muted);
	background: var(--gm-s2);
	border: 1px solid var(--gm-line);
	border-radius: 999px;
}

.gm-tl__bonus { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.gm-tl__sum { font: 700 20px/1.1 var(--gm-display); color: var(--gm-lime); }
.gm-tl__cond { font-size: 12.5px; color: var(--gm-dim); }
.gm-tl__cta { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
.gm-tl__note { font-size: 11.5px; color: var(--gm-dim); text-align: center; }

/* ----------------------------------------------------- page type: review - */

.gm-rev {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 22px;
	align-items: start;
	margin-top: 24px;
	padding: 26px 28px;
	background: linear-gradient(120deg, rgba(115, 92, 252, .12), var(--gm-s1) 54%);
	border: 1px solid rgba(115, 92, 252, .26);
	border-radius: var(--gm-r-l);
}

.gm-rev__head { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.gm-rev__name { font: 700 clamp(24px, 3vw, 32px)/1.15 var(--gm-display); letter-spacing: -.02em; }
.gm-rev__n { font-size: 15px; color: var(--gm-muted); max-width: 62ch; }

.gm-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 4px; width: 100%; }

.gm-fact {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-r-s);
}

.gm-fact__l { font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--gm-dim); }
.gm-fact__v { font-size: 14.5px; font-weight: 600; }

.gm-pc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }

.gm-pc__col { padding: 20px 22px; background: var(--gm-s1); border: 1px solid var(--gm-line); border-radius: var(--gm-r-l); }
.gm-pc__t { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 12px; font: 600 16px/1 var(--gm-display); }
.gm-pc--plus .gm-pc__t .gm-ico { color: var(--gm-lime); }
.gm-pc--minus .gm-pc__t .gm-ico { color: var(--gm-orange); }
.gm-pc__col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.gm-pc__col li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--gm-muted); }

.gm-pc__col li::before {
	content: '';
	position: absolute;
	left: 4px;
	top: .55em;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	transform: rotate(45deg);
	background: var(--gm-lime);
}

.gm-pc--minus li::before { background: var(--gm-orange); }

/* ---------------------------------------------------- page type: landing - */

.gm-lp {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-top: 6px;
	padding: 54px 34px;
	overflow: hidden;
	text-align: center;
	background: linear-gradient(150deg, #241b4d 0%, var(--gm-s1) 62%);
	border: 1px solid rgba(115, 92, 252, .3);
	border-radius: var(--gm-r-xl);
}

.gm-lp__glow {
	position: absolute;
	left: 50%;
	top: -220px;
	width: 560px;
	height: 480px;
	margin-left: -280px;
	background: rgba(115, 92, 252, .4);
	border-radius: 50%;
	filter: blur(90px);
}

.gm-lp__t { position: relative; margin: 0; font: 700 clamp(28px, 4vw, 44px)/1.14 var(--gm-display); letter-spacing: -.025em; }
.gm-lp__n { position: relative; margin: 0; max-width: 62ch; font-size: 17px; color: var(--gm-muted); }
.gm-lp__cta { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 6px; }

.gm-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }

.gm-step {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 16px 18px;
	background: var(--gm-s1);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-r-m);
}

.gm-step__n {
	display: grid;
	place-items: center;
	flex: none;
	width: 34px;
	height: 34px;
	font: 700 14px/1 var(--gm-display);
	color: #0b131a;
	background: var(--gm-lime);
	border-radius: 10px;
}

.gm-step__l { font-size: 14.5px; font-weight: 500; }

.gm-plain { margin-top: 10px; }
.gm-plain .gm-copy { max-width: 900px; margin: 0 auto; }

/* ---------------------------------------------------------------- footer - */

.gm-foot { margin-top: 48px; padding: 30px 0 96px; background: var(--gm-s1); border-top: 1px solid var(--gm-line); }

.gm-provs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
	justify-items: center;
	gap: 10px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--gm-line);
}

.gm-prov {
	display: grid;
	place-items: center;
	width: 100%;
	height: 46px;
	padding: 10px 14px;
	background: var(--gm-s2);
	border: 1px solid var(--gm-line);
	border-radius: var(--gm-r-s);
	opacity: .62;
	transition: opacity .18s ease, border-color .18s ease;
}

.gm-prov:hover { opacity: 1; border-color: var(--gm-line-2); }
.gm-prov img { max-width: 100%; max-height: 26px; width: auto; object-fit: contain; }

.gm-foot__top {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: 30px;
	padding: 30px 0;
}

.gm-foot__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.gm-foot__about { margin: 0; font-size: 14px; line-height: 1.65; color: var(--gm-dim); max-width: 42ch; }

.gm-foot__help {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gm-lime);
}

.gm-foot__help:hover { text-decoration: underline; text-underline-offset: 3px; }

.gm-foot__col { display: flex; flex-direction: column; gap: 10px; }

.gm-foot__t {
	margin-bottom: 2px;
	font: 600 13px/1 var(--gm-font);
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--gm-text);
}

.gm-foot__col a { font-size: 14px; color: var(--gm-dim); transition: color .16s ease; }
.gm-foot__col a:hover { color: var(--gm-lime); }

.gm-foot__mid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 22px 0;
	border-top: 1px solid var(--gm-line);
	border-bottom: 1px solid var(--gm-line);
}

.gm-pays { display: flex; flex-wrap: wrap; gap: 8px; }

.gm-pay {
	padding: 7px 14px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--gm-dim);
	background: var(--gm-s2);
	border: 1px solid var(--gm-line);
	border-radius: 8px;
}

.gm-pay--more { color: var(--gm-muted); }

.gm-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }

.gm-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--gm-muted);
	border: 1px solid var(--gm-line);
	border-radius: 999px;
}

.gm-badge .gm-ico { color: var(--gm-lime); }
.gm-badge--age { color: var(--gm-orange); border-color: rgba(255, 122, 0, .4); font-weight: 700; }

/* The licence mark ships as the source's own badge image. */
.gm-badge__lic { height: 30px; width: auto; opacity: .8; transition: opacity .16s ease; }
.gm-badge__lic:hover { opacity: 1; }

.gm-foot__bottom { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; }
.gm-foot__bottom p { margin: 0; font-size: 12.5px; line-height: 1.7; color: var(--gm-dim); max-width: 92ch; }
.gm-foot__copy { font-size: 12.5px; color: var(--gm-dim); }

/* ------------------------------------------------------------ responsive - */

/* Float the aside beside the copy only when the column is genuinely wide. */
@media (min-width: 1240px) {
	.gm-aside {
		float: right;
		width: 320px;
		margin: 4px 0 26px 30px;
	}
}

/* Narrower than that it is a row of cards above the copy, not a stack: three
   stacked cards would push the article most of a screen down. */
@media (max-width: 1239px) {
	.gm-aside {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: start;
		margin: 28px 0 26px;
	}
}

@media (max-width: 900px) {
	.gm-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gm-aside .gm-card--help { grid-column: span 2; }
}

@media (max-width: 720px) {
	.gm-aside { grid-template-columns: minmax(0, 1fr); }
	.gm-aside .gm-card--help { grid-column: auto; }
}

@media (min-width: 1280px) {
	.gm-bar { display: none; }
	.gm-foot { padding-bottom: 30px; }
}

@media (max-width: 1120px) {
	.gm-row { grid-auto-columns: calc((100% - 4 * 14px) / 5); }
	.gm-duo { grid-template-columns: minmax(0, 1fr); }
	.gm-rev { grid-template-columns: minmax(0, 1fr); }
	.gm-foot__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
}

@media (max-width: 1023px) {
	.gm-row { grid-auto-columns: calc((100% - 3 * 14px) / 4); }
	.gm-top__nav, .gm-top__search { display: none; }
	.gm-top__auth { margin-left: auto; }
	.gm-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gm-copy { padding: 26px 24px 28px; }
	.gm-tl__i { grid-template-columns: 46px minmax(0, 1fr); grid-auto-rows: auto; row-gap: 14px; }
	.gm-tl__bonus { grid-column: 1 / -1; }
	.gm-tl__cta { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
	.gm-slide { min-height: 250px; padding: 30px 26px; }
	.gm-slide__art, .gm-slide--violet .gm-slide__art { width: 176px; right: -14px; opacity: .85; }
	.gm-slide__n { max-width: 100%; }
	.gm-offer { flex-direction: column; align-items: flex-start; padding: 26px 24px; }
	.gm-offer__art { display: none; }
	.gm-pc { grid-template-columns: minmax(0, 1fr); }
	.gm-steps { grid-template-columns: minmax(0, 1fr); }
	.gm-facts { grid-template-columns: minmax(0, 1fr); }
}

/* The rails switch from an equal-column grid to fixed-width tiles, so a phone
   shows two and a half covers instead of squeezing eight into 360px. */
@media (max-width: 780px) {
	.gm-row { grid-auto-columns: 46vw; }
	.gm-hero__deck { gap: 12px; }
	.gm-main { padding-top: 18px; }
	.gm-sec { margin-top: 28px; }
	.gm-jack { padding: 24px 22px; }
	.gm-content { font-size: 16.5px; }
	.gm-copy { padding: 22px 18px 26px; border-radius: var(--gm-r-m); }
	.gm-foot__top { grid-template-columns: minmax(0, 1fr); gap: 24px; }
	.gm-foot__mid { flex-direction: column; align-items: flex-start; }
	.gm-prov { width: 96px; height: 40px; }
}

@media (max-width: 560px) {
	.gm-wrap { padding: 0 14px; }
	.gm-top__in { padding: 0 14px; gap: 10px; }
	/* Keep the wordmark on one line beside the auth pair on a 360px phone. */
	.gm-top .gm-mark__word { font-size: 17px; white-space: nowrap; }
	.gm-top .gm-mark__glyph { width: 26px; height: 18px; }
	.gm-top__auth .gm-btn { padding: 9px 13px; font-size: 13.5px; }
	.gm-slide__art { display: none; }
	.gm-slide__veil { background: linear-gradient(100deg, rgba(9, 17, 24, .93) 0%, rgba(9, 17, 24, .82) 60%, rgba(9, 17, 24, .55) 100%); }
	.gm-stats { grid-template-columns: minmax(0, 1fr); }
	.gm-row { grid-auto-columns: 58vw; }
	.gm-btn { padding: 12px 18px; font-size: 14.5px; }
	.gm-shead__all { display: none; }
	.gm-slide { padding: 26px 20px; }
	.gm-card__sum { font-size: 30px; }
}
