:root {
	--sl-bg: #04112f;
	--sl-bg-2: #061737;
	--sl-panel: #0a2050;
	--sl-panel-2: #0d2760;
	--sl-line: #1d3e80;
	--sl-line-soft: rgba(255, 255, 255, .09);
	--sl-text: #eaf1ff;
	--sl-text-dim: rgba(234, 241, 255, .78);
	--sl-muted: #8fa6d6;
	--sl-accent: #ffb800;
	--sl-gold: #ffd200;
	--sl-hot: linear-gradient(135deg, #ffe45c, #ffc400);
	--sl-blue: #5b7cff;
	--sl-green: #16b97f;
	--sl-glow: 0 10px 30px rgba(255, 210, 0, .3);
	--sl-radius: 14px;
	--sl-pill: 999px;
	--sl-wide: 1320px;
	--sl-read: 860px;
	--sl-ui: 'Inter', 'Segoe UI', sans-serif;
	--sl-display: 'Montserrat', 'Inter', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--sl-bg);
	color: var(--sl-text);
	font-family: var(--sl-ui);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: var(--sl-gold);
	text-decoration: none;
}

/* Every interactive element keeps a visible focus ring — the dark palette
   swallows the UA default outline. */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--sl-gold);
	outline-offset: 2px;
}

.sl-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	padding: 10px 18px;
	background: var(--sl-panel);
	border: 1px solid var(--sl-accent);
	border-radius: 0 0 10px 0;
	color: var(--sl-text);
}

.sl-skip:focus {
	left: 0;
}

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

.sl-ico--fill {
	fill: currentColor;
	stroke: none;
}

.sl-wrap {
	max-width: var(--sl-wide);
	margin: 0 auto;
	padding: 0 24px;
}

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

.sl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border: 0;
	border-radius: var(--sl-pill);
	font-family: var(--sl-ui);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.sl-btn--solid {
	background: var(--sl-hot);
	color: #071634;
	box-shadow: 0 6px 18px rgba(84, 124, 255, .22);
}

.sl-btn--solid:hover {
	transform: translateY(-1px);
	box-shadow: var(--sl-glow);
}

.sl-btn--line {
	background: transparent;
	border: 1px solid rgba(255, 210, 0, .5);
	color: var(--sl-gold);
}

.sl-btn--line:hover {
	background: rgba(255, 210, 0, .12);
	border-color: var(--sl-gold);
}

.sl-btn--sm {
	padding: 9px 16px;
	font-size: 12.5px;
}

.sl-btn--lg {
	padding: 15px 32px;
	font-size: 15px;
}

.sl-btn--block {
	display: flex;
	width: 100%;
}

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

.sl-bar {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(4, 17, 47, .92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--sl-line);
}

.sl-bar__in {
	max-width: var(--sl-wide);
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.sl-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--sl-text);
}

.sl-logo img {
	height: var(--sl-logo-h, 40px);
	width: auto;
}

.sl-logo__word {
	font-family: var(--sl-display);
	/* A long site name must not wrap the bar onto two lines on a phone. */
	white-space: nowrap;
	font-size: calc(var(--sl-logo-h, 40px) * .55);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1;
	background: var(--sl-hot);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.sl-auth {
	display: flex;
	align-items: center;
	gap: 10px;
}

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

.sl-hero {
	position: relative;
	overflow: hidden;
	background: var(--sl-bg-2);
}

.sl-hero__track {
	display: flex;
	transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.sl-slide {
	position: relative;
	flex: 0 0 100%;
	min-height: 470px;
	display: flex;
	align-items: center;
}

.sl-slide__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
}

.sl-slide__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 17, 47, .95) 0%, rgba(4, 17, 47, .8) 38%, rgba(4, 17, 47, .15) 72%),
		linear-gradient(0deg, rgba(4, 17, 47, .9), rgba(4, 17, 47, 0) 55%);
}

.sl-slide__copy {
	position: relative;
	max-width: var(--sl-wide);
	width: 100%;
	margin: 0 auto;
	padding: 56px 24px 74px;
}

