@font-face {
	font-family: 'Unbounded';
	src: url('unbounded-cyr.woff2') format('woff2');
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: 'Unbounded';
	src: url('unbounded-lat.woff2') format('woff2');
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--bg: #06102b;
	--bg-900: #0c1c4a;
	--bg-800: #102562;
	--bg-700: #112b77;
	--bg-600: #1b3b98;
	--bg-500: #244bbd;
	--acc: #2373fc;
	--acc-2: #478bff;
	--cta: #3cff00;
	--cta-2: #64ff35;
	--gold: #ffd900;
	--gold-2: #ff9409;
	--txt: #fff;
	--txt-50: rgba(255, 255, 255, .5);
	--txt-70: rgba(255, 255, 255, .7);
	--line: rgba(255, 255, 255, .1);
	--r-s: 12px;
	--r-m: 16px;
	--r-l: 24px;
	--top: 72px;
	--side: 300px;
	--pad: 24px;
}

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--txt);
	font-family: 'Unbounded', 'Segoe UI', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

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

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fg-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.fg-ic {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

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

.fg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: var(--r-s);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease;
}

.fg-btn--cta {
	background: var(--cta);
	color: #000;
}

.fg-btn--cta:hover {
	background: var(--cta-2);
}

.fg-btn--acc {
	background: var(--acc);
	color: var(--txt);
}

.fg-btn--acc:hover {
	background: var(--acc-2);
}

.fg-btn--ghost {
	background: transparent;
	color: var(--txt);
	border: 1px solid var(--line);
}

.fg-btn--ghost:hover {
	background: rgba(255, 255, 255, .08);
}

.fg-btn--icon {
	width: 48px;
	padding: 0;
	background: #fff;
	color: #000;
}

.fg-btn--icon:hover {
	background: #e9eefb;
}

.fg-btn .fg-ic {
	width: 18px;
	height: 18px;
}

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

.fg-top {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 40;
	height: var(--top);
	background: var(--bg);
}

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

.fg-logo img {
	width: auto;
	height: 34px;
}

.fg-burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 40px;
	height: 40px;
	padding: 0 8px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.fg-burger span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--txt);
	transition: transform .2s ease, opacity .2s ease;
}

.fg-search {
	position: relative;
	display: flex;
	align-items: center;
	flex: 0 1 400px;
	height: 48px;
	margin: 0 auto;
	padding: 0 16px;
	border: 1px solid var(--line);
	border-radius: var(--r-s);
	color: var(--txt-50);
}

.fg-search__i {
	width: 100%;
	height: 100%;
	padding: 0 0 0 10px;
	border: 0;
	background: transparent;
	color: var(--txt);
	font: inherit;
	font-size: 14px;
	outline: none;
}

.fg-search__i::placeholder {
	color: var(--txt-50);
}

.fg-top__act {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.fg-top__login-ic {
	display: none;
}

/* ---------- sidebar ---------- */

.fg-side {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 50;
	width: var(--side);
	background: var(--bg-900);
	overflow: hidden;
}

.fg-side__scroll {
	height: 100%;
	padding: 12px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--bg-600) transparent;
}

.fg-tile {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 56px;
	margin-bottom: 8px;
	padding: 10px 14px;
	border-radius: var(--r-s);
	background: var(--bg-800);
	font-size: 12px;
	font-weight: 600;
	overflow: hidden;
}

.fg-tile--wheel {
	background: linear-gradient(90deg, var(--gold) 40%, var(--gold-2));
	color: #000;
}

.fg-tile--store {
	background: linear-gradient(90deg, #10265f, #1b3b98);
}

.fg-tile img {
	width: auto;
	height: 44px;
}

.fg-tile-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 12px;
}

.fg-tile--sm {
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	margin: 0;
	min-height: 88px;
	background: var(--bg-800);
	font-size: 11px;
	line-height: 1.25;
}

.fg-tile--sm img {
	height: 34px;
}

.fg-side__nav {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 4px;
}

.fg-side__i {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 11px 14px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--txt);
	font: inherit;
	font-size: 12px;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	transition: background-color .16s ease;
}

.fg-side__i:hover {
	background: rgba(255, 255, 255, .06);
}

.fg-side__i .fg-ic {
	color: var(--txt-70);
}

.fg-side__i--sub {
	padding-left: 26px;
	color: var(--txt-70);
}

