/*
 * fugu_1 (template 54) — stylesheet.
 *
 * The source property supplies the palette and the block order; the surface
 * treatment here is a rebuild rather than a trace:
 *   - copy type is Manrope 17/1.75 at 88% white instead of the source's 12px
 *     at 50% opacity, so an article is actually readable;
 *   - surfaces are layered (field -> panel -> raised) with a single hairline
 *     border token instead of flat blocks on flat background;
 *   - every interactive element has hover, active and :focus-visible states;
 *   - rails scroll-snap and expose working arrows, the ticker pauses on hover,
 *     and everything animated stops under prefers-reduced-motion.
 *
 * Palette: navy field #06102b, acid-lime CTA #3cff00 (always on black text),
 * aqua #25c8ff for links and icons, violet #8b5cf6 and gold #ffc72e for
 * accents. Display type Unbounded, copy Manrope.
 */

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

:root {
	--fg-bg: #06102b;
	--fg-bg-deep: #040b1f;
	--fg-panel: #0c1a3f;
	--fg-panel-2: #122352;
	--fg-raise: #16295c;
	--fg-line: rgba(137, 170, 255, .16);
	--fg-line-soft: rgba(137, 170, 255, .09);

	--fg-brand: #3cff00;
	--fg-brand-ink: #04140a;
	--fg-sky: #25c8ff;
	--fg-violet: #8b5cf6;
	--fg-gold: #ffc72e;
	--fg-red: #ff4d67;

	--fg-text: #ffffff;
	--fg-muted: rgba(223, 233, 255, .64);
	--fg-dim: rgba(223, 233, 255, .42);

	--fg-r-sm: 10px;
	--fg-r: 14px;
	--fg-r-lg: 20px;
	--fg-r-xl: 26px;

	--fg-shadow: 0 20px 44px -22px rgba(0, 0, 0, .85);
	--fg-shadow-lg: 0 34px 70px -30px rgba(0, 0, 0, .9);
	--fg-wrap: 1280px;
	--fg-gut: 16px;

	--fg-display: 'Unbounded', 'Manrope', system-ui, sans-serif;
	--fg-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- reset ---------- */

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

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

body {
	margin: 0;
	background: var(--fg-bg);
	background-image:
		radial-gradient(1100px 620px at 12% -6%, rgba(37, 200, 255, .10), transparent 62%),
		radial-gradient(900px 560px at 96% 4%, rgba(139, 92, 246, .12), transparent 60%);
	background-repeat: no-repeat;
	color: var(--fg-text);
	font: 500 17px/1.75 var(--fg-body);
	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; }

:where(a, button, [tabindex]):focus-visible {
	outline: 2px solid var(--fg-brand);
	outline-offset: 3px;
	border-radius: 6px;
}

.fg-ico {
	flex: none;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fg-wrap {
	width: 100%;
	max-width: var(--fg-wrap);
	margin: 0 auto;
	padding: 0 var(--fg-gut);
}

.fg-skip {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 90;
	padding: 10px 16px;
	border-radius: var(--fg-r-sm);
	background: var(--fg-brand);
	color: var(--fg-brand-ink);
	font-weight: 700;
	transform: translateY(-160%);
	transition: transform .18s ease;
}

.fg-skip:focus { transform: translateY(0); }

.fg-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fg-brand);
	box-shadow: 0 0 0 0 rgba(60, 255, 0, .55);
	animation: fg-pulse 2.2s infinite;
}