.sl-slide__inner {
	max-width: 560px;
}

.sl-kick {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 13px;
	border: 1px solid rgba(255, 210, 0, .38);
	border-radius: 999px;
	background: rgba(255, 210, 0, .1);
	color: var(--sl-gold);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.sl-slide__ttl {
	margin: 18px 0 14px;
	font-family: var(--sl-display);
	font-size: clamp(28px, 3.4vw, 46px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -.02em;
}

.sl-slide__txt {
	color: var(--sl-text-dim);
	font-size: 16px;
	max-width: 460px;
	margin-bottom: 26px;
}

.sl-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	width: 100%;
	max-width: var(--sl-wide);
	padding: 0 24px;
	display: flex;
	gap: 8px;
}

.sl-hero__dot {
	width: 34px;
	height: 3px;
	border: 0;
	border-radius: 3px;
	background: rgba(255, 255, 255, .22);
	cursor: pointer;
	transition: background .2s ease, width .2s ease;
}

.sl-hero__dot.is-on {
	width: 52px;
	background: var(--sl-hot);
}

/* The arrows ride the content container, not the viewport edge, so they line
   up with the hero copy and every section below it. */
.sl-hero__nav {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: var(--sl-wide);
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	pointer-events: none;
}

.sl-hero__arrow {
	pointer-events: auto;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--sl-line);
	border-radius: 50%;
	background: rgba(6, 23, 55, .72);
	color: var(--sl-text);
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.sl-hero__arrow:hover {
	border-color: var(--sl-gold);
	color: var(--sl-gold);
	background: rgba(255, 210, 0, .12);
}

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

.sl-tick {
	background: var(--sl-panel);
	border-block: 1px solid var(--sl-line);
	overflow: hidden;
}

.sl-tick__track {
	display: flex;
	width: max-content;
	animation: sl-drift 42s linear infinite;
}

.sl-tick:hover .sl-tick__track {
	animation-play-state: paused;
}

@keyframes sl-drift {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.sl-tick__i {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 26px;
	color: var(--sl-text);
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: .04em;
	white-space: nowrap;
}

.sl-tick__i em {
	color: var(--sl-muted);
	font-style: normal;
	font-weight: 400;
}

.sl-tick__i::after {
	content: '';
	width: 5px;
	height: 5px;
	margin-left: 20px;
	border-radius: 50%;
	background: var(--sl-line);
}

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

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

.sl-prov {
	background: var(--sl-bg-2);
	border-bottom: 1px solid var(--sl-line);
	padding: 30px 0 34px;
}

.sl-lbl {
	display: block;
	margin-bottom: 16px;
	color: var(--sl-muted);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.sl-prov__rail {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
}

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

.sl-prov__i {
	flex: 1 0 auto;
	min-width: 0;
	padding: 14px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--sl-line);
	border-radius: 10px;
	background: var(--sl-panel);
	color: var(--sl-muted);
	font-family: var(--sl-display);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .01em;
	white-space: nowrap;
	scroll-snap-align: start;
	transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.sl-prov__i:hover {
	color: var(--sl-text);
	border-color: rgba(255, 210, 0, .45);
	transform: translateY(-2px);
}

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

.sl-sec {
	padding: 46px 0 8px;
}

.sl-sec__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.sl-sec__t {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-family: var(--sl-display);
	font-size: clamp(20px, 2.2vw, 27px);
	font-weight: 700;
	letter-spacing: -.01em;
}

.sl-sec__t .sl-ico {
	color: var(--sl-accent);
}

.sl-sec__t em {
	font-style: normal;
	color: var(--sl-gold);
}

.sl-sec__all {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 16px;
	border: 1px solid var(--sl-line);
	border-radius: 999px;
	color: var(--sl-text-dim);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	transition: color .2s ease, border-color .2s ease;
}

.sl-sec__all:hover {
	color: var(--sl-gold);
	border-color: rgba(255, 210, 0, .45);
}

.sl-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.sl-game {
	position: relative;
	display: block;
	border-radius: var(--sl-radius);
	overflow: hidden;
	background: var(--sl-panel);
	border: 1px solid var(--sl-line);
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sl-game:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 210, 0, .5);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .5);
}

.sl-game__art {
	display: block;
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
}

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

.sl-game:hover .sl-game__art img {
	transform: scale(1.06);
}

.sl-game__veil {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(4, 17, 47, .68);
	opacity: 0;
	transition: opacity .22s ease;
}

.sl-game:hover .sl-game__veil {
	opacity: 1;
}

.sl-game__play {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 18px;
	border-radius: var(--sl-pill);
	background: var(--sl-hot);
	color: #071634;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.sl-game__badge {
	position: absolute;
	top: 9px;
	left: 9px;
	padding: 3px 9px;
	border-radius: 5px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: #071634;
	background: var(--sl-hot);
}

.sl-game__badge--new {
	background: linear-gradient(135deg, #5b7cff, #2f4fd6);
	color: #fff;
}

.sl-game__badge--hot {
	background: linear-gradient(135deg, #ff6a4d, #e2453b);
	color: #fff;
}

.sl-game__cap {
	display: block;
	padding: 11px 13px 13px;
}

.sl-game__name {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sl-game__prov {
	display: block;
	margin-top: 2px;
	color: var(--sl-muted);
	font-size: 11.5px;
	letter-spacing: .04em;
}

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

.sl-body {
	padding: 52px 0 60px;
	background: var(--sl-bg-2);
	border-top: 1px solid var(--sl-line);
	margin-top: 46px;
}

.sl-body--plain {
	margin-top: 0;
}

.sl-body__in {
	max-width: var(--sl-wide);
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	align-items: start;
}

.sl-body__in--solo {
	grid-template-columns: minmax(0, var(--sl-read));
	justify-content: center;
}

.sl-copy h1 {
	font-family: var(--sl-display);
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -.02em;
	margin-bottom: 14px;
}

.sl-lead {
	color: var(--sl-text-dim);
	font-size: 17px;
	margin-bottom: 26px;
	padding-left: 14px;
	border-left: 2px solid var(--sl-accent);
}

.sl-toc {
	margin-bottom: 30px;
	padding: 18px 20px;
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius);
	background: var(--sl-panel);
}

.sl-toc__t {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--sl-muted);
}

.sl-toc ol {
	margin: 0;
	padding-left: 20px;
	color: var(--sl-muted);
}

.sl-toc li {
	margin: 5px 0;
}

.sl-toc a {
	color: var(--sl-text-dim);
	font-size: 14.5px;
}

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

.sl-content {
	font-size: 15.5px;
	color: var(--sl-text-dim);
}

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

.sl-content h2 {
	margin: 34px 0 14px;
	font-family: var(--sl-display);
	font-size: clamp(21px, 2.3vw, 27px);
	font-weight: 700;
	line-height: 1.24;
	color: var(--sl-gold);
}

.sl-content h3 {
	margin: 26px 0 10px;
	font-family: var(--sl-display);
	font-size: 19px;
	font-weight: 600;
	color: var(--sl-text);
}

.sl-content p {
	margin: 0 0 15px;
}

.sl-content a {
	border-bottom: 1px solid rgba(255, 210, 0, .35);
}

.sl-content a:hover {
	border-bottom-color: var(--sl-gold);
}

.sl-content strong {
	color: var(--sl-text);
}

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

.sl-content li {
	margin: 7px 0;
}

.sl-content ul {
	list-style: none;
	padding-left: 4px;
}

.sl-content ul li {
	position: relative;
	padding-left: 20px;
}

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

.sl-content ol li::marker {
	color: var(--sl-gold);
	font-weight: 700;
}

.sl-content blockquote {
	margin: 22px 0;
	padding: 16px 20px;
	border-left: 3px solid var(--sl-accent);
	border-radius: 0 10px 10px 0;
	background: var(--sl-panel);
	color: var(--sl-text);
}

.sl-content img {
	border-radius: var(--sl-radius);
	margin: 20px 0;
}

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

.sl-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14.5px;
	min-width: 480px;
}

.sl-content th {
	padding: 13px 16px;
	background: var(--sl-panel-2);
	color: var(--sl-gold);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-align: left;
	white-space: nowrap;
}

.sl-content td {
	padding: 12px 16px;
	border-top: 1px solid var(--sl-line);
}

.sl-content tbody tr:nth-child(odd) td {
	background: rgba(255, 255, 255, .02);
}

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

.sl-aside {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: sticky;
	top: 88px;
}

.sl-card {
	padding: 20px;
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius);
	background: var(--sl-panel);
}