.fg-side__i--sep {
	margin-top: 8px;
	border-top: 1px solid var(--line);
	border-radius: 0 0 10px 10px;
	padding-top: 16px;
}

.fg-grp__b {
	justify-content: flex-start;
}

.fg-grp__b span {
	flex: 1 1 auto;
}

.fg-grp__b .fg-ic:last-child {
	transform: rotate(90deg);
	transition: transform .2s ease;
	width: 16px;
	height: 16px;
}

.fg-grp.is-open .fg-grp__b .fg-ic:last-child {
	transform: rotate(-90deg);
}

.fg-grp__kids {
	display: none;
	flex-direction: column;
	gap: 2px;
}

.fg-grp.is-open .fg-grp__kids {
	display: flex;
}

.fg-side__apps {
	padding: 20px 14px 24px;
}

.fg-side__cap {
	display: block;
	margin-bottom: 10px;
	color: var(--txt-50);
	font-size: 11px;
}

.fg-side__apps-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.fg-app {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	border-radius: 10px;
	background: #fff;
	color: #000;
	font-size: 12px;
	font-weight: 600;
}

.fg-app img {
	width: auto;
	height: 18px;
}

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

.fg-main {
	padding-top: var(--top);
	min-height: 60vh;
}

.fg-wrap {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 var(--pad);
}

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

.fg-hero {
	padding-top: 20px;
}

.fg-hero__in {
	position: relative;
	min-height: 316px;
	padding: 36px 40px;
	border-radius: var(--r-m);
	background: var(--bg-900);
	overflow: hidden;
}

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

.fg-hero__art {
	position: absolute;
	right: 4%;
	bottom: 0;
	width: auto;
	height: 92%;
	object-fit: contain;
}

.fg-hero__c {
	position: relative;
	z-index: 2;
	max-width: 46%;
}

.fg-hero__badge {
	display: block;
	max-width: 260px;
	font-size: 21px;
	font-weight: 400;
	line-height: 1.25;
}

.fg-hero__t {
	display: block;
	margin: 6px 0 2px;
	background: linear-gradient(180deg, var(--gold) 45%, var(--gold-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 54px;
	font-weight: 700;
	line-height: 1.1;
}

.fg-hero__note {
	display: block;
	margin-bottom: 22px;
	color: var(--txt-70);
	font-size: 16px;
	font-weight: 500;
}

.fg-hero__pay {
	position: absolute;
	left: 40px;
	bottom: 28px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 24px;
	opacity: .9;
}

.fg-hero__pay img {
	width: auto;
	height: 24px;
}

/* ---------- category tabs ---------- */

.fg-tabs {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	border-bottom: 1px solid var(--line);
}

.fg-tabs__list {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	scrollbar-width: none;
}

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

.fg-tabs__i {
	position: relative;
	padding: 10px 16px;
	color: var(--txt-50);
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.fg-tabs__i:hover {
	color: var(--txt);
}

.fg-tabs__i.is-active {
	color: var(--txt);
}

.fg-tabs__i.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--acc);
}

.fg-tabs__all {
	flex: 0 0 auto;
	margin-left: auto;
	height: 40px;
	padding: 0 18px;
}

/* ---------- category banners ---------- */

.fg-cats {
	display: grid;
	grid-template-columns: repeat(3, 1fr) .48fr .48fr;
	gap: 8px;
	margin-top: 24px;
}

.fg-cat {
	position: relative;
	display: flex;
	align-items: center;
	height: 110px;
	padding: 16px;
	border-radius: var(--r-s);
	background: var(--bg-800);
	overflow: hidden;
}

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

.fg-cat__t {
	position: relative;
	z-index: 2;
	max-width: 58%;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
}

.fg-cat__art {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: auto;
	height: 100%;
	object-fit: contain;
}

.fg-cat--wheel {
	background: linear-gradient(90deg, var(--gold) 45%, var(--gold-2));
	color: #000;
}

.fg-cat--live,
.fg-cat--sport {
	background: var(--bg-800);
}

.fg-cat--live .fg-cat__t,
.fg-cat--sport .fg-cat__t {
	max-width: 70%;
	font-size: 14px;
}

.fg-cat--live .fg-cat__art,
.fg-cat--sport .fg-cat__art {
	height: 70%;
	right: 8px;
	bottom: 14px;
}

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

.fg-rail {
	margin-top: 30px;
}

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

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

.fg-rail__t {
	font-size: 21px;
	font-weight: 500;
}

.fg-rail__all {
	margin-left: auto;
	height: 40px;
	padding: 0 18px;
}

.fg-rail__list {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 160px;
	gap: 12px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 4px;
}

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

.fg-rail--s .fg-rail__list {
	grid-auto-columns: 144px;
}

.fg-card__l {
	position: relative;
	display: block;
	border-radius: var(--r-s);
	overflow: hidden;
}

.fg-card__img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform .25s ease;
}