@keyframes fg-pulse {
	70% { box-shadow: 0 0 0 9px rgba(60, 255, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(60, 255, 0, 0); }
}

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

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

.fg-btn--primary {
	background: var(--fg-brand);
	color: var(--fg-brand-ink);
	box-shadow: 0 12px 26px -12px rgba(60, 255, 0, .8);
}

.fg-btn--primary:hover { background: #57ff2b; transform: translateY(-2px); }

.fg-btn--ghost {
	border-color: var(--fg-line);
	background: rgba(255, 255, 255, .04);
	color: var(--fg-text);
}

.fg-btn--ghost:hover { border-color: rgba(137, 170, 255, .38); background: rgba(255, 255, 255, .08); }

.fg-btn--glass {
	border-color: rgba(255, 255, 255, .22);
	background: rgba(6, 16, 43, .42);
	backdrop-filter: blur(8px);
	color: #fff;
}

.fg-btn--glass:hover { background: rgba(6, 16, 43, .62); transform: translateY(-2px); }

.fg-btn--sky { background: var(--fg-sky); color: #04121f; }

.fg-btn--sky:hover { background: #4ad3ff; }

.fg-btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 12px; }

.fg-btn--lg { padding: 17px 30px; font-size: 17px; }

.fg-btn--block { width: 100%; }

.fg-btn:active { transform: translateY(0); }

.fg-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1px solid var(--fg-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .03);
	font-size: 13px;
	font-weight: 700;
	color: var(--fg-muted);
	transition: color .16s ease, border-color .16s ease, background-color .16s ease;
}

.fg-pill:hover { color: #fff; border-color: rgba(137, 170, 255, .4); background: rgba(255, 255, 255, .07); }

.fg-arrow {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--fg-line);
	border-radius: 50%;
	background: rgba(255, 255, 255, .03);
	color: var(--fg-muted);
	transition: color .16s ease, border-color .16s ease, background-color .16s ease;
}

.fg-arrow:hover { color: #fff; border-color: rgba(137, 170, 255, .4); background: rgba(255, 255, 255, .08); }

.fg-arrow[disabled] { opacity: .3; pointer-events: none; }

/* ---------- brand mark ---------- */

.fg-mark { display: inline-flex; align-items: center; flex: none; }

.fg-mark__img { display: block; width: auto; height: var(--fg-mark-h, 28px); }

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

.fg-mark__word {
	font: 700 calc(var(--fg-mark-h, 28px) * .62)/1 var(--fg-display);
	letter-spacing: -.02em;
}

/* ---------- app strip ---------- */

.fg-app {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px max(var(--fg-gut), calc(50% - var(--fg-wrap) / 2));
	background: linear-gradient(90deg, #12245c, #1b3a86);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.fg-app[hidden] { display: none; }

.fg-app__x { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: rgba(255, 255, 255, .6); }

.fg-app__x:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.fg-app__ico { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(255, 255, 255, .12); color: #fff; }

.fg-app__txt { display: flex; flex-direction: column; margin-right: auto; line-height: 1.3; }

.fg-app__t { font: 700 14px/1.3 var(--fg-display); }

.fg-app__n { font-size: 12px; color: rgba(255, 255, 255, .62); }

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

.fg-top {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(6, 16, 43, .86);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--fg-line-soft);
}

.fg-top__in {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	max-width: var(--fg-wrap);
	margin: 0 auto;
	padding: 12px var(--fg-gut);
}

.fg-burger { display: none; place-items: center; width: 42px; height: 42px; border: 1px solid var(--fg-line); border-radius: 12px; color: var(--fg-muted); }

.fg-burger:hover { color: #fff; }

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

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

.fg-top__link:hover { color: #fff; background: rgba(255, 255, 255, .06); }

.fg-top__link .fg-ico { color: var(--fg-sky); }

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

.fg-top__search:hover { border-color: rgba(137, 170, 255, .38); color: var(--fg-muted); }

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

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

.fg-scrim {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(2, 7, 20, .72);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .22s ease, visibility .22s ease;
}

.fg-drawer {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 80;
	display: flex;
	flex-direction: column;
	width: min(330px, 88vw);
	padding: 16px;
	background: var(--fg-panel);
	border-right: 1px solid var(--fg-line);
	box-shadow: var(--fg-shadow-lg);
	transform: translateX(-102%);
	transition: transform .26s cubic-bezier(.32, .72, 0, 1);
	overflow-y: auto;
	overscroll-behavior: contain;
}

body.fg-open .fg-scrim { opacity: 1; visibility: visible; }

body.fg-open .fg-drawer { transform: none; }

body.fg-open { overflow: hidden; }

.fg-drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--fg-line-soft); }

.fg-drawer__x { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--fg-muted); }

.fg-drawer__x:hover { background: rgba(255, 255, 255, .08); color: #fff; }

.fg-drawer__nav { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; }

.fg-drawer__nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 12px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	color: var(--fg-muted);
	transition: color .16s ease, background-color .16s ease;
}

.fg-drawer__nav a:hover { color: #fff; background: rgba(255, 255, 255, .06); }

/* Descendant scope here also matched the glyph inside .fg-drawer__ico — it is
   the only child of its span — which greyed every drawer icon down to --fg-dim
   instead of the sky accent the tile is built around. Only the trailing
   chevron, a direct child of the row, is meant to be dimmed. */
.fg-drawer__nav a > .fg-ico:last-child { margin-left: auto; color: var(--fg-dim); }

/* flex: none — the row is a flex line, so without it a long label (e.g.
   "Бонуси та промокоди" at 320px) shrinks the tile out of square and the
   glyph inside it goes lopsided. */
.fg-drawer__ico { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(37, 200, 255, .12); color: var(--fg-sky); }

.fg-drawer__foot { display: grid; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--fg-line-soft); }

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

.fg-main { padding: 22px 0 64px; }

.fg-sec { margin: 40px 0; }

.fg-sec--first { margin-top: 8px; }

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

.fg-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 372px;
	margin-top: 8px;
	padding: 44px clamp(20px, 4vw, 56px);
	border: 1px solid var(--fg-line);
	border-radius: var(--fg-r-xl);
	background: linear-gradient(120deg, #0a2a63, #123f8c 46%, #2b1d6b);
	box-shadow: var(--fg-shadow);
	overflow: hidden;
	isolation: isolate;
}

.fg-hero__art { position: absolute; inset: 0; z-index: -1; }

.fg-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% 50%;
}

.fg-hero__art::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(96deg, rgba(4, 11, 31, .92) 4%, rgba(4, 11, 31, .68) 42%, rgba(4, 11, 31, .12) 76%),
		linear-gradient(0deg, rgba(4, 11, 31, .55), transparent 46%);
}

.fg-hero__bubbles {
	position: absolute;
	right: 4%;
	bottom: -8%;
	width: 360px;
	height: auto;
	opacity: .5;
	mix-blend-mode: screen;
}

.fg-hero__fish {
	position: absolute;
	right: clamp(12px, 6vw, 96px);
	bottom: 6%;
	z-index: 1;
	width: clamp(190px, 24vw, 316px);
	filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .5));
	animation: fg-float 6s ease-in-out infinite;
}

@keyframes fg-float {
	50% { transform: translateY(-14px) rotate(-1.5deg); }
}