.sl-card__t {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--sl-muted);
}

.sl-card--offer {
	border-color: rgba(255, 210, 0, .35);
	background:
		radial-gradient(120% 90% at 100% 0, rgba(84, 124, 255, .18), transparent 60%),
		var(--sl-panel);
}

.sl-card__sum {
	display: block;
	font-family: var(--sl-display);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
	background: var(--sl-hot);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.sl-card__note {
	display: block;
	margin: 8px 0 16px;
	color: var(--sl-muted);
	font-size: 13.5px;
	line-height: 1.55;
}

.sl-rows {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sl-row {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 9px 0;
	border-top: 1px solid var(--sl-line-soft);
	color: var(--sl-text-dim);
	font-size: 14px;
}

.sl-row:first-child {
	border-top: 0;
}

.sl-row img {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: cover;
	flex: none;
}

.sl-row__n {
	width: 22px;
	flex: none;
	font-family: var(--sl-display);
	font-weight: 700;
	color: var(--sl-gold);
	text-align: center;
}

.sl-row__txt {
	min-width: 0;
	flex: 1;
}

.sl-row__name {
	display: block;
	color: var(--sl-text);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sl-row__sub {
	display: block;
	color: var(--sl-muted);
	font-size: 11.5px;
}

.sl-live {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sl-green);
	box-shadow: 0 0 0 0 rgba(20, 184, 127, .6);
	animation: sl-pulse 2s infinite;
}

@keyframes sl-pulse {
	70% { box-shadow: 0 0 0 8px rgba(20, 184, 127, 0); }
	100% { box-shadow: 0 0 0 0 rgba(20, 184, 127, 0); }
}

/* ---------- faq ---------- */

/* The FAQ keeps the reading measure, and its section header is pulled into the
   same column so the label lines up with the rows instead of the page edge. */
.sl-sec--faq {
	max-width: var(--sl-read);
	margin: 0 auto;
	padding-bottom: 20px;
}

.sl-faq {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sl-faq__i {
	border: 1px solid var(--sl-line);
	border-radius: 10px;
	background: var(--sl-panel);
	overflow: hidden;
}

.sl-faq__i[open] {
	border-color: rgba(255, 210, 0, .4);
}

.sl-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 15px 20px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	list-style: none;
}

.sl-faq__q::-webkit-details-marker {
	display: none;
}

.sl-faq__q::after {
	content: '+';
	flex: none;
	font-size: 20px;
	line-height: 1;
	color: var(--sl-gold);
	transition: transform .2s ease;
}

.sl-faq__i[open] .sl-faq__q::after {
	transform: rotate(45deg);
}

.sl-faq__a {
	padding: 0 20px 16px;
	color: var(--sl-text-dim);
	font-size: 14.5px;
}

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

.sl-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 34px;
}

.sl-item {
	display: grid;
	grid-template-columns: 56px 78px minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: 16px 20px;
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius);
	background: var(--sl-panel);
	transition: border-color .2s ease, transform .2s ease;
}