.fg-rail--s .fg-card__img {
	height: 180px;
}

.fg-card__l:hover .fg-card__img {
	transform: scale(1.04);
}

.fg-card__b {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 3px 8px;
	border-radius: 6px;
	background: var(--acc);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.4;
}

.fg-card__b--jackpot {
	background: var(--gold);
	color: #000;
}

.fg-card__b--exclusive {
	top: auto;
	left: auto;
	right: 0;
	bottom: 0;
	top: 0;
	display: flex;
	align-items: center;
	border-radius: 0;
	background: linear-gradient(180deg, #8a05ff, #4809da);
	writing-mode: vertical-rl;
	letter-spacing: .08em;
	padding: 8px 4px;
}

.fg-card__b--new {
	background: var(--cta);
	color: #000;
}

.fg-card__b--live {
	background: #ff1433;
}

/* ---------- article text ---------- */

.fg-text {
	margin: 40px 0 0;
	padding: 30px;
	border-radius: var(--r-m);
	background: var(--bg-900);
}

.fg-text__h1,
.fg-text__b h1 {
	margin: 0 0 20px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
}

.fg-text__b {
	font-size: 14px;
	line-height: 1.75;
	color: rgba(255, 255, 255, .88);
}

.fg-text__b h2 {
	margin: 32px 0 14px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--txt);
}

.fg-text__b h3 {
	margin: 24px 0 12px;
	font-size: 18px;
	font-weight: 600;
	color: var(--txt);
}

.fg-text__b p {
	margin: 0 0 16px;
}

.fg-text__b a {
	color: var(--acc-2);
	text-decoration: underline;
}

.fg-text__b ul,
.fg-text__b ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

.fg-text__b ul {
	list-style: disc;
}

.fg-text__b ol {
	list-style: decimal;
}

.fg-text__b li {
	margin-bottom: 8px;
}

.fg-text__b img {
	/* auto margins centre a narrow screenshot instead of letting it hug the
	   left edge; height:auto keeps the proportions when the width is capped. */
	margin: 20px auto;
	height: auto;
	border-radius: var(--r-s);
}

.fg-text__b blockquote {
	margin: 20px 0;
	padding: 16px 20px;
	border-left: 3px solid var(--acc);
	border-radius: 0 var(--r-s) var(--r-s) 0;
	background: var(--bg-800);
}

.fg-table {
	overflow-x: auto;
	margin: 0 0 20px;
}

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

.fg-text__b th,
.fg-text__b td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	text-align: left;
}

.fg-text__b th {
	background: var(--bg-800);
	font-weight: 600;
}

/* ---------- page heads (toplist / review / landing / page) ---------- */

.fg-phead {
	margin: 30px 0 20px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
}

.fg-lead {
	max-width: 760px;
	margin: 0 0 24px;
	color: var(--txt-70);
	font-size: 14px;
	line-height: 1.7;
}

/* toplist */

.fg-tops {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 30px;
}

.fg-top-i {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 18px 20px;
	border-radius: var(--r-m);
	background: var(--bg-900);
}

.fg-top-i__n {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--acc);
	font-size: 18px;
	font-weight: 700;
}

.fg-top-i:first-child .fg-top-i__n {
	background: linear-gradient(180deg, var(--gold), var(--gold-2));
	color: #000;
}

.fg-top-i__t {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
}

/* review */

.fg-rev {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 20px;
	margin-bottom: 30px;
}

.fg-rev__card {
	padding: 24px;
	border-radius: var(--r-m);
	background: var(--bg-900);
	text-align: center;
}

.fg-rev__logo {
	width: auto;
	height: 40px;
	margin: 0 auto 16px;
}

