@font-face {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url('ubuntu-cyr-300.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url('ubuntu-lat-300.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('ubuntu-cyr-500.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('ubuntu-lat-500.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('ubuntu-cyr-700.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('ubuntu-lat-700.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}

:root {
	--bg: #04112f;
	--bg-2: #041848;
	--hdr: #002461;
	--bar: #031c55;
	--line: #0c2b70;
	--line-2: #05205f;
	--txt: #b6dafb;
	--mut: #6885a0;
	--gold: #ffd800;
	--gold-2: #dfbd00;
	--gold-sh: #886100;
	--white: #fff;
	--shell: 1200px;
	--hdr-h: 61px;
	--card-w: 288px;
	--card-h: 210px;
	--r-sm: 2px;
	--r-md: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	padding-top: var(--hdr-h);
	background: var(--bg);
	color: var(--txt);
	font-family: 'Ubuntu', -apple-system, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

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

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

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

.sl-hdr {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 40;
	height: var(--hdr-h);
	background: var(--hdr);
}

.sl-hdr__in {
	display: flex;
	align-items: center;
	height: var(--hdr-h);
	max-width: var(--shell);
	margin: 0 auto;
	padding: 0 20px;
}

.sl-burger {
	display: none;
	width: 40px;
	height: 40px;
	margin-right: 12px;
	padding: 8px;
	border: 0;
	border-radius: var(--r-md);
	background: transparent;
	color: var(--txt);
	cursor: pointer;
}

.sl-burger svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.sl-nav { display: flex; }

.sl-nav__i {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 16px;
	transition: filter .15s;
}

.sl-nav__i:hover { filter: brightness(1.5); }

.sl-nav__i img { width: 32px; height: 32px; }

.sl-nav__t {
	display: block;
	margin-top: 2px;
	color: var(--gold);
	font-size: 12px;
	font-weight: 400;
	line-height: 12px;
	text-transform: uppercase;
	white-space: nowrap;
}

.sl-hdr__mid { display: flex; flex: 1 1 auto; justify-content: center; }

.sl-logo img { display: block; width: 107px; height: 54px; object-fit: contain; }

.sl-hdr__act { display: flex; gap: 8px; }

.sl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	padding: 7px 16px;
	border: none;
	border-radius: 32px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	cursor: pointer;
	transition: .1s;
}

.sl-btn--gold {
	background: var(--gold);
	color: var(--bg);
	box-shadow: inset 0 -2px 0 0 var(--gold-sh);
}

.sl-btn--gold:hover { background: var(--gold-2); }

.sl-btn--ghost {
	background: transparent;
	color: var(--gold);
	border: 1px solid var(--gold);
}

.sl-btn--ghost:hover { background: rgba(255, 216, 0, .1); }

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

.sl-dim {
	position: fixed;
	inset: 0;
	z-index: 44;
	background: rgba(3, 7, 13, .7);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s;
}

.sl-dim.is-on { opacity: 1; visibility: visible; }

.sl-drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 45;
	width: 300px;
	max-width: 86vw;
	padding: 16px;
	background: var(--hdr);
	transform: translateX(-100%);
	transition: transform .25s ease;
	overflow-y: auto;
}

.sl-drawer.is-on { transform: none; }

.sl-drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }

.sl-drawer__x {
	width: 36px;
	height: 36px;
	padding: 6px;
	border: 0;
	border-radius: var(--r-md);
	background: var(--bg-2);
	color: var(--txt);
	cursor: pointer;
}

.sl-drawer__x svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.sl-drawer__i {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 8px;
	border-radius: var(--r-md);
	color: var(--txt);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}

.sl-drawer__i:hover { background: var(--bg-2); }

.sl-drawer__i img { width: 28px; height: 28px; }

.sl-drawer__act { display: grid; gap: 8px; margin-top: 20px; }

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

.sl-car { position: relative; overflow: hidden; }

.sl-car__track {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
}

.sl-car__track::-webkit-scrollbar { display: none; }

.sl-car__s { flex: 0 0 100%; }

.sl-car__s picture { display: block; }

.sl-car__s img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1800 / 488;
	object-fit: cover;
}

.sl-car__a {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	border: 0;
	border-radius: 50%;
	background: rgba(4, 17, 47, .55);
	color: var(--white);
	cursor: pointer;
}

.sl-car__a:hover { background: rgba(4, 17, 47, .85); }

.sl-car__a svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.sl-car__a--p { left: 16px; }

.sl-car__a--n { right: 16px; }

.sl-car__a--n svg { transform: rotate(180deg); }

.sl-car__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.sl-car__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(182, 218, 251, .45);
	cursor: pointer;
}

.sl-car__dot.is-on { background: var(--gold); }

/* ---------- category bar ---------- */

.sl-bar { background: var(--bar); }

.sl-bar__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2px;
	height: 44px;
	max-width: var(--shell);
	margin: 0 auto;
	padding: 0 20px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.sl-bar__in::-webkit-scrollbar { display: none; }

.sl-chip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 39px;
	padding: 4px 16px;
	border-radius: var(--r-md);
	color: var(--txt);
	white-space: nowrap;
}