.sl-item:hover {
	border-color: rgba(255, 210, 0, .45);
	transform: translateY(-2px);
}

.sl-item--lead {
	border-color: rgba(255, 210, 0, .45);
	background:
		radial-gradient(90% 140% at 0 0, rgba(84, 124, 255, .16), transparent 60%),
		var(--sl-panel);
}

.sl-item__rank {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--sl-panel-2);
	border: 1px solid var(--sl-line);
	font-family: var(--sl-display);
	font-size: 19px;
	font-weight: 700;
	color: var(--sl-muted);
}

.sl-item--lead .sl-item__rank {
	background: var(--sl-hot);
	border-color: transparent;
	color: #071634;
}

/* Square, so a cover keeps its whole composition — a letterbox crop of these
   cuts straight through the game's own logo. */
.sl-item__art img {
	width: 78px;
	height: 78px;
	object-fit: cover;
	border-radius: 9px;
}

.sl-item__name {
	display: block;
	font-family: var(--sl-display);
	font-size: 18px;
	font-weight: 700;
}

.sl-item__bonus {
	display: block;
	margin-top: 3px;
	color: var(--sl-text-dim);
	font-size: 14px;
}

.sl-item__marks {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 9px;
}

.sl-mark {
	padding: 3px 9px;
	border: 1px solid var(--sl-line);
	border-radius: 999px;
	color: var(--sl-muted);
	font-size: 11px;
	letter-spacing: .04em;
}