.fg-hero__body { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; max-width: 620px; }

.fg-hero__kick {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 14px;
	border: 1px solid rgba(60, 255, 0, .3);
	border-radius: 999px;
	background: rgba(60, 255, 0, .1);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em;
	color: #b6ff9c;
}

.fg-hero__t {
	font: 700 clamp(30px, 4.4vw, 52px)/1.12 var(--fg-display);
	letter-spacing: -.02em;
	text-wrap: balance;
}

.fg-hero__t em {
	font-style: normal;
	color: var(--fg-gold);
	text-shadow: 0 6px 26px rgba(255, 199, 46, .45);
}

.fg-hero__n { max-width: 470px; font-size: 16px; color: rgba(233, 240, 255, .8); }

.fg-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.fg-hero__trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 4px; }

.fg-trust { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(223, 233, 255, .72); }

.fg-trust .fg-ico { color: var(--fg-brand); }

/* ---------- winners ticker ---------- */

.fg-wins {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: -26px;
	margin-inline: clamp(10px, 3vw, 34px);
	padding: 10px 16px;
	position: relative;
	z-index: 3;
	border: 1px solid var(--fg-line);
	border-radius: var(--fg-r-lg);
	background: rgba(12, 26, 63, .92);
	backdrop-filter: blur(10px);
	box-shadow: var(--fg-shadow);
	overflow: hidden;
}

.fg-wins__tag { display: inline-flex; align-items: center; gap: 8px; flex: none; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--fg-muted); }

.fg-wins__vp { flex: 1; min-width: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 92%, transparent); }

.fg-wins__track { display: flex; gap: 10px; width: max-content; animation: fg-marquee 46s linear infinite; }

.fg-wins:hover .fg-wins__track, .fg-wins__track:focus-within { animation-play-state: paused; }

@keyframes fg-marquee {
	to { transform: translateX(-50%); }
}

.fg-win {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 14px 7px 7px;
	border: 1px solid var(--fg-line-soft);
	border-radius: 999px;
	background: rgba(255, 255, 255, .04);
	transition: border-color .16s ease, background-color .16s ease;
}

.fg-win:hover { border-color: rgba(60, 255, 0, .35); background: rgba(60, 255, 0, .07); }

.fg-win img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }

.fg-win__txt { display: flex; flex-direction: column; line-height: 1.25; white-space: nowrap; }

.fg-win__u { font-size: 12px; color: var(--fg-dim); }

.fg-win__s { font-size: 13px; font-weight: 700; color: var(--fg-brand); }

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

.fg-chips {
	display: flex;
	gap: 8px;
	margin: 26px 0 22px;
	padding-bottom: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
}

.fg-chips::-webkit-scrollbar { display: none; }

.fg-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: none;
	padding: 11px 17px;
	border: 1px solid var(--fg-line-soft);
	border-radius: 999px;
	background: rgba(255, 255, 255, .03);
	font-size: 14px;
	font-weight: 700;
	color: var(--fg-muted);
	scroll-snap-align: start;
	transition: color .16s ease, background-color .16s ease, border-color .16s ease;
}

.fg-chip:hover { color: #fff; border-color: rgba(137, 170, 255, .34); background: rgba(255, 255, 255, .07); }

.fg-chip.is-active {
	color: var(--fg-brand-ink);
	background: var(--fg-brand);
	border-color: transparent;
	box-shadow: 0 10px 22px -12px rgba(60, 255, 0, .9);
}

/* ---------- quick tiles ---------- */

.fg-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }

.fg-tile {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 116px;
	padding: 16px;
	border-radius: var(--fg-r-lg);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
}

.fg-tile:hover { transform: translateY(-3px); box-shadow: var(--fg-shadow); }

.fg-tile img { width: 74px; height: 74px; object-fit: contain; filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .38)); }

.fg-tile__txt { display: flex; flex-direction: column; gap: 3px; }

.fg-tile__t { font: 700 16px/1.2 var(--fg-display); }

.fg-tile__n { font-size: 12px; color: rgba(255, 255, 255, .72); }