.fg-rev__score {
	display: block;
	margin-bottom: 4px;
	background: linear-gradient(180deg, var(--gold) 45%, var(--gold-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 40px;
	font-weight: 700;
}

.fg-rev__cap {
	display: block;
	margin-bottom: 20px;
	color: var(--txt-50);
	font-size: 11px;
}

.fg-rev__facts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
	text-align: left;
}

.fg-rev__fact {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
	font-size: 12px;
}

.fg-rev__fact span:first-child {
	color: var(--txt-50);
}

.fg-rev__body {
	padding: 30px;
	border-radius: var(--r-m);
	background: var(--bg-900);
}

/* landing */

.fg-land {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: 360px;
	margin-top: 20px;
	padding: 40px;
	border-radius: var(--r-m);
	background: var(--bg-900);
	overflow: hidden;
}

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

.fg-land__art {
	position: absolute;
	right: 4%;
	bottom: 0;
	z-index: 1;
	width: auto;
	height: 90%;
	object-fit: contain;
}

.fg-land__c {
	position: relative;
	z-index: 2;
	max-width: 52%;
}

.fg-land__h1 {
	margin: 0 0 14px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
}

.fg-land__x {
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.7;
}

.fg-land__pay {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 24px;
	opacity: .9;
}

.fg-land__pay img {
	width: auto;
	height: 22px;
}

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

.fg-foot {
	margin-top: 40px;
	padding: 30px 0 40px;
	border-top: 1px solid var(--line);
}

.fg-foot__in {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 var(--pad);
}

.fg-foot__top {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line);
}

.fg-foot__apps {
	display: flex;
	gap: 12px;
	margin-left: auto;
	flex-wrap: wrap;
}

.fg-app--light {
	height: 40px;
	padding: 0 16px;
	font-size: 11px;
}

.fg-foot__menu {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 24px;
	padding: 12px 0;
}

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

.fg-foot__i {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
	color: var(--txt-70);
	font-size: 12px;
	transition: color .16s ease;
}

.fg-foot__i:hover {
	color: var(--txt);
}

.fg-foot__i .fg-ic {
	width: 14px;
	height: 14px;
	color: var(--txt-50);
}

.fg-foot__pay {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	padding: 28px 0;
	opacity: .55;
}

.fg-foot__pay img {
	width: auto;
	height: 22px;
}

.fg-foot__bottom {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	color: var(--txt-50);
	font-size: 11px;
}

.fg-foot__marks {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-left: auto;
	opacity: .75;
}

.fg-foot__marks img {
	width: auto;
	height: 34px;
}

.fg-age {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--txt-50);
	border-radius: 50%;
	font-size: 11px;
	font-weight: 600;
	color: var(--txt-70);
}

.fg-dim {
	position: fixed;
	inset: 0;
	z-index: 45;
	background: rgba(3, 8, 22, .65);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

body.fg-locked .fg-dim {
	opacity: 1;
	visibility: visible;
}

/* ---------- desktop: pinned sidebar ---------- */

@media (min-width: 1140px) {
	.fg-burger {
		display: none;
	}

	.fg-top {
		left: var(--side);
	}

	.fg-main,
	.fg-foot {
		margin-left: var(--side);
	}

	.fg-top__login-ic {
		display: none;
	}
}

/* ---------- tablet / mobile ---------- */

@media (max-width: 1139px) {
	.fg-side {
		transform: translateX(-100%);
		transition: transform .24s ease;
		box-shadow: 0 0 40px rgba(0, 0, 0, .5);
	}

	body.fg-menu .fg-side {
		transform: none;
	}

	.fg-search {
		display: none;
	}

	.fg-cats {
		grid-template-columns: repeat(2, 1fr);
	}

	.fg-rev {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	:root {
		--pad: 16px;
		--top: 64px;
	}

	.fg-top__login {
		display: none;
	}

	.fg-top__login-ic {
		display: inline-flex;
	}

	.fg-hero__in {
		min-height: 0;
		padding: 20px;
	}

	.fg-hero__c {
		max-width: 100%;
	}

	.fg-hero__badge {
		font-size: 16px;
	}

	.fg-hero__t {
		font-size: 40px;
	}

	.fg-hero__note {
		margin-bottom: 16px;
		font-size: 14px;
	}

	.fg-hero__art {
		position: relative;
		z-index: 2;
		height: auto;
		width: 78%;
		margin: 8px auto -20px;
	}

	.fg-hero__pay {
		position: relative;
		z-index: 2;
		gap: 16px;
		margin-top: 16px;
		justify-content: space-between;
	}

	.fg-hero__pay img {
		height: 18px;
	}

	.fg-cats {
		grid-template-columns: 1fr;
	}

	.fg-cat {
		height: 96px;
	}

	.fg-text,
	.fg-rev__body {
		padding: 20px;
	}

	.fg-foot__menu {
		grid-template-columns: 1fr;
	}

	.fg-foot__top {
		flex-direction: column;
		align-items: flex-start;
	}

	.fg-foot__apps {
		margin-left: 0;
	}

	.fg-foot__pay {
		gap: 24px;
	}

	.fg-land {
		min-height: 0;
		padding: 24px;
	}

	.fg-land__c {
		max-width: 100%;
	}

	.fg-land__art {
		position: relative;
		z-index: 2;
		height: auto;
		width: 72%;
		margin: 16px auto -24px;
	}

	.fg-land__h1 {
		font-size: 26px;
	}

	.fg-top-i {
		grid-template-columns: 44px 1fr;
		gap: 12px;
	}

	.fg-top-i .fg-btn {
		grid-column: 1 / -1;
		width: 100%;
	}
}

/* ---------- language switcher ---------- */

.fg-lang {
	position: relative;
	flex-shrink: 0;
}

.fg-lang__b {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: var(--r-s);
	background: rgba(255, 255, 255, .06);
	color: var(--txt);
	font-family: inherit;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: background .16s ease;
}

.fg-lang__b:hover {
	background: rgba(255, 255, 255, .12);
}

.fg-lang__b .fg-ic {
	width: 16px;
	height: 16px;
	color: var(--txt-70);
}

.fg-lang__b .fg-ic:last-child {
	width: 12px;
	height: 12px;
	transform: rotate(90deg);
	transition: transform .16s ease;
}

.fg-lang.is-open .fg-lang__b .fg-ic:last-child {
	transform: rotate(-90deg);
}

.fg-lang__p {
	display: none;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 60;
	min-width: 190px;
	padding: 6px;
	border: 1px solid var(--line);
	border-radius: var(--r-m);
	background: var(--bg-800);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

.fg-lang.is-open .fg-lang__p {
	display: block;
}

.fg-lang__i {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 10px;
	color: var(--txt-70);
	font-size: 13px;
	transition: background .16s ease, color .16s ease;
}

.fg-lang__i:hover {
	background: rgba(255, 255, 255, .08);
	color: var(--txt);
}

.fg-lang__i.is-active {
	color: var(--txt);
	font-weight: 600;
}

.fg-lang__c {
	width: 32px;
	padding: 3px 0;
	border-radius: 6px;
	background: rgba(255, 255, 255, .1);
	font-size: 11px;
	font-weight: 700;
	text-align: center;
}

.fg-lang__i.is-active .fg-lang__c {
	background: var(--acc);
	color: #fff;
}

/* In the drawer the panel opens in flow: a floating layer inside a scrolling
   off-canvas column gets clipped on short phone screens. */
.fg-lang--drawer {
	display: none;
	margin-bottom: 16px;
}

.fg-lang--drawer .fg-lang__b {
	width: 100%;
	justify-content: flex-start;
}

.fg-lang--drawer .fg-lang__b .fg-ic:last-child {
	margin-left: auto;
}

.fg-lang--drawer .fg-lang__p {
	position: static;
	min-width: 0;
	margin-top: 8px;
	box-shadow: none;
}

@media (max-width: 1139px) {
	.fg-lang--hdr {
		display: none;
	}

	.fg-lang--drawer {
		display: block;
	}
}

/* ---------- footer column headings and disclaimer ---------- */

.fg-foot__h {
	display: block;
	padding: 16px 0 8px;
	color: var(--txt);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.fg-foot__note {
	margin: 0;
	padding: 20px 0 4px;
	color: var(--txt-50);
	font-size: 12px;
	line-height: 1.6;
}

/* ---------- author byline ---------- */

.fg-byline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 16px;
	margin: 0 0 22px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
	color: var(--txt-50);
	font-size: 13px;
}

.fg-byline [itemprop="name"] {
	color: var(--txt-70);
	font-weight: 600;
}

.fg-byline__d {
	white-space: nowrap;
}

@media (max-width: 767px) {
	.fg-byline {
		margin-bottom: 18px;
		font-size: 12px;
	}
}