.sl-chip:hover { background: rgba(4, 24, 72, .7); }

.sl-chip.is-on { background: var(--bg-2); }

.sl-chip.is-on .sl-chip__t { color: var(--gold); }

.sl-chip img { flex: 0 0 auto; height: 32px; width: auto; }

.sl-chip--brand img { height: 38px; max-width: 100px; }

.sl-chip__t { font-size: 16px; font-weight: 500; line-height: 24px; }

/* ---------- game sections ---------- */

.sl-sec { max-width: var(--shell); width: 100%; margin: 16px auto; padding: 0 20px; }

.sl-sec__hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; }

.sl-sec__n { display: flex; align-items: center; }

.sl-sec__n img { width: 40px; height: 40px; margin-right: 16px; }

.sl-sec__t {
	display: block;
	color: var(--txt);
	font-size: 28px;
	font-weight: 500;
	line-height: 36px;
	letter-spacing: -.56px;
}

.sl-sec__act { display: flex; align-items: flex-end; }

.sl-sec__all {
	padding: 2px 0 2px 16px;
	color: var(--txt);
	font-size: 16px;
	font-weight: 300;
	line-height: 25px;
	white-space: nowrap;
}

.sl-sec__all:hover { color: var(--gold); }

.sl-arrows { display: flex; margin-left: 8px; }

.sl-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 4px;
	border: 1px solid var(--line-2);
	border-radius: var(--r-sm);
	background: var(--bg-2);
	color: var(--txt);
	cursor: pointer;
}

.sl-arrow:hover { background: var(--hdr); }

.sl-arrow svg { width: 20px; height: 20px; fill: currentColor; }

.sl-arrow--l { margin-right: 8px; transform: rotate(180deg); }

.sl-grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: var(--card-w);
	grid-template-rows: repeat(var(--rows, 1), var(--card-h));
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.sl-grid::-webkit-scrollbar { display: none; }

.sl-card {
	position: relative;
	display: block;
	width: var(--card-w);
	height: var(--card-h);
	border-radius: var(--r-md);
	background: var(--bg-2);
	overflow: hidden;
}

.sl-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .2s;
}

.sl-card:hover img { transform: scale(1.04); }