.fg-tile--gold { background: linear-gradient(135deg, #f5a524, #ffd85e); color: #2a1a02; }
.fg-tile--gold .fg-tile__n { color: rgba(42, 26, 2, .72); }
.fg-tile--violet { background: linear-gradient(135deg, #5b3ce0, #8b5cf6); }
.fg-tile--blue { background: linear-gradient(135deg, #0b5fd6, #25c8ff); }
.fg-tile--red { background: linear-gradient(135deg, #b0203f, #ff4d67); }
.fg-tile--green { background: linear-gradient(135deg, #14804a, #3cff00); color: #04140a; }
.fg-tile--green .fg-tile__n { color: rgba(4, 20, 10, .7); }

/* ---------- section head ---------- */

.fg-shead { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.fg-shead__t { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; font: 700 clamp(19px, 2.4vw, 25px)/1.2 var(--fg-display); letter-spacing: -.01em; }

.fg-shead__ico { width: 32px; height: 32px; object-fit: contain; }

.fg-shead__ctl { display: flex; align-items: center; gap: 8px; }

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

.fg-rail-wrap { position: relative; margin-inline: calc(var(--fg-gut) * -1); padding-inline: var(--fg-gut); }

.fg-rail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(150px, 1fr);
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.fg-rail::-webkit-scrollbar { display: none; }

.fg-game { display: flex; flex-direction: column; gap: 9px; scroll-snap-align: start; }

.fg-game__shot {
	position: relative;
	display: block;
	aspect-ratio: 427 / 575;
	border: 1px solid var(--fg-line-soft);
	border-radius: var(--fg-r);
	background: var(--fg-panel);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.fg-game__shot img { width: 100%; height: 100%; object-fit: cover; }

.fg-game:hover .fg-game__shot { transform: translateY(-5px); border-color: rgba(60, 255, 0, .4); box-shadow: 0 22px 38px -18px rgba(0, 0, 0, .9); }

.fg-game__veil {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(0deg, rgba(4, 11, 31, .88), rgba(4, 11, 31, .35));
	opacity: 0;
	transition: opacity .2s ease;
}

.fg-game:hover .fg-game__veil, .fg-game:focus-visible .fg-game__veil { opacity: 1; }

.fg-game__play {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--fg-brand);
	color: var(--fg-brand-ink);
	font-size: 13px;
	font-weight: 700;
}

.fg-game__meta { display: flex; flex-direction: column; gap: 1px; padding: 0 2px; }

.fg-game__name { font-size: 13px; font-weight: 700; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.fg-game__prov { font-size: 11px; color: var(--fg-dim); }

.fg-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
	padding: 4px 9px;
	border-radius: 7px;
	font: 700 10px/1.4 var(--fg-body);
	letter-spacing: .06em;
	color: #fff;
	background: var(--fg-violet);
}

.fg-badge--new { background: var(--fg-sky); color: #04121f; }
.fg-badge--jack { background: var(--fg-gold); color: #2a1a02; }
.fg-badge--top { background: var(--fg-brand); color: var(--fg-brand-ink); }

/* ---------- jackpot band ---------- */

.fg-jack {
	margin: 36px 0;
	padding: clamp(16px, 2vw, 22px);
	border: 1px solid var(--fg-line);
	border-radius: var(--fg-r-xl);
	background:
		radial-gradient(620px 240px at 50% -40%, rgba(255, 199, 46, .18), transparent 70%),
		linear-gradient(180deg, var(--fg-panel), #0a1638);
	box-shadow: var(--fg-shadow);
}

.fg-jack__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }

.fg-jack__i {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 18px 12px;
	border: 1px solid var(--fg-line-soft);
	border-radius: var(--fg-r);
	background: rgba(255, 255, 255, .03);
	transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.fg-jack__i:hover { transform: translateY(-3px); border-color: rgba(255, 199, 46, .38); background: rgba(255, 199, 46, .06); }

.fg-jack__i img { height: 28px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1) brightness(2.2); opacity: .72; transition: filter .18s ease, opacity .18s ease; }

.fg-jack__i:hover img { filter: none; opacity: 1; }

.fg-jack__tag { padding: 3px 10px; border-radius: 999px; background: rgba(255, 255, 255, .1); font-size: 10px; font-weight: 700; letter-spacing: .08em; color: var(--fg-muted); }

.fg-jack__n { font-size: 15px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }

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

.fg-usp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.fg-usp__i {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 268px;
	padding: 22px;
	border-radius: var(--fg-r-lg);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.fg-usp__i:hover { transform: translateY(-4px); box-shadow: var(--fg-shadow-lg); }

.fg-usp__i img { width: 62%; max-width: 190px; margin: 0 auto -14px; object-fit: contain; filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .4)); transition: transform .3s ease; }

.fg-usp__i:hover img { transform: scale(1.06) translateY(-4px); }

.fg-usp__txt { display: flex; flex-direction: column; gap: 7px; }

.fg-usp__t { font: 700 19px/1.2 var(--fg-display); }

.fg-usp__n { font-size: 13px; line-height: 1.55; color: rgba(255, 255, 255, .74); }

.fg-usp__i--violet { background: linear-gradient(160deg, #5b3ce0, #3a1d9e); }
.fg-usp__i--blue { background: linear-gradient(160deg, #0f6fe0, #0a3c8f); }
.fg-usp__i--magenta { background: linear-gradient(160deg, #a3179e, #63106b); }
.fg-usp__i--green { background: linear-gradient(160deg, #12a05e, #0a5c47); }

/* ---------- providers ---------- */

.fg-provs { display: grid; grid-template-columns: repeat(9, 1fr); gap: 10px; }

.fg-prov {
	display: grid;
	place-items: center;
	height: 86px;
	padding: 14px;
	border: 1px solid var(--fg-line-soft);
	border-radius: var(--fg-r);
	background: rgba(255, 255, 255, .03);
	transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.fg-prov img { max-height: 30px; width: auto; object-fit: contain; filter: grayscale(1) brightness(2.6) contrast(.85); opacity: .78; transition: filter .18s ease, opacity .18s ease; }

.fg-prov:hover { transform: translateY(-3px); border-color: rgba(37, 200, 255, .35); background: rgba(37, 200, 255, .06); }

.fg-prov:hover img { filter: none; opacity: 1; }

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

.fg-offer {
	position: relative;
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 44px 0;
	padding: clamp(26px, 3.4vw, 44px);
	border: 1px solid rgba(60, 255, 0, .22);
	border-radius: var(--fg-r-xl);
	background:
		radial-gradient(560px 300px at 88% 50%, rgba(60, 255, 0, .16), transparent 68%),
		linear-gradient(120deg, #0b1c46, #142a63);
	overflow: hidden;
}

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

.fg-offer__kick { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-brand); }

.fg-offer__t { font: 700 clamp(24px, 3.4vw, 40px)/1.15 var(--fg-display); letter-spacing: -.02em; }

.fg-offer__t em { font-style: normal; color: var(--fg-gold); }

.fg-offer__n { font-size: 15px; color: var(--fg-muted); }

.fg-offer__art { width: clamp(140px, 20vw, 230px); margin-left: auto; object-fit: contain; filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .45)); }

/* ---------- split: copy + aside ---------- */

/*
 * The card column is a float, not a grid track: the copy wraps around it and
 * then reclaims the full width once the column ends, so a long article never
 * leaves a dead gutter beside it. The float only switches on from 1240px, the
 * first width at which an 812px content image still fits in the wrapped
 * column — below that the copy runs full width and the cards drop under it.
 */
.fg-split { margin-top: 48px; }

.fg-copy { display: flow-root; }

.fg-plain { max-width: 860px; margin: 24px auto 0; }

.fg-plain--lp { margin-top: 40px; }

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

.fg-phead { margin-bottom: 22px; }

.fg-phead h1 { margin: 0 0 12px; font: 700 clamp(27px, 3.6vw, 40px)/1.18 var(--fg-display); letter-spacing: -.02em; text-wrap: balance; }

.fg-lead { margin: 0; font-size: 18px; line-height: 1.7; color: var(--fg-muted); }

.fg-toc {
	margin: 0 0 28px;
	padding: 20px 22px;
	border: 1px solid var(--fg-line);
	border-left: 3px solid var(--fg-brand);
	border-radius: var(--fg-r);
	background: rgba(12, 26, 63, .7);
}

.fg-toc__t { display: flex; align-items: center; gap: 9px; font: 700 15px/1 var(--fg-display); }

.fg-toc__t .fg-ico { color: var(--fg-brand); }

.fg-toc ol { margin: 14px 0 0; padding: 0 0 0 20px; display: grid; gap: 8px; }

.fg-toc li { color: var(--fg-dim); font-size: 15px; }

.fg-toc a { color: var(--fg-muted); border-bottom: 1px solid transparent; transition: color .16s ease, border-color .16s ease; }

.fg-toc a:hover { color: var(--fg-sky); border-bottom-color: currentColor; }

.fg-content { font-size: 17px; line-height: 1.78; color: rgba(233, 240, 255, .88); }

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

.fg-content h1 { margin: 0 0 18px; font: 700 clamp(26px, 3.4vw, 38px)/1.2 var(--fg-display); letter-spacing: -.02em; color: #fff; }

.fg-content h2 { margin: 42px 0 16px; font: 700 clamp(22px, 2.8vw, 30px)/1.25 var(--fg-display); letter-spacing: -.015em; color: #fff; scroll-margin-top: 96px; }

.fg-content h3 { margin: 32px 0 12px; font: 700 clamp(18px, 2.2vw, 22px)/1.3 var(--fg-display); color: #fff; scroll-margin-top: 96px; }

.fg-content h4 { margin: 26px 0 10px; font: 700 17px/1.4 var(--fg-body); color: #fff; }

.fg-content p { margin: 0 0 18px; }

.fg-content a { color: var(--fg-sky); border-bottom: 1px solid rgba(37, 200, 255, .35); transition: color .16s ease, border-color .16s ease; }

.fg-content a:hover { color: #7adcff; border-bottom-color: currentColor; }

.fg-content strong { color: #fff; font-weight: 700; }

.fg-content ul, .fg-content ol { margin: 0 0 20px; padding-left: 4px; list-style: none; counter-reset: fg-li; }

.fg-content li { position: relative; padding-left: 32px; }

.fg-content li + li { margin-top: 10px; }

.fg-content ul > li::before {
	content: '';
	position: absolute;
	top: .62em;
	left: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--fg-brand);
	box-shadow: 0 0 12px rgba(60, 255, 0, .55);
}

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

.fg-content ol > li::before {
	content: counter(fg-li);
	position: absolute;
	top: .18em;
	left: 0;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 7px;
	background: rgba(37, 200, 255, .16);
	color: var(--fg-sky);
	font-size: 12px;
	font-weight: 700;
}

/*
 * Content images run at 812px and shrink with the column below that width.
 * Left-aligned rather than centred: beside the floated card column a centred
 * box would be pushed under the float instead of sitting next to it.
 */
/* Centred in the column: at 812px the image is narrower than the 1248px
   article measure, so a flush-left block left a lopsided gutter. `auto` side
   margins resolve against the containing block, and a block-level replaced
   element may not overlap a float's margin box, so the sticky aside (float:
   right at >=1240px) still pushes an image aside rather than sitting on it. */
.fg-content img { display: block; width: min(812px, 100%); height: auto; margin: 26px auto; border-radius: var(--fg-r); }

.fg-content figure { margin: 26px 0; }

.fg-content figcaption { margin-top: 10px; font-size: 14px; text-align: center; color: var(--fg-dim); }

.fg-content blockquote {
	margin: 26px 0;
	padding: 18px 22px;
	border: 1px solid var(--fg-line);
	border-left: 3px solid var(--fg-sky);
	border-radius: var(--fg-r);
	background: rgba(37, 200, 255, .06);
	color: rgba(233, 240, 255, .92);
}

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

.fg-tscroll { margin: 26px 0; overflow-x: auto; border: 1px solid var(--fg-line); border-radius: var(--fg-r); }

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

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

.fg-content thead th { background: rgba(255, 255, 255, .05); font-family: var(--fg-display); font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; }

.fg-content tbody tr:last-child td { border-bottom: 0; }

.fg-content tbody tr:hover td { background: rgba(255, 255, 255, .03); }

.fg-content details {
	margin: 0 0 12px;
	padding: 4px 20px;
	border: 1px solid var(--fg-line);
	border-radius: var(--fg-r);
	background: rgba(12, 26, 63, .6);
}

.fg-content summary { padding: 14px 0; font-family: var(--fg-display); font-weight: 700; cursor: pointer; list-style: none; }

.fg-content summary::-webkit-details-marker { display: none; }

.fg-content summary::after { content: '+'; float: right; color: var(--fg-brand); font-size: 20px; line-height: 1; }

.fg-content details[open] summary::after { content: '–'; }

.fg-content hr { margin: 32px 0; border: 0; border-top: 1px solid var(--fg-line); }

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

.fg-aside { display: grid; gap: 14px; }

@media (min-width: 1240px) {
	.fg-aside { float: right; width: 320px; margin: 4px 0 26px 30px; }

	/*
	 * Blocks that carry their own background or border would slide UNDER the
	 * float — only their line boxes shorten. Giving them their own formatting
	 * context makes the whole box sit beside it instead.
	 */
	.fg-toc,
	.fg-tscroll,
	.fg-content blockquote,
	.fg-content details { display: flow-root; }
}

@media (max-width: 1239px) {
	/* Cards after the copy, without moving the <h1> out of first place. */
	.fg-copy { display: flex; flex-direction: column; }
	.fg-aside { order: 1; margin-top: 36px; grid-template-columns: repeat(3, 1fr); }
}

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

.fg-card__head { display: flex; align-items: center; gap: 9px; font: 700 16px/1 var(--fg-display); }

.fg-card__head .fg-ico { color: var(--fg-sky); }

.fg-card--bonus {
	border-color: rgba(60, 255, 0, .26);
	background:
		radial-gradient(320px 180px at 100% 0%, rgba(60, 255, 0, .16), transparent 70%),
		var(--fg-panel);
}

.fg-card__kick { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-brand); }

.fg-card__sum { display: flex; flex-direction: column; gap: 2px; font: 700 34px/1 var(--fg-display); letter-spacing: -.02em; }

.fg-card__sum span { font: 600 14px/1.4 var(--fg-body); letter-spacing: 0; color: var(--fg-muted); }

.fg-card__note { font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

.fg-247 { margin-left: auto; padding: 3px 9px; border-radius: 999px; background: rgba(60, 255, 0, .14); font: 700 11px/1.5 var(--fg-body); color: var(--fg-brand); }

.fg-tops { display: grid; gap: 4px; }

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

.fg-tops__i:hover { background: rgba(255, 255, 255, .05); }

.fg-tops__n { width: 20px; font: 700 15px/1 var(--fg-display); color: var(--fg-dim); text-align: center; }

.fg-tops__i img { width: 40px; height: 52px; border-radius: 9px; object-fit: cover; }

.fg-tops__txt { display: flex; flex-direction: column; min-width: 0; margin-right: auto; }

.fg-tops__name { font-size: 14px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.fg-tops__prov { font-size: 11px; color: var(--fg-dim); }

.fg-tops__i .fg-ico { color: var(--fg-dim); }

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

.fg-rate { display: inline-flex; align-items: center; gap: 9px; }

.fg-rate__n { font: 700 19px/1 var(--fg-display); color: var(--fg-gold); }

.fg-stars { display: inline-flex; gap: 2px; }

.fg-stars i { display: inline-flex; color: rgba(255, 255, 255, .18); }

.fg-stars i.is-on { color: var(--fg-gold); }

/* ---------- toplist ---------- */

.fg-tl { display: grid; gap: 12px; }

.fg-tl__i {
	display: grid;
	grid-template-columns: 46px 130px minmax(0, 1fr) 210px;
	align-items: center;
	gap: 18px;
	padding: 18px 20px;
	border: 1px solid var(--fg-line);
	border-radius: var(--fg-r-lg);
	background: var(--fg-panel);
	transition: border-color .18s ease, transform .18s ease;
}

.fg-tl__i:hover { transform: translateY(-2px); border-color: rgba(137, 170, 255, .34); }

.fg-tl__i--top { border-color: rgba(60, 255, 0, .3); background: radial-gradient(420px 200px at 0% 0%, rgba(60, 255, 0, .12), transparent 70%), var(--fg-panel); }

.fg-tl__rank { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: rgba(255, 255, 255, .06); font: 700 17px/1 var(--fg-display); }

.fg-tl__i--top .fg-tl__rank { background: var(--fg-brand); color: var(--fg-brand-ink); }

.fg-tl__logo { display: grid; place-items: center; height: 74px; border: 1px solid var(--fg-line-soft); border-radius: var(--fg-r); background: rgba(255, 255, 255, .04); font: 700 18px/1 var(--fg-display); }

.fg-tl__body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }

.fg-tl__name { font: 700 18px/1.2 var(--fg-display); }

.fg-tl__bonus { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--fg-brand); }

.fg-tl__tags { display: flex; flex-wrap: wrap; gap: 6px; }

.fg-tl__tag { padding: 5px 11px; border: 1px solid var(--fg-line-soft); border-radius: 999px; font-size: 12px; color: var(--fg-muted); }

.fg-tl__side { display: grid; gap: 8px; justify-items: center; }

/* ---------- review ---------- */

.fg-rev {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr) 230px;
	align-items: center;
	gap: 22px;
	margin-top: 8px;
	padding: 24px;
	border: 1px solid rgba(60, 255, 0, .24);
	border-radius: var(--fg-r-xl);
	background: radial-gradient(520px 240px at 0% 0%, rgba(60, 255, 0, .12), transparent 70%), var(--fg-panel);
}

.fg-rev__logo { display: grid; place-items: center; height: 100px; border: 1px solid var(--fg-line-soft); border-radius: var(--fg-r); background: rgba(255, 255, 255, .04); font: 700 20px/1.2 var(--fg-display); text-align: center; padding: 10px; }

.fg-rev__body { display: flex; flex-direction: column; gap: 10px; }

.fg-rev__name { font: 700 clamp(21px, 2.6vw, 28px)/1.2 var(--fg-display); }

.fg-rev__note { font-size: 14px; color: var(--fg-dim); }

.fg-rev__cta { display: grid; gap: 9px; }

.fg-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }

.fg-fact { display: flex; flex-direction: column; gap: 5px; padding: 16px 18px; border: 1px solid var(--fg-line-soft); border-radius: var(--fg-r); background: rgba(255, 255, 255, .03); }

.fg-fact__ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(37, 200, 255, .12); color: var(--fg-sky); }

.fg-fact__l { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--fg-dim); }

.fg-fact__v { font: 700 16px/1.3 var(--fg-display); }

.fg-pm { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }

.fg-pm__i { padding: 20px 22px; border: 1px solid var(--fg-line); border-radius: var(--fg-r-lg); background: var(--fg-panel); }

.fg-pm__t { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font: 700 16px/1 var(--fg-display); }

.fg-pm__i--plus .fg-pm__t .fg-ico { color: var(--fg-brand); }

.fg-pm__i--minus .fg-pm__t .fg-ico { color: var(--fg-red); }

.fg-pm ul { margin: 0; padding: 0; display: grid; gap: 10px; list-style: none; }

.fg-pm li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.6; color: var(--fg-muted); }

.fg-pm li::before { content: ''; position: absolute; top: .6em; left: 4px; width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: .6; }

.fg-pm__i--plus li::before { background: var(--fg-brand); opacity: 1; }

.fg-pm__i--minus li::before { background: var(--fg-red); opacity: 1; }

/* ---------- landing ---------- */

.fg-lp {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 420px;
	margin-top: 8px;
	padding: clamp(34px, 5vw, 64px) clamp(20px, 4vw, 56px);
	border: 1px solid var(--fg-line);
	border-radius: var(--fg-r-xl);
	background: linear-gradient(120deg, #0a2a63, #123f8c 46%, #2b1d6b);
	overflow: hidden;
	isolation: isolate;
	text-align: center;
}

.fg-lp__art { position: absolute; inset: 0; z-index: -1; }

.fg-lp__art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4, 11, 31, .94), rgba(4, 11, 31, .66)); }

.fg-lp__art .fg-hero__fish { right: clamp(8px, 5vw, 70px); left: auto; bottom: -4%; opacity: .38; width: clamp(150px, 22vw, 260px); }

.fg-lp__body { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 18px; max-width: 760px; }

.fg-lp__t { margin: 0; font: 700 clamp(28px, 4.6vw, 50px)/1.14 var(--fg-display); letter-spacing: -.02em; text-wrap: balance; }

.fg-lp__t--lead { font-size: clamp(24px, 3.6vw, 40px); }

.fg-lp__n { margin: 0; font-size: 18px; line-height: 1.7; color: rgba(233, 240, 255, .82); }

.fg-lp__steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 6px; }

.fg-lp__step { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border: 1px solid var(--fg-line); border-radius: 999px; background: rgba(6, 16, 43, .5); font-size: 14px; font-weight: 600; color: rgba(233, 240, 255, .82); }

.fg-lp__step .fg-ico { color: var(--fg-brand); }

.fg-lp__num { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--fg-brand); color: var(--fg-brand-ink); font-size: 12px; font-weight: 700; }

.fg-offer--lp { margin-bottom: 8px; }

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

.fg-foot {
	margin-top: 56px;
	padding: 48px 0 34px;
	border-top: 1px solid var(--fg-line);
	background: linear-gradient(180deg, rgba(4, 11, 31, .5), var(--fg-bg-deep));
}

.fg-foot__top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 30px; }

.fg-foot__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; max-width: 360px; }

.fg-foot__about { margin: 0; font-size: 14px; line-height: 1.7; color: var(--fg-muted); }

.fg-foot__help { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border: 1px solid var(--fg-line); border-radius: 12px; font-size: 14px; font-weight: 700; color: var(--fg-text); transition: border-color .16s ease, background-color .16s ease; }

.fg-foot__help:hover { border-color: rgba(60, 255, 0, .4); background: rgba(60, 255, 0, .08); }

.fg-foot__help .fg-ico { color: var(--fg-brand); }

.fg-foot__col { display: flex; flex-direction: column; gap: 11px; }

.fg-foot__t { font: 700 15px/1 var(--fg-display); margin-bottom: 3px; }

.fg-foot__col a { font-size: 14px; color: var(--fg-muted); transition: color .16s ease; }

.fg-foot__col a:hover { color: var(--fg-sky); }

.fg-foot__mid { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 36px; padding: 22px 0; border-top: 1px solid var(--fg-line-soft); border-bottom: 1px solid var(--fg-line-soft); }

.fg-pays { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-right: auto; }

.fg-pay { display: grid; place-items: center; width: 66px; height: 38px; border: 1px solid var(--fg-line-soft); border-radius: 10px; background: rgba(255, 255, 255, .04); }

.fg-pay img { max-width: 42px; max-height: 20px; object-fit: contain; opacity: .8; }

.fg-pay--more { font-size: 12px; font-weight: 700; color: var(--fg-dim); }

.fg-badges { display: flex; align-items: center; gap: 16px; }

.fg-badges img { height: 32px; width: auto; opacity: .6; transition: opacity .16s ease; }

.fg-badges img:hover { opacity: 1; }

.fg-foot__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-top: 22px; }

.fg-foot__bottom p { max-width: 780px; margin: 0; font-size: 13px; line-height: 1.7; color: var(--fg-dim); }

.fg-foot__copy { font-size: 13px; color: var(--fg-dim); }

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

.fg-bar {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 55;
	display: none;
	background: rgba(6, 16, 43, .95);
	backdrop-filter: blur(14px);
	border-top: 1px solid var(--fg-line);
	padding-bottom: env(safe-area-inset-bottom);
}

.fg-bar__i { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; flex: 1; padding: 9px 4px; font-size: 11px; font-weight: 600; color: var(--fg-dim); }

.fg-bar__i:hover, .fg-bar__i.is-active { color: var(--fg-brand); }

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

@media (max-width: 1180px) {
	.fg-tiles { grid-template-columns: repeat(3, 1fr); }
	.fg-tiles > :nth-child(4), .fg-tiles > :nth-child(5) { grid-column: span 1; }
	.fg-usp { grid-template-columns: repeat(2, 1fr); }
	.fg-jack__grid { grid-template-columns: repeat(3, 1fr); }
	.fg-provs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
	.fg-top__search { min-width: 0; }
	.fg-top__search span { display: none; }
	.fg-tl__i { grid-template-columns: 40px minmax(0, 1fr) 190px; }
	.fg-tl__logo { display: none; }
}

@media (max-width: 900px) {
	:root { --fg-gut: 14px; }
	body { padding-bottom: 68px; font-size: 16px; }
	.fg-burger { display: grid; }
	.fg-top__nav { display: none; }
	.fg-top__search { margin-left: auto; }
	.fg-bar { display: flex; }
	.fg-hero { min-height: 330px; padding: 30px 22px; }
	.fg-hero__fish { width: clamp(120px, 30vw, 190px); right: -14px; bottom: 0; opacity: .5; }
	.fg-hero__n { font-size: 15px; }
	.fg-wins { margin-inline: 0; margin-top: 14px; }
	.fg-rev { grid-template-columns: minmax(0, 1fr); }
	.fg-rev__logo { height: 76px; }
	.fg-facts { grid-template-columns: repeat(2, 1fr); }
	.fg-pm { grid-template-columns: minmax(0, 1fr); }
	.fg-offer { flex-direction: column; align-items: flex-start; }
	.fg-offer__art { margin: 0 auto; }
	.fg-foot__top { grid-template-columns: repeat(2, 1fr); gap: 26px; }
	.fg-foot__brand { grid-column: span 2; max-width: none; }
	.fg-content { font-size: 16px; }
	.fg-aside { grid-template-columns: repeat(2, 1fr); }
	.fg-aside .fg-card--help { grid-column: span 2; }
}

@media (max-width: 720px) {
	.fg-tiles { grid-template-columns: repeat(2, 1fr); }
	.fg-usp { grid-template-columns: minmax(0, 1fr); }
	.fg-usp__i { min-height: 0; flex-direction: row; align-items: center; gap: 14px; }
	.fg-usp__i img { width: 108px; margin: 0; }
	.fg-jack__grid { grid-template-columns: repeat(2, 1fr); }
	.fg-rail { grid-auto-columns: minmax(132px, 1fr); }
	.fg-aside { grid-template-columns: minmax(0, 1fr); }
	.fg-aside .fg-card--help { grid-column: auto; }
	.fg-shead__ctl .fg-arrow { display: none; }
	.fg-tl__i { grid-template-columns: 36px minmax(0, 1fr); }
	.fg-tl__side { grid-column: span 2; grid-template-columns: 1fr 1fr; align-items: center; }
	.fg-tl__side .fg-rate { grid-column: span 2; justify-content: center; }
	.fg-app__n { display: none; }
	.fg-wins__tag { display: none; }
	.fg-foot__mid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
	.fg-tiles { grid-template-columns: minmax(0, 1fr); }
	.fg-tile { min-height: 96px; }
	.fg-facts { grid-template-columns: minmax(0, 1fr); }
	.fg-foot__top { grid-template-columns: minmax(0, 1fr); }
	.fg-foot__brand { grid-column: auto; }
	.fg-top__auth .fg-btn--ghost { display: none; }
}

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