@font-face { font-family: 'Geologica'; font-style: normal; font-weight: 300; font-display: swap; src: url('geologica-300.woff2') format('woff2'); }
@font-face { font-family: 'Geologica'; font-style: normal; font-weight: 400; font-display: swap; src: url('geologica-400.woff2') format('woff2'); }
@font-face { font-family: 'Geologica'; font-style: normal; font-weight: 500; font-display: swap; src: url('geologica-500.woff2') format('woff2'); }
@font-face { font-family: 'Geologica'; font-style: normal; font-weight: 700; font-display: swap; src: url('geologica-700.woff2') format('woff2'); }
@font-face { font-family: 'Geologica'; font-style: normal; font-weight: 800; font-display: swap; src: url('geologica-800.woff2') format('woff2'); }

/* vavada_01_vst — template 68. Tokens measured with getComputedStyle on the
   source snapshot: page #171722, header/tab strip #252536, inputs #101018,
   hairlines #1e1e2c / #3a3a52, muted text #8a8aae / #7575a1, radius 4px on
   controls and 8px on cards, Geologica 300–800. url() stays relative to this
   file — see the preview/deploy note in the workspace memory. */

:root {
	--bg: #171722;
	--panel: #252536;
	--panel-2: #1e1e2c;
	--input: #101018;
	--line: #1e1e2c;
	--line-2: #3a3a52;
	--text: #ffffff;
	--text-2: #bcbcd1;
	--muted: #8a8aae;
	--muted-2: #7575a1;
	--dim: #5c5c87;
	--red: #fe284a;
	--yellow: #ffde26;
	--green: #7dfa00;
	--r: 4px;
	--r-card: 8px;
	--wrap: 1280px;
	--pad: 28px;
	--shadow: 0 2px 4px rgba(0, 0, 0, .24);
	--gold: linear-gradient(180deg, #fff47a 0%, #f4b200 37.5%, #ffc30c 45.31%, #fff47a 99.48%);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--dim);
	font: 400 16px/20px 'Geologica', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
.main { flex: 1 0 auto; }

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

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

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 15px;
	border-radius: var(--r);
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: #fff;
	white-space: nowrap;
	box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .1);
	cursor: pointer;
	transition: background .2s ease, box-shadow .2s ease;
	border: 0;
}
.btn img { width: 16px; height: 16px; }
.btn--red {
	background: radial-gradient(100% 100% at 50% 0, #fe284a 0, #cc203b 100%);
	box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.btn--red:hover { background: radial-gradient(100% 100% at 50% 0, #fe5163 0, #cc2031 100%); }
.btn--dl { background: radial-gradient(100% 100% at 50% 0, #484868 0, #33334a 100%); color: var(--muted-2); }
.btn--dl:hover { background: radial-gradient(100% 100% at 50% 0, #55557d 0, #41415e 100%); color: var(--text-2); }
.btn--dark { background: radial-gradient(100% 100% at 50% 0, #3a3a54 0, #252536 100%); }
.btn--dark:hover { background: radial-gradient(100% 100% at 50% 0, #484868 0, #33334a 100%); }
.btn--on, .btn--on:hover { background: linear-gradient(1deg, #a771ff 1.73%, #7b29e4 100%); }
.btn--sq { width: 48px; padding: 0; }
.btn--ios { background: radial-gradient(100% 100% at 50% 0, #484851 0, #303036 100%); }
.btn--ios:hover { background: radial-gradient(100% 100% at 50% 0, #60606c 0, #303036 100%); }
.btn--android { background: radial-gradient(100% 100% at 50% 0, #3cc360 0, #2b8c45 100%); }
.btn--android:hover { background: radial-gradient(100% 100% at 50% 0, #63cf80 0, #2b8c45 100%); }
.btn--xl { min-height: 56px; padding: 18px 32px; font-size: 16px; }

/* ---- header --------------------------------------------------------- */

.hdr {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--panel);
}
.hdr__in {
	position: relative;
	max-width: var(--wrap);
	margin: 0 auto;
	min-height: 64px;
	padding: 8px var(--pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.hdr__in::before {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(58, 58, 82, .08), #3a3a52 55.73%, rgba(58, 58, 82, .08));
}
.hdr__logo img { width: 184px; height: 28px; }
.hdr__act { display: flex; align-items: center; }
.hdr__act > .btn + .btn { margin-left: 20px; }
.hdr__act .btn--red { padding: 15px 23px; }
.hdr__act .btn--dl { padding: 15px 32px; }
.hdr__help { padding: 15px 16px !important; }
.hdr__help img { opacity: .7; }

/* ---- banner carousel ------------------------------------------------ */

.bnr {
	position: relative;
	height: 320px;
	overflow: hidden;
	background: var(--input);
}
.bnr__track {
	display: flex;
	height: 100%;
	transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.bnr__slide {
	position: relative;
	flex: 0 0 100%;
	height: 100%;
	display: block;
	overflow: hidden;
}
.bnr__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bnr__cap {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 15px 16px 16px;
	border-top: 1px solid rgba(255, 255, 255, .16);
	background: linear-gradient(0deg, rgba(23, 23, 33, .56), rgba(23, 23, 33, .32));
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.bnr__txt {
	display: block;
	max-width: var(--wrap);
	margin: 0 auto;
	font-size: 28px;
	line-height: 1;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	background: var(--gold);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #ffc30c;
}
.bnr__dots {
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
}
.bnr__dot {
	width: 24px;
	height: 4px;
	padding: 0;
	border: 0;
	border-radius: 2px;
	background: rgba(255, 255, 255, .32);
	cursor: pointer;
}
.bnr__dot.is-on { background: var(--yellow); }

/* ---- section tabs --------------------------------------------------- */

.tabs { background: var(--panel); }
.tabs__in {
	display: flex;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 var(--pad);
}
.tab {
	position: relative;
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
}
.tab::after, .tab:first-child::before {
	content: '';
	position: absolute;
	top: 0;
	width: 1px;
	height: 100%;
	background: linear-gradient(#3a3a52 55.73%, rgba(58, 58, 82, .08));
}
.tab::after { right: 0; }
.tab:first-child::before { left: 0; }
.tab__ico { width: 32px; height: 32px; flex-shrink: 0; }
.tab__t { margin-left: 8px; }
.tab--blue { color: #07bcf7; }
.tab--orange { color: #fb7903; }
.tab--violet { color: #a975ff; }
.tab--green { color: #7dfa00; }
.tab--yellow { color: #ffde26; }
.tab--blue:hover { background: radial-gradient(48.61% 48.61% at 50% 100%, rgba(8, 193, 250, .1) 0, rgba(10, 194, 250, 0) 100%); }
.tab--orange:hover { background: radial-gradient(48.61% 48.61% at 50% 100%, rgba(251, 121, 3, .1) 0, rgba(251, 121, 3, 0) 100%); }
.tab--violet:hover { background: radial-gradient(48.61% 48.61% at 50% 100%, rgba(151, 71, 255, .1) 0, rgba(151, 71, 255, 0) 100%); }
.tab--green:hover { background: radial-gradient(48.61% 48.61% at 50% 100%, rgba(125, 250, 0, .1) 0, rgba(125, 250, 0, 0) 100%); }
.tab--yellow:hover { background: radial-gradient(48.61% 48.61% at 50% 100%, rgba(255, 161, 74, .1) 0, rgba(255, 161, 74, 0) 100%); }

/* ---- filter row ----------------------------------------------------- */

.flt {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin: 24px 0 12px;
}
.flt__left { display: flex; gap: 20px; }
.flt__st { display: flex; gap: 8px; }
.flt__st .btn { padding: 15px 16px; }
.flt__st .btn--sq { padding: 0; }
.sel, .srch {
	display: flex;
	align-items: center;
	height: 48px;
	border: 1px solid var(--line-2);
	border-color: rgba(58, 58, 82, .6);
	border-radius: var(--r);
	background: var(--input);
	transition: border-color .25s ease;
}
.sel {
	width: 208px;
	padding: 0 13px;
	justify-content: space-between;
	color: #41415e;
	font-weight: 300;
}
.sel img { opacity: .45; }
.sel:hover, .srch:focus-within { border-color: var(--yellow); }
.srch { width: 480px; padding: 0 12px 0 16px; }
.srch__in {
	flex: 1;
	min-width: 0;
	height: 100%;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	-webkit-appearance: none;
	appearance: none;
}
.srch__in::placeholder { color: #41415e; }
.srch__in::-webkit-search-cancel-button { display: none; }
.srch__btn {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	opacity: .5;
}

/* ---- game grid ------------------------------------------------------ */

.grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	padding-top: 12px;
}
.card {
	position: relative;
	aspect-ratio: 1;
	border-radius: var(--r-card);
	background: var(--bg);
	box-shadow: 0 2px 2px rgba(0, 0, 0, .24);
	overflow: hidden;
	transition: transform .25s ease;
	isolation: isolate;
}
.card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease, filter .25s ease;
}
.card__labels {
	position: absolute;
	top: 8px;
	left: 8px;
	right: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.lbl {
	padding: 4px;
	border-radius: var(--r);
	background: rgba(16, 16, 24, .24);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	color: #fff;
	font-size: 12px;
	line-height: 16px;
}
.lbl--hot {
	background: linear-gradient(270deg, #fe284a, #cc203b);
	box-shadow: none;
}
.lbl--hot { display: inline-flex; align-items: center; gap: 3px; }
.lbl--hot img { width: 7px; height: 8px; filter: brightness(0) invert(1); }
.card__name {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 4px 8px;
	background: linear-gradient(0deg, rgba(16, 16, 24, .88), rgba(16, 16, 24, .616));
	color: #fff;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.card__over {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	border-radius: var(--r-card);
	background: rgba(9, 9, 14, .72);
	opacity: 0;
	transition: opacity .25s ease;
}
.card__play {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: radial-gradient(74.4% 100% at 50% 0, #96e000 0, #529900 100%);
	box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.card__play:hover {
	background: radial-gradient(105.21% 141.42% at 0 0, #ccff00 0, #529900 100%);
	box-shadow: 0 0 24px rgba(204, 255, 0, .32);
}
.card__demo {
	height: 40px;
	padding: 11px 13px;
	border: 1px solid rgba(255, 157, 0, .4);
	border-radius: var(--r);
	background: linear-gradient(287deg, rgba(173, 74, 4, .78) 3.2%, rgba(255, 217, 194, .16) 98.73%);
	color: #fff;
	font-size: 14px;
	line-height: 16px;
}
.card__demo:hover {
	background: linear-gradient(287deg, rgba(192, 82, 4, .81) 3.2%, rgba(255, 217, 194, .41) 98.73%);
	border-color: rgba(255, 157, 0, .62);
}
.card:hover, .card:focus-within { transform: scale(1.1); z-index: 2; }
.card:hover .card__img, .card:focus-within .card__img { filter: blur(1.15px); transform: scale(1.02); }
.card:hover .card__over, .card:focus-within .card__over { opacity: 1; }
.grid .card:nth-child(5n + 1) { transform-origin: left center; }
.grid .card:nth-child(5n) { transform-origin: right center; }

.more {
	display: flex;
	justify-content: center;
	margin: 24px 0 0;
}
.more .btn { padding: 15px 16px; }

/* ---- content plate -------------------------------------------------- */

.plate {
	margin: 32px 0 0;
	padding: 32px 40px;
	border-radius: var(--r-card);
	background: var(--panel-2);
	box-shadow: inset 0 0 0 1px rgba(58, 58, 82, .35);
}
.prose {
	color: var(--text-2);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
	overflow-wrap: anywhere;
}
.prose > :first-child { margin-top: 0; }
.prose > :last-child { margin-bottom: 0; }
.prose h1, .prose h2, .prose h3, .prose h4 {
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	margin: 1.6em 0 .6em;
}
.prose h1 { font-size: 32px; font-weight: 800; margin-top: 0; }
.prose h2 { font-size: 24px; }
.prose h3 { font-size: 19px; }
.prose h4 { font-size: 16px; }
.prose p { margin: 0 0 1em; }
.prose a { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: #fff; }
.prose strong, .prose b { color: #fff; font-weight: 500; }
.prose ul, .prose ol { margin: 0 0 1em; padding-left: 1.4em; }
.prose li { margin: .3em 0; }
.prose li::marker { color: var(--red); }
.prose .byline { display: block; margin: -4px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.prose .byline__name { color: #fff; font-weight: 500; }
.prose .byline__date::before { content: ''; display: inline-block; width: 4px; height: 4px; margin: 0 10px 2px; border-radius: 50%; background: var(--red); vertical-align: middle; }
.prose img { height: auto; margin: 8px auto 18px; border-radius: var(--r-card); }
.prose blockquote {
	margin: 1.2em 0;
	padding: 12px 18px;
	border-left: 3px solid var(--red);
	border-radius: 0 var(--r) var(--r) 0;
	background: var(--panel);
	color: #fff;
}
.prose hr { border: 0; height: 1px; background: var(--line-2); margin: 2em 0; }
.prose .table-scroll, .prose table { margin: 0 0 1.2em; }
.prose .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.prose table {
	width: max-content;
	min-width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	line-height: 1.45;
}
.prose th, .prose td {
	padding: 10px 14px;
	border-bottom: 1px solid var(--line-2);
	text-align: left;
	vertical-align: top;
}
.prose td { max-width: 38ch; }
.prose th {
	background: var(--panel);
	color: #fff;
	font-weight: 500;
	white-space: nowrap;
}
.prose tr:nth-child(even) td { background: rgba(37, 37, 54, .45); }

/* ---- inner-page title bar, toplist, review, landing ----------------- */

.bar { background: var(--panel); }
.bar__in {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 16px calc(var(--pad) + 56px);
}
.bar__back {
	position: absolute;
	left: var(--pad);
	top: 50%;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	border-radius: var(--r);
	background: radial-gradient(100% 100% at 50% 0, #484868 0, #33334a 100%);
	box-shadow: var(--shadow);
}
.bar__back img { transform: rotate(90deg); opacity: .7; }
.bar__title {
	margin: 0;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.top { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.top__row {
	display: grid;
	grid-template-columns: 40px 96px 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 16px 20px;
	border-radius: var(--r-card);
	background: var(--panel);
}
.top__rank {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: var(--r);
	background: linear-gradient(1deg, #a771ff 1.73%, #7b29e4 100%);
	color: #fff;
	font-weight: 700;
}
.top__art { width: 96px; height: 96px; border-radius: var(--r-card); object-fit: cover; }
.top__body { display: grid; gap: 4px; min-width: 0; }
.top__name { color: #fff; font-size: 18px; font-weight: 700; }
.top__offer {
	font-weight: 800;
	text-transform: uppercase;
	background: var(--gold);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.top__note { color: var(--muted); font-size: 14px; font-weight: 300; }
.top__cta { display: flex; gap: 8px; }

.rev {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 24px;
	margin: 24px 0 0;
	padding: 20px;
	border-radius: var(--r-card);
	background: var(--panel);
}
.rev__art { position: relative; border-radius: var(--r-card); overflow: hidden; min-height: 160px; }
.rev__art img { width: 100%; height: 100%; object-fit: cover; }
.rev__art .bnr__txt { font-size: 22px; }
.rev__body { display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.rev__facts { list-style: none; margin: 0; padding: 0; }
.rev__facts li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid var(--line-2);
	font-size: 14px;
}
.rev__facts span { color: var(--muted); font-weight: 300; }
.rev__facts b { color: #fff; font-weight: 500; text-align: right; }
.rev__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.rev__cta .btn { flex: 1 1 auto; }
.rev--bare .rev__body { justify-content: center; }

.bnr--solo .bnr__txt { margin: 0 auto; }
.land { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin: 32px 0 0; }
.steps {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
.step {
	display: grid;
	gap: 8px;
	padding: 20px;
	border-radius: var(--r-card);
	background: var(--panel);
}
.step__n {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: var(--r);
	background: radial-gradient(100% 100% at 50% 0, #fe284a 0, #cc203b 100%);
	color: #fff;
	font-weight: 700;
}
.step__t { color: #fff; font-size: 18px; font-weight: 700; }
.step__d { color: var(--muted); font-size: 14px; font-weight: 300; line-height: 1.5; }

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

.ftr {
	margin-top: 32px;
	border-top: 1px solid var(--line);
	background: var(--bg);
	color: var(--muted);
	font-size: 12px;
	font-weight: 300;
	line-height: 16px;
}
.ftr__in { max-width: var(--wrap); margin: 0 auto; padding: 32px 0 24px; }
.ftr__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 20px 32px;
	border-bottom: 1px solid var(--line);
}
.ftr__menu {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ftr__menu a {
	display: block;
	padding: 12px 4px;
	color: var(--text-2);
	font-size: 16px;
	line-height: 16px;
}
.ftr__menu a:hover { color: #fff; }
.ftr__apps { display: flex; gap: 8px; margin-top: 20px; white-space: nowrap; }
.app { min-height: 40px; max-height: 40px; padding: 4px 16px 4px 12px; text-align: left; }
.app img { width: 20px; height: 20px; }
.app__t { font-size: 14px; line-height: 16px; }
.ftr__bottom {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-top: 32px;
	padding: 0 20px;
}
.ftr__note {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	width: 50%;
	padding-right: 40px;
}
.ftr__note img { flex-shrink: 0; align-self: center; }
.ftr__note p { margin: 0; }
.lang {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0 12px 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
}
.lang img { border-radius: 6px; }

/* ---- language switcher, current tab (vavadaua.co.ua) ---------------- */

.lsw { position: relative; margin-right: 20px; }
.hdr__act .lsw__btn { gap: 6px; padding: 15px 12px 15px 16px; color: var(--text-2); font-weight: 500; }
.lsw__caret { opacity: .7; transition: transform .2s; }
.lsw.is-open .lsw__caret { transform: rotate(180deg); }
.lsw__panel {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 210;
	min-width: 190px;
	margin: 0;
	padding: 6px;
	list-style: none;
	border: 1px solid var(--line-2);
	border-radius: var(--r-card);
	background: var(--panel);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
	visibility: hidden;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity .15s, transform .15s, visibility .15s;
}
.lsw.is-open .lsw__panel { visibility: visible; opacity: 1; transform: none; }
.lsw__opt, .langs__opt {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: var(--r);
	color: var(--text-2);
	font-size: 14px;
	line-height: 16px;
}
.lsw__opt b, .langs__opt b {
	display: grid;
	place-items: center;
	min-width: 30px;
	height: 22px;
	border-radius: var(--r);
	background: var(--line-2);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}
.lsw__opt:hover, .langs__opt:hover { background: var(--panel-2); color: #fff; }
.lsw__opt.is-on, .langs__opt.is-on { color: #fff; }
.lsw__opt.is-on b, .langs__opt.is-on b { background: radial-gradient(100% 100% at 50% 0, #fe284a 0, #cc203b 100%); }
.langs { display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; list-style: none; }
.langs__opt { padding: 8px 10px; }
.ftr__txt p { margin: 0; }
.ftr__txt p + p { margin-top: 8px; }
.tab[aria-current="page"] { box-shadow: inset 0 -2px 0 currentColor; }
.tab--blue[aria-current="page"] { background: radial-gradient(48.61% 48.61% at 50% 100%, rgba(8, 193, 250, .1) 0, rgba(10, 194, 250, 0) 100%); }
.tab--orange[aria-current="page"] { background: radial-gradient(48.61% 48.61% at 50% 100%, rgba(251, 121, 3, .1) 0, rgba(251, 121, 3, 0) 100%); }
.tab--violet[aria-current="page"] { background: radial-gradient(48.61% 48.61% at 50% 100%, rgba(151, 71, 255, .1) 0, rgba(151, 71, 255, 0) 100%); }
.tab--green[aria-current="page"] { background: radial-gradient(48.61% 48.61% at 50% 100%, rgba(125, 250, 0, .1) 0, rgba(125, 250, 0, 0) 100%); }

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

@media (max-width: 1279px) {
	:root { --pad: 24px; }
	.srch { width: 360px; }
	.grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.grid .card:nth-child(5n + 1), .grid .card:nth-child(5n) { transform-origin: center; }
	.grid .card:nth-child(4n + 1) { transform-origin: left center; }
	.grid .card:nth-child(4n) { transform-origin: right center; }
	.bnr { height: 26.1438vw; max-height: 320px; }
	.bnr__cap { padding: 7px 16px 8px; }
	.bnr__txt { font-size: clamp(14px, 2.33vw, 22px); line-height: 1.2; }
}

@media (max-width: 1024px) {
	.flt { flex-wrap: wrap; }
	.flt__left { flex: 1 1 100%; justify-content: space-between; }
	.srch { width: 100%; }
	.grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
	.grid .card:nth-child(n) { transform-origin: center; }
	.grid .card:nth-child(3n + 1) { transform-origin: left center; }
	.grid .card:nth-child(3n) { transform-origin: right center; }
	.plate { padding: 24px; }
	.rev { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.ftr__note { width: auto; padding-right: 0; }
}

@media (max-width: 768px) {
	:root { --pad: 8px; }
	body { font-size: 14px; }
	.hdr__in { padding: 8px 12px; }

	.tabs__in { padding: 0; }
	.tab { flex-direction: column; padding: 12px 0; font-size: 10px; }
	.tab::after, .tab:first-child::before { display: none; }
	.tab:not(:last-child)::after { display: block; }
	.tab__ico { width: 24px; height: 24px; }
	.tab__t { margin: 4px 0 0; }

	.flt { margin: 24px 0 4px; }
	.flt__left { gap: 12px; }
	.sel { flex: 1; width: auto; height: 40px; font-size: 14px; }
	.srch { height: 40px; }
	.flt__st .btn { min-height: 40px; padding: 12px; font-size: 12px; }
	.flt__st .btn--sq { width: 40px; padding: 0; }

	.card__play { width: 48px; height: 48px; border-radius: 8px; }
	.card__demo { height: 34px; padding: 8px 12px; font-size: 12px; }
	.card:hover, .card:focus-within { transform: none; }
	.plate { margin-top: 24px; padding: 20px 16px; }
	.prose { font-size: 15px; }
	.prose h1 { font-size: 26px; }
	.prose h2 { font-size: 21px; }
	.prose h3 { font-size: 17px; }
	.bar__in { min-height: 56px; padding: 12px 60px; }
	.bar__back { left: 8px; }
	.bar__title { font-size: 18px; }
	.top__row { grid-template-columns: 32px 64px 1fr; gap: 12px; padding: 12px; }
	.top__rank { width: 32px; height: 32px; }
	.top__art { width: 64px; height: 64px; }
	.top__cta { grid-column: 1 / -1; }
	.top__cta .btn { flex: 1; }

	.ftr { margin-top: 20px; font-size: 10px; }
	.ftr__in { padding: 19px 0 24px; }
	.ftr__links { padding: 0 8px 20px; }
	.ftr__menu { gap: 0 12px; }
	.ftr__menu a { font-size: 14px; }
	.ftr__bottom { flex-direction: column-reverse; align-items: center; margin-top: 20px; gap: 12px; }
	.ftr__note { font-size: 12px; }
}

@media (max-width: 600px) {
	.hdr__in {
		flex-direction: column;
		gap: 12px;
		padding: 8px 12px;
	}
	.hdr__logo img { width: 158px; height: 24px; }
	.hdr__act { width: 100%; justify-content: center; padding-top: 4px; }
	.hdr__act > .btn + .btn { margin-left: 12px; }
	.hdr__act .btn { min-height: 40px; font-size: 12px; }
	.hdr__act .btn--red { padding: 12px 30px; }
	.hdr__act .btn--dl { padding: 12px 16px; }
	.hdr__help { width: 40px; padding: 0 !important; }
	.hdr__help-t { display: none; }
	.lsw { margin-right: 12px; }
	.lsw__panel { left: 0; right: auto; }
	.hdr__act .lsw__btn { padding: 12px 8px 12px 12px; }
	.hdr__act .btn--red { padding: 12px 18px; }
	.hdr__in::before { bottom: auto; top: 44px; left: 12px; right: 12px; }
}

@media (max-width: 668px) {
	.bnr { height: 28.2vw; max-height: none; }
	.bnr__cap { padding: 3px 16px 4px; }
	.bnr__txt { font-size: 10px; line-height: 12px; }
	.grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
	.grid .card:nth-child(n) { transform-origin: center; }
	.lbl { font-size: 10px; padding: 2px 4px; }
	.land .btn { flex: 1 1 100%; }
}
.ftr__nav { width: 100%; }