.sl-item__side {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
}

.sl-score {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}

.sl-score__n {
	font-family: var(--sl-display);
	font-size: 25px;
	font-weight: 700;
	color: var(--sl-gold);
}

.sl-score__l {
	margin-top: 3px;
	color: var(--sl-muted);
	font-size: 10.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.sl-stars {
	display: inline-flex;
	gap: 2px;
	color: var(--sl-line);
}

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

/* ---------- review info card ---------- */

.sl-info {
	display: grid;
	grid-template-columns: 176px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	padding: 22px;
	margin-bottom: 30px;
	border: 1px solid var(--sl-line);
	border-radius: var(--sl-radius);
	background:
		radial-gradient(80% 120% at 100% 0, rgba(84, 124, 255, .14), transparent 62%),
		var(--sl-panel);
}

.sl-info__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 96px;
	border-radius: 10px;
	background: var(--sl-panel-2);
	border: 1px solid var(--sl-line);
}

.sl-info__facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 14px 20px;
	margin-bottom: 16px;
}

.sl-fact__l {
	display: block;
	color: var(--sl-muted);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.sl-fact__v {
	display: block;
	margin-top: 2px;
	font-size: 15px;
	font-weight: 600;
}

.sl-info__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

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

.sl-land {
	position: relative;
	min-height: 74vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding: 70px 24px;
}

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

.sl-land__veil {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(70% 90% at 50% 40%, rgba(4, 17, 47, .58), rgba(4, 17, 47, .9)),
		linear-gradient(0deg, var(--sl-bg), rgba(4, 17, 47, .15));
}

.sl-land__in {
	position: relative;
	max-width: 760px;
}

.sl-land .sl-content {
	color: var(--sl-text-dim);
	font-size: 16.5px;
}

.sl-land .sl-content h1 {
	font-family: var(--sl-display);
	font-size: clamp(32px, 5vw, 58px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.03em;
	margin-bottom: 12px;
}

.sl-land .sl-content h2 {
	font-size: clamp(18px, 2.4vw, 24px);
	color: var(--sl-gold);
	margin: 0 0 16px;
}

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

.sl-land__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-top: 34px;
	color: var(--sl-muted);
	font-size: 13px;
}

.sl-land__trust span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

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

.sl-foot {
	background: var(--sl-bg-2);
	margin-top: 56px;
}

.sl-foot__line {
	height: 3px;
	background: linear-gradient(90deg, var(--sl-gold), var(--sl-blue), var(--sl-gold));
	background-size: 300% 100%;
	animation: sl-shift 9s linear infinite;
}

@keyframes sl-shift {
	from { background-position: 0 0; }
	to { background-position: 300% 0; }
}

.sl-foot__main {
	max-width: 820px;
	margin: 0 auto;
	padding: 40px 24px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
}

.sl-foot__txt {
	color: var(--sl-muted);
	font-size: 13px;
	line-height: 1.65;
	max-width: 580px;
}

.sl-safe {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.sl-safe span {
	padding: 6px 13px;
	border: 1px solid var(--sl-line);
	border-radius: 8px;
	color: var(--sl-muted);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	opacity: .75;
}

.sl-safe span:first-child {
	color: var(--sl-gold);
	border-color: rgba(255, 210, 0, .4);
	opacity: 1;
}

.sl-foot__bottom {
	max-width: var(--sl-wide);
	margin: 0 auto;
	padding: 14px 24px 22px;
	border-top: 1px solid var(--sl-line);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 18px;
	color: var(--sl-muted);
	font-size: 12px;
	text-align: center;
}

.sl-foot__bottom a {
	color: var(--sl-muted);
}

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

/* ---------- floating chrome ---------- */

.sl-dock {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 890;
	padding: 10px 16px calc(12px + env(safe-area-inset-bottom));
	background: rgba(6, 23, 55, .97);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--sl-line);
	gap: 10px;
}

.sl-dock .sl-btn {
	flex: 1;
}

.sl-up {
	position: fixed;
	right: 20px;
	bottom: 26px;
	z-index: 880;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 210, 0, .4);
	border-radius: 50%;
	background: var(--sl-panel);
	color: var(--sl-gold);
	cursor: pointer;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease, background .2s ease;
}