.sl-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 4px;
	height: 24px;
	padding: 0 14px 0 8px;
	border-radius: 0 0 var(--r-sm) var(--r-sm);
	color: var(--white);
	font-size: 12px;
	font-weight: 500;
	line-height: 24px;
	clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.sl-badge--t { background: linear-gradient(180deg, #7963ff 0%, #740db4 100%); }

.sl-badge--n { background: linear-gradient(180deg, #ffce6f 0%, #ffa500 100%); color: var(--bg); }

.sl-badge svg { width: 14px; height: 14px; fill: currentColor; }

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

.sl-provs {
	display: flex;
	align-items: center;
	gap: 20px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.sl-provs::-webkit-scrollbar { display: none; }

.sl-prov { flex: 1 0 auto; padding: 8px 0; }

.sl-prov img { display: block; height: 40px; width: auto; opacity: .9; }

.sl-prov:hover img { opacity: 1; }

/* ---------- article body ---------- */

.sl-text { background: var(--bg); padding: 24px 0 8px; }

.sl-text__in { max-width: var(--shell); margin: 0 auto; padding: 0 20px; }

.sl-text__b { color: var(--txt); font-size: 16px; font-weight: 300; line-height: 24px; word-wrap: break-word; }

.sl-text__b h1 { color: var(--gold); font-size: 28px; font-weight: 500; line-height: 1.15; margin: 0 0 16px; }

.sl-text__b h2 { color: var(--white); font-size: 22px; font-weight: 500; line-height: 1.25; margin: 28px 0 12px; }

.sl-text__b h3 { color: var(--white); font-size: 18px; font-weight: 500; line-height: 1.3; margin: 22px 0 10px; }

.sl-text__b h4, .sl-text__b h5, .sl-text__b h6 { color: var(--white); font-size: 16px; font-weight: 500; margin: 18px 0 8px; }

.sl-text__b p { margin: 0 0 14px; }

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

.sl-text__b li { margin-bottom: 6px; }

.sl-text__b a { color: var(--gold); text-decoration: underline; }

.sl-text__b img { display: block; max-width: 100%; height: auto; margin: 16px auto; border-radius: var(--r-md); }

.sl-text__b blockquote {
	margin: 0 0 16px;
	padding: 12px 16px;
	border-left: 2px solid var(--gold);
	background: var(--bg-2);
}

.sl-text__b .sl-tbl { width: 100%; overflow-x: auto; margin: 0 0 16px; -webkit-overflow-scrolling: touch; }

/* Inside the scroller the table takes its natural width and never shrinks
   below the wrapper: a flat width:100% squeezes a four-column table into
   ~90px columns on a phone, so every cell wraps into a ragged stack. */
.sl-text__b .sl-tbl table { width: max-content; min-width: 100%; }
.sl-text__b .sl-tbl th { white-space: nowrap; }
.sl-text__b .sl-tbl td { max-width: 38ch; }

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

.sl-text__b th, .sl-text__b td {
	padding: 10px 12px;
	border: 1px solid rgba(240, 185, 185, .7);
	text-align: left;
	vertical-align: top;
}

.sl-text__b th { background: var(--bg-2); color: var(--white); font-weight: 500; }

/* ---------- inner page heads ---------- */

.sl-phead { max-width: var(--shell); margin: 0 auto; padding: 28px 20px 4px; }

.sl-phead__t { display: block; color: var(--gold); font-size: 28px; font-weight: 500; line-height: 1.15; }

.sl-phead__d { margin-top: 8px; color: var(--mut); font-size: 16px; font-weight: 300; }

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

.sl-top { max-width: var(--shell); margin: 0 auto; padding: 16px 20px; display: grid; gap: 12px; }

.sl-top__i {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	border: 1px solid var(--line-2);
	border-radius: var(--r-md);
	background: var(--bg-2);
}

.sl-top__n {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--gold);
	color: var(--bg);
	font-size: 18px;
	font-weight: 700;
}

.sl-top__b { flex: 1 1 auto; }

.sl-top__t { display: block; color: var(--white); font-size: 18px; font-weight: 500; }

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

.sl-rev { max-width: var(--shell); margin: 0 auto; padding: 16px 20px; }

.sl-rev__card {
	display: grid;
	gap: 12px;
	padding: 20px;
	border: 1px solid var(--line-2);
	border-radius: var(--r-md);
	background: var(--bg-2);
}

.sl-rev__row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 8px; }

.sl-rev__row:last-child { border-bottom: 0; padding-bottom: 0; }

.sl-rev__k { color: var(--mut); }

.sl-rev__v { color: var(--white); font-weight: 500; text-align: right; }

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

.sl-land { max-width: 900px; margin: 0 auto; padding: 32px 20px; text-align: center; }

.sl-land__t { display: block; color: var(--gold); font-size: 32px; font-weight: 700; line-height: 1.15; }

.sl-land__cta { margin-top: 24px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

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

.sl-foot {
	width: 80%;
	max-width: var(--shell);
	margin: 0 auto;
	padding: 24px 0 48px;
	color: var(--txt);
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
}

.sl-foot__cols { display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; }

.sl-foot__col { display: flex; flex-direction: column; align-items: flex-start; padding: 15px; }

.sl-foot__logo { display: block; margin-bottom: 16px; }

.sl-foot__logo img { width: 173px; height: 58px; object-fit: contain; }

.sl-foot__soc-t { display: block; margin-bottom: 16px; }

.sl-foot__soc a { display: inline-flex; }

.sl-foot__soc img { width: 44px; height: 44px; }

.sl-foot__i { color: var(--txt); padding-bottom: 8px; }

.sl-foot__i:hover { color: var(--gold); text-decoration: underline; }

.sl-foot__age {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 12px;
	border: 1px solid var(--txt);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 500;
}

.sl-foot__note {
	max-width: var(--shell);
	margin: 0 auto;
	padding: 0 15px 24px;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: -.28px;
	color: var(--mut);
}

.sl-foot__note p { margin: 0 0 10px; }

.sl-foot__copy { padding: 15px; }

.sl-hr { height: 1px; margin: 0; border: 0; background: var(--line); }

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

@media (max-width: 1023px) {
	.sl-nav { display: none; }
	.sl-burger { display: inline-flex; align-items: center; justify-content: center; }
	.sl-hdr__mid { justify-content: flex-start; }
	.sl-logo img { width: 84px; height: 42px; }
	.sl-btn { height: 32px; padding: 6px 12px; font-size: 14px; }
	.sl-foot { width: 100%; padding-left: 12px; padding-right: 12px; }
	.sl-foot__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
	:root { --card-w: 160px; --card-h: 114px; }
	.sl-car__s img { aspect-ratio: 3 / 2; }
	.sl-car__a { width: 32px; height: 32px; margin-top: -16px; }
	.sl-car__a--p { left: 8px; }
	.sl-car__a--n { right: 8px; }
	.sl-sec { margin: 12px auto; padding: 0 12px; }
	.sl-sec__n img { width: 24px; height: 24px; margin-right: 8px; }
	.sl-sec__t { font-size: 20px; line-height: 28px; letter-spacing: -.4px; }
	.sl-sec__all { font-size: 14px; }
	.sl-grid { gap: 12px; }
	.sl-bar__in { justify-content: flex-start; gap: 10px; padding: 0 12px; }
	.sl-chip { flex: 0 0 auto; gap: 6px; padding: 4px 8px; }
	.sl-chip img { height: 24px; }
	.sl-chip--brand img { height: 28px; }
	.sl-chip__t { font-size: 12px; font-weight: 300; line-height: 12px; }
	.sl-text__in, .sl-phead, .sl-top, .sl-rev { padding-left: 12px; padding-right: 12px; }
	.sl-text__b h1, .sl-phead__t { font-size: 24px; }
	.sl-text__b h2 { font-size: 19px; }
	.sl-foot__cols { grid-template-columns: 1fr; }
	.sl-foot__col { align-items: center; text-align: center; }
}