.sl-up.is-on {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.sl-up:hover {
	background: rgba(255, 210, 0, .14);
}

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

@media (max-width: 1024px) {
	.sl-body__in {
		grid-template-columns: minmax(0, 1fr);
	}

	.sl-aside {
		position: static;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	}

	.sl-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.sl-slide {
		min-height: 420px;
	}
}

@media (max-width: 768px) {
	.sl-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.sl-slide {
		min-height: 380px;
	}

	.sl-slide__copy {
		padding: 44px 20px 64px;
	}

	/* On a phone the copy sits over the whole frame, so the veil has to darken
	   bottom-up instead of left-to-right or the art disappears behind it. */
	.sl-slide__veil {
		background:
			linear-gradient(0deg, rgba(4, 17, 47, .97) 34%, rgba(4, 17, 47, .55) 72%, rgba(4, 17, 47, .3)),
			linear-gradient(90deg, rgba(4, 17, 47, .5), rgba(4, 17, 47, .1));
	}

	.sl-hero__nav {
		display: none;
	}

	.sl-item {
		grid-template-columns: 46px minmax(0, 1fr);
		grid-template-areas:
			'rank art'
			'txt txt'
			'side side';
		gap: 12px 14px;
	}

	.sl-item__rank { grid-area: rank; }
	.sl-item__art { grid-area: art; }
	.sl-item__txt { grid-area: txt; }

	.sl-item__side {
		grid-area: side;
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
	}

	.sl-item__art img {
		width: 64px;
		height: 64px;
	}

	.sl-info {
		grid-template-columns: minmax(0, 1fr);
	}

	.sl-dock {
		display: flex;
	}

	.sl-up {
		bottom: 84px;
	}

	body {
		padding-bottom: 68px;
	}

	.sl-wrap,
	.sl-body__in,
	.sl-bar__in {
		padding-inline: 18px;
	}
}

@media (max-width: 480px) {
	.sl-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sl-bar__in {
		padding: 10px 14px;
	}

	.sl-auth .sl-btn {
		padding: 8px 11px;
		font-size: 11.5px;
	}

	/* sl_logo() stamps --sl-logo-h inline on each element, so the phone sizes
	   have to hit the properties themselves rather than redefine the token. */
	.sl-bar .sl-logo {
		gap: 7px;
		min-width: 0;
	}

	.sl-bar .sl-logo img {
		height: 30px;
		width: 30px;
	}

	.sl-bar .sl-logo__word {
		font-size: 17px;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.sl-slide {
		min-height: 340px;
	}

	.sl-sec__all {
		padding: 7px 12px;
		font-size: 11px;
		letter-spacing: .06em;
	}

	.sl-foot__main {
		padding: 32px 18px 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sl-tick__track,
	.sl-foot__line,
	.sl-live {
		animation: none;
	}

	.sl-hero__track {
		transition: none;
	}

	html {
		scroll-behavior: auto;
	}
}
