/* =========================================================================
   slotoking_1 — template 58
   Source skeleton: a Ukrainian casino/sportsbook home screen. Kept: the
   sticky bar, the banner rail, the cover rails, the column footer.
   Simplified per the brief:

     - one accent. The source drives crimson, yellow, violet, lime and orange
       at full saturation simultaneously; here gold (--sk-gold) is the only
       CTA colour and crimson survives only as a hot/live marker, so a button
       reads as a button.
     - one surface language. Every card is the same plate: --sk-panel, one
       hairline, --sk-r-l corners. The source mixes four card treatments.
     - fewer rows. Cover grids are capped at one scroll-snap rail each.

   Layout scale
     page measure      1248px  (--sk-w)
     article column     fluid — wrapped beside the floated cards, then full
                        width once the card column ends
     content images     812px  centred (the network's standing rule)

   Sections
     1  tokens
     2  base + typography
     3  buttons, pills, misc atoms
     4  header, drawer, tab bar
     5  hero, stats
     6  section heads, rails, tiles
     7  panels: jackpot, winners
     8  copy: page head, contents, article body, aside cards
     9  page types: toplist, review, landing
    10  footer
    11  responsive
   ========================================================================= */

/* ---------- 1. tokens ---------------------------------------------------- */

:root {
	--sk-bg:        #0a0a0d;
	--sk-bg-2:      #0f0f14;
	--sk-panel:     #141419;
	--sk-panel-2:   #1a1a21;
	--sk-line:      #ffffff14;
	--sk-line-2:    #ffffff26;

	--sk-text:      #f3f4f6;
	--sk-muted:     #9b9ba7;
	--sk-dim:       #6f6f7c;

	/* The single accent. Everything a visitor is meant to click is this yellow,
	   and it is the brand's own: #ffe500 sampled off the supplied logo, so the
	   mark and the buttons beside it are the same colour rather than two
	   yellows a shade apart. -2 lifts the top of a button gradient, -dim closes
	   the bottom of a text gradient. */
	--sk-gold:      #ffe500;
	--sk-gold-2:    #fff45c;
	--sk-gold-dim:  #e0aa00;
	--sk-on-gold:   #171402;

	/* Reserved: live dots, "hot" badges, the age mark. Never a button. */
	--sk-hot:       #e50037;

	--sk-r-s:  8px;
	--sk-r-m:  12px;
	--sk-r-l:  16px;
	--sk-r-xl: 22px;

	--sk-w:    1248px;
	--sk-gap:  22px;
	--sk-top-h: 66px;

	--sk-shadow: 0 18px 44px #00000059;

	--sk-font:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	--sk-display: 'Unbounded', 'Inter', system-ui, sans-serif;
}

/* ---------- 2. base + typography ----------------------------------------- */

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

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

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

body {
	margin: 0;
	background: var(--sk-bg);
	color: var(--sk-text);
	font: 400 16px/1.6 var(--sk-font);
	/* The tab bar overlays the last 64px on phones; keep the footer clear. */
	padding-bottom: env(safe-area-inset-bottom);
	overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { max-width: 100%; }
img { border: 0; }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--sk-gold); outline-offset: 2px; border-radius: 4px; }

.sk-ico { display: inline-block; vertical-align: middle; flex: none; }

.sk-skip {
	position: absolute; left: -9999px; top: 0; z-index: 200;
	padding: 10px 16px; background: var(--sk-gold); color: var(--sk-on-gold);
	border-radius: 0 0 var(--sk-r-s) 0; font-weight: 600;
}
.sk-skip:focus { left: 0; }

.sk-wrap { width: 100%; max-width: var(--sk-w); margin-inline: auto; padding-inline: 20px; }

.sk-main {
	width: 100%; max-width: var(--sk-w);
	margin-inline: auto;
	padding: 20px 20px 56px;
}

/* ---------- 3. atoms ----------------------------------------------------- */

.sk-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 44px; padding: 0 20px;
	border-radius: var(--sk-r-s);
	font: 600 15px/1 var(--sk-font);
	white-space: nowrap;
	transition: background-color .16s, border-color .16s, color .16s, transform .16s;
}
.sk-btn:active { transform: translateY(1px); }

.sk-btn--primary {
	background: linear-gradient(180deg, var(--sk-gold-2), var(--sk-gold));
	color: var(--sk-on-gold);
	box-shadow: 0 6px 18px #ffe50026;
}
.sk-btn--primary:hover { background: linear-gradient(180deg, #fff9c2, var(--sk-gold-2)); }

.sk-btn--ghost {
	border: 1px solid var(--sk-line-2);
	color: var(--sk-text);
	background: #ffffff0a;
}
.sk-btn--ghost:hover { border-color: var(--sk-gold); color: var(--sk-gold); }

.sk-btn--sm { min-height: 38px; padding: 0 15px; font-size: 14px; }
.sk-btn--block { display: flex; width: 100%; }

/* Live/hot marker. The only place crimson appears in an interactive zone. */
.sk-live {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--sk-hot);
	box-shadow: 0 0 0 4px #e5003726;
	flex: none;
	animation: sk-pulse 2s ease-in-out infinite;
}
@keyframes sk-pulse { 50% { box-shadow: 0 0 0 7px #e5003700; } }

.sk-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sk-gold); flex: none; }

/* ---------- 4. header, drawer, tab bar ----------------------------------- */

.sk-top {
	position: sticky; top: 0; z-index: 60;
	background: #0a0a0dee;
	backdrop-filter: saturate(140%) blur(12px);
	border-bottom: 1px solid var(--sk-line);
}

.sk-top__in {
	width: 100%; max-width: var(--sk-w); margin-inline: auto;
	min-height: var(--sk-top-h);
	padding: 0 20px;
	display: flex; align-items: center; gap: 14px;
}

.sk-burger {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; margin-left: -6px;
	border-radius: var(--sk-r-s); color: var(--sk-muted);
	transition: color .16s, background-color .16s;
}
.sk-burger:hover { color: var(--sk-text); background: #ffffff0f; }

/* --- brand mark --- */
.sk-mark { display: inline-flex; align-items: center; }
.sk-mark__img { display: block; height: var(--sk-mark-h); width: auto; }

.sk-mark__text { display: inline-flex; align-items: center; gap: 8px; }
.sk-mark__crown { display: block; flex: none; filter: drop-shadow(0 2px 6px #ffe50033); }
.sk-mark__word {
	font: 800 calc(var(--sk-mark-h) * .62)/1 var(--sk-display);
	letter-spacing: -.02em;
	text-transform: uppercase;
	color: #fff;
	white-space: nowrap;
}
.sk-mark__word em {
	font-style: normal;
	background: linear-gradient(180deg, var(--sk-gold-2), var(--sk-gold-dim));
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
}

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

.sk-top__link {
	display: inline-flex; align-items: center; gap: 8px;
	height: 38px; padding: 0 13px;
	border-radius: var(--sk-r-s);
	color: var(--sk-muted); font-weight: 600; font-size: 15px;
	transition: color .16s, background-color .16s;
}
.sk-top__link:hover { color: var(--sk-text); background: #ffffff0f; }
.sk-top__link .sk-ico { color: var(--sk-gold); }

.sk-top__auth { display: flex; align-items: center; gap: 9px; margin-left: auto; }

/* --- drawer --- */
.sk-scrim {
	position: fixed; inset: 0; z-index: 79;
	background: #000000a6;
	opacity: 0; visibility: hidden;
	transition: opacity .22s, visibility .22s;
}
body.is-drawer .sk-scrim { opacity: 1; visibility: visible; }

.sk-drawer {
	position: fixed; top: 0; left: 0; bottom: 0; z-index: 80;
	width: min(340px, 88vw);
	display: flex; flex-direction: column;
	background: var(--sk-bg-2);
	border-right: 1px solid var(--sk-line);
	transform: translateX(-102%);
	transition: transform .26s cubic-bezier(.4, 0, .2, 1);
}
body.is-drawer .sk-drawer { transform: none; }

.sk-drawer__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid var(--sk-line);
}
.sk-drawer__x {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: var(--sk-r-s); color: var(--sk-muted);
}
.sk-drawer__x:hover { color: var(--sk-text); background: #ffffff0f; }

.sk-drawer__scroll { flex: 1; overflow-y: auto; padding: 16px; }

.sk-dpromo {
	position: relative; display: flex; align-items: center;
	min-height: 96px; padding: 14px 44px 14px 16px;
	border-radius: var(--sk-r-m); overflow: hidden;
	border: 1px solid var(--sk-line);
}
/* Same right-anchored crop as the hero: the banner art carries the source's
   own headline down its left side, and at this size it would read through
   the veil behind the card's own copy. */
.sk-dpromo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 100% 50%; }
.sk-dpromo::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(90deg, #0a0a0df7 0%, #0a0a0de6 46%, #0a0a0d59 100%);
}
.sk-dpromo__txt { position: relative; z-index: 1; display: grid; gap: 3px; }
.sk-dpromo__kick { font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--sk-gold); font-weight: 700; }
.sk-dpromo__t { font: 800 20px/1.15 var(--sk-display); }
.sk-dpromo__t em { font-style: normal; font-size: 14px; color: var(--sk-muted); display: block; font-family: var(--sk-font); font-weight: 600; }
.sk-dpromo__go {
	position: absolute; right: 12px; top: 50%; transform: translateY(-50%); z-index: 1;
	display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 26px; border-radius: 50%;
	background: var(--sk-gold); color: var(--sk-on-gold);
}

.sk-dgroup { margin-top: 22px; }
.sk-dgroup__t {
	display: block; margin: 0 0 8px 12px;
	font-size: 11px; letter-spacing: .09em; text-transform: uppercase;
	color: var(--sk-dim); font-weight: 700;
}

.sk-drow {
	display: flex; align-items: center; gap: 12px;
	min-height: 46px; padding: 0 12px;
	border-radius: var(--sk-r-s);
	color: var(--sk-muted); font-weight: 500;
	transition: color .16s, background-color .16s;
}
.sk-drow:hover { color: var(--sk-text); background: #ffffff0f; }
.sk-drow .sk-ico { color: var(--sk-gold); }
.sk-drow__l { flex: 1; }
.sk-drow__n {
	font-size: 11px; font-weight: 700; letter-spacing: .04em;
	color: var(--sk-dim);
	padding: 3px 8px; border-radius: 99px; border: 1px solid var(--sk-line);
}

.sk-dsoc { display: flex; gap: 10px; margin: 26px 0 8px 12px; }
.sk-dsoc__i {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 50%;
	border: 1px solid var(--sk-line); color: var(--sk-muted);
	transition: color .16s, border-color .16s;
}
.sk-dsoc__i:hover { color: var(--sk-gold); border-color: var(--sk-gold); }

/* --- mobile tab bar --- */
.sk-tabbar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
	display: none; align-items: stretch;
	background: #0a0a0df2;
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--sk-line);
	padding-bottom: env(safe-area-inset-bottom);
}
.sk-tabbar__i {
	flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
	min-height: 60px; color: var(--sk-dim); font-size: 11px; font-weight: 600;
}
.sk-tabbar__i:first-child { color: var(--sk-gold); }

.sk-totop {
	position: fixed; right: 18px; bottom: 22px; z-index: 50;
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--sk-panel-2); border: 1px solid var(--sk-line-2);
	color: var(--sk-text);
	box-shadow: var(--sk-shadow);
}
.sk-totop .sk-ico { transform: rotate(180deg); }
.sk-totop[hidden] { display: none; }

/* ---------- 5. hero, stats ----------------------------------------------- */

.sk-hero { margin-bottom: 26px; }

.sk-hero__deck {
	display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr);
	gap: 16px;
}

.sk-slide {
	position: relative; isolation: isolate;
	min-height: 232px;
	padding: 26px;
	border-radius: var(--sk-r-l);
	overflow: hidden;
	border: 1px solid var(--sk-line);
	display: flex; align-items: flex-end;
}
/* The source's banner art carries its own baked-in headline down the left of
   the 880x360 frame. Anchoring the crop to the right edge pushes that text out
   of the box and keeps only the key visual — the crane, the crown, the belt —
   so the slide shows one headline instead of two overlapping ones. */
.sk-slide__bg {
	position: absolute; inset: 0; z-index: -2;
	width: 100%; height: 100%;
	object-fit: cover; object-position: 100% 50%;
}
.sk-slide__veil {
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(90deg, #0a0a0df7 0%, #0a0a0de0 42%, #0a0a0d59 100%),
		linear-gradient(180deg, #0a0a0d00 40%, #0a0a0dd9 100%);
}
.sk-slide__body { display: grid; gap: 9px; justify-items: start; }
.sk-slide__kick {
	display: inline-flex; align-items: center; gap: 7px;
	font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
	font-weight: 700; color: var(--sk-gold);
}
.sk-slide__t { font: 800 27px/1.12 var(--sk-display); letter-spacing: -.02em; }
.sk-slide__t em {
	font-style: normal;
	background: linear-gradient(180deg, var(--sk-gold-2), var(--sk-gold-dim));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.sk-slide__note { font-size: 13.5px; line-height: 1.55; color: var(--sk-muted); max-width: 40ch; }
.sk-slide .sk-btn { margin-top: 5px; }

.sk-hero__dots { display: none; justify-content: center; gap: 7px; margin-top: 12px; }
.sk-hero__dot {
	width: 7px; height: 7px; border-radius: 99px; background: var(--sk-line-2);
	transition: width .2s, background-color .2s;
}
.sk-hero__dot.is-on { width: 22px; background: var(--sk-gold); }

/* --- stats strip --- */
.sk-stats {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
	margin-bottom: 34px;
}
.sk-stat {
	display: grid; gap: 3px;
	padding: 16px 18px;
	border-radius: var(--sk-r-m);
	background: var(--sk-panel);
	border: 1px solid var(--sk-line);
}
.sk-stat__i { color: var(--sk-gold); margin-bottom: 4px; }
.sk-stat__v { font: 700 20px/1.2 var(--sk-display); letter-spacing: -.01em; }
.sk-stat__l { font-size: 12.5px; color: var(--sk-muted); }

/* ---------- 6. section heads, rails, tiles ------------------------------- */

.sk-sec { margin-bottom: 34px; }

.sk-shead {
	display: flex; align-items: center; gap: 14px;
	margin-bottom: 14px;
}
.sk-shead__t {
	display: inline-flex; align-items: center; gap: 10px;
	font: 700 19px/1.25 var(--sk-display); letter-spacing: -.015em;
}
.sk-shead__t .sk-ico { color: var(--sk-gold); }
.sk-shead__side { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.sk-shead__all {
	display: inline-flex; align-items: center; gap: 4px;
	height: 32px; padding: 0 12px;
	border-radius: 99px; border: 1px solid var(--sk-line);
	font-size: 13px; font-weight: 600; color: var(--sk-muted);
	transition: color .16s, border-color .16s;
}
.sk-shead__all:hover { color: var(--sk-gold); border-color: var(--sk-gold); }

.sk-arrows { display: flex; gap: 6px; }
.sk-arrows[hidden] { display: none; }
.sk-arrows__b {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; border-radius: 50%;
	border: 1px solid var(--sk-line); color: var(--sk-muted);
	transition: color .16s, border-color .16s, opacity .16s;
}
.sk-arrows__b:hover { color: var(--sk-gold); border-color: var(--sk-gold); }
.sk-arrows__b:disabled { opacity: .35; cursor: default; }

.sk-rail {
	display: grid; grid-auto-flow: column; grid-auto-columns: 158px;
	gap: 14px;
	overflow-x: auto; scroll-snap-type: x proximity;
	scrollbar-width: none;
	padding-bottom: 4px;
	/* Room for the tile lift on hover, so it is not clipped by the scroller. */
	margin-top: -4px; padding-top: 4px;
}
.sk-rail::-webkit-scrollbar { display: none; }

.sk-tile { scroll-snap-align: start; display: grid; gap: 8px; align-content: start; }
.sk-tile__art {
	position: relative; display: block;
	aspect-ratio: 268 / 300;
	border-radius: var(--sk-r-m); overflow: hidden;
	border: 1px solid var(--sk-line);
	background: var(--sk-panel);
	transition: transform .18s, border-color .18s, box-shadow .18s;
}
.sk-tile__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sk-tile:hover .sk-tile__art {
	transform: translateY(-4px);
	border-color: var(--sk-gold);
	box-shadow: 0 14px 30px #00000073;
}

.sk-tile__badge {
	position: absolute; top: 8px; left: 8px;
	padding: 3px 8px; border-radius: 99px;
	font-size: 10px; font-weight: 800; letter-spacing: .06em;
	text-transform: uppercase;
}
.sk-tile__badge--hot { background: var(--sk-hot); color: #fff; }
.sk-tile__badge--new { background: var(--sk-gold); color: var(--sk-on-gold); }

.sk-tile__play {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
	background: #0a0a0dc4;
	color: var(--sk-gold);
	font-size: 13px; font-weight: 700;
	opacity: 0; transition: opacity .18s;
}
.sk-tile:hover .sk-tile__play, .sk-tile:focus-visible .sk-tile__play { opacity: 1; }

.sk-tile__name {
	font-size: 13.5px; font-weight: 600; line-height: 1.3;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.sk-tile__prov { font-size: 11.5px; color: var(--sk-dim); margin-top: -4px; }

/* ---------- 7. panels ---------------------------------------------------- */

/* Two panels of equal height rather than the earlier tall/short pair: the
   jackpot card carries far less copy than the winners list, so side by side in
   a stretched row it fills its plate with the crown art instead of leaving a
   column of dead space under the shorter one. */
.sk-duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sk-gap); align-items: stretch; }

.sk-panel {
	padding: 18px;
	border-radius: var(--sk-r-l);
	background: var(--sk-panel);
	border: 1px solid var(--sk-line);
}
.sk-panel__head {
	display: flex; align-items: center; gap: 9px;
	font: 700 15px/1.2 var(--sk-display);
	margin-bottom: 12px;
}
.sk-panel__kick {
	display: inline-flex; align-items: center; gap: 7px;
	font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
	font-weight: 700; color: var(--sk-gold);
}
.sk-panel--jack {
	position: relative; isolation: isolate; overflow: hidden;
	display: grid; gap: 7px; align-content: center;
	min-height: 268px;
}
.sk-panel__art {
	position: absolute; inset: 0; z-index: -2;
	width: 100%; height: 100%; object-fit: cover; object-position: 100% 50%;
}
/* Near-opaque on the left: the crown art has the source's own promo line set
   across its lower half, and this is what keeps that stray copy from reading
   through under the jackpot figure. */
.sk-panel__veil {
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(90deg, #141419 0%, #141419fa 46%, #1414198c 100%),
		linear-gradient(0deg, #141419e6 0%, #14141900 46%);
}
.sk-panel__sum { font: 800 27px/1.1 var(--sk-display); letter-spacing: -.02em; }
.sk-panel__sum i { font-style: normal; color: var(--sk-gold); }
.sk-panel__note { font-size: 13px; color: var(--sk-muted); }
.sk-panel--jack .sk-btn { margin-top: 8px; }

.sk-wins { display: grid; gap: 2px; }
.sk-wins__i {
	display: flex; align-items: center; gap: 11px;
	padding: 8px; border-radius: var(--sk-r-s);
	transition: background-color .16s;
}
.sk-wins__i:hover { background: #ffffff0a; }
.sk-wins__i img { width: 34px; height: 38px; object-fit: cover; border-radius: 6px; flex: none; }
.sk-wins__txt { display: grid; min-width: 0; }
.sk-wins__nick { font-size: 13px; font-weight: 600; }
.sk-wins__game { font-size: 11.5px; color: var(--sk-dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sk-wins__sum { margin-left: auto; font-size: 13.5px; font-weight: 700; color: var(--sk-gold); white-space: nowrap; }

/* ---------- 8. copy ------------------------------------------------------ */

/* Below the float breakpoint the copy is a single stack, and the card column
   is ordered AFTER the article rather than before it. In DOM order the cards
   sit right under the <h1> — which is what puts them beside the copy once the
   column floats, and what keeps the heading the first substantive node — but
   left alone that same order would push the article body a screen and a half
   down on a phone, behind three promo cards. */
.sk-copy { display: flex; flex-direction: column; margin-top: 44px; }
.sk-copy > .sk-phead   { order: 1; }
.sk-copy > .sk-toc     { order: 2; }
.sk-copy > .sk-content { order: 3; }
.sk-copy > .sk-aside   { order: 4; margin: 30px 0 0; }

.sk-plain { margin-top: 8px; }

/* page.php and landing.php call sk_copy() with no card column, so nothing
   wraps and nothing widens further down — there the copy keeps a reading
   measure instead of running the full 1208px of the page. */
.sk-copy:not(:has(.sk-aside)) { max-width: 78ch; }

.sk-phead { margin-bottom: 22px; }
.sk-phead h1 {
	margin: 0;
	font: 700 clamp(25px, 3.1vw, 35px)/1.2 var(--sk-display);
	letter-spacing: -.025em;
}
.sk-lead {
	margin: 14px 0 0;
	font-size: 17px; line-height: 1.65; color: var(--sk-muted);
}

.sk-toc {
	margin: 0 0 26px;
	padding: 16px 20px;
	border-radius: var(--sk-r-m);
	background: var(--sk-panel);
	border: 1px solid var(--sk-line);
	border-left: 3px solid var(--sk-gold);
}
.sk-toc__t {
	display: flex; align-items: center; gap: 9px;
	font: 700 14px/1 var(--sk-display);
	margin-bottom: 10px;
}
.sk-toc__t .sk-ico { color: var(--sk-gold); }
.sk-toc ol { margin: 0; padding-left: 20px; display: grid; gap: 6px; }
.sk-toc li { color: var(--sk-dim); font-size: 14.5px; }
.sk-toc a { color: var(--sk-muted); }
.sk-toc a:hover { color: var(--sk-gold); text-decoration: underline; }

/* --- the article body itself --- */
/* Fluid: the column takes whatever width its grid cell gives it, at every
   breakpoint. It used to be pinned at 850px, which was right beside the
   floated aside on a 1440 screen and left a dead gutter at every width below
   that. The aside is a grid column now rather than a float, so there is no
   float for a content image to be shunted sideways by, and the image rule
   below can simply centre in the measure. */
.sk-content { font-size: 17px; line-height: 1.75; color: #dcdde3; }

/* No reading-measure cap on the text. The copy is meant to take whatever the
   column gives it: beside the floated card column that is ~842px, and below
   the point where the column ends it reclaims the full 1200px measure. A
   max-width here would freeze the paragraphs at one width and the reclaimed
   space would read as a dead gutter — which is exactly what the float is
   there to avoid. */

.sk-content h2, .sk-content h3, .sk-content h4 {
	font-family: var(--sk-display);
	letter-spacing: -.02em;
	color: var(--sk-text);
	scroll-margin-top: calc(var(--sk-top-h) + 16px);
}
.sk-content h2 { font-size: clamp(20px, 2.2vw, 25px); font-weight: 600; line-height: 1.3; margin: 42px 0 14px; }
.sk-content h3 { font-size: 19px; font-weight: 600; line-height: 1.35; margin: 32px 0 12px; }
.sk-content h4 { font-size: 17px; font-weight: 600; margin: 26px 0 10px; }
.sk-content > :first-child { margin-top: 0; }

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

.sk-content a { color: var(--sk-gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.sk-content a:hover { color: var(--sk-gold-2); }

.sk-content strong, .sk-content b { color: var(--sk-text); font-weight: 700; }

.sk-content ul, .sk-content ol { margin: 0 0 20px; padding-left: 22px; }
.sk-content li { margin-bottom: 8px; }
.sk-content li::marker { color: var(--sk-gold); }

/* Content images: the network's standing rule — capped at 812px, centred in
   the measure, and shrinking with the column below that. max-width rather
   than width so a small image keeps its own size instead of upscaling into a
   blur. Block-level, so it stays clear of the floated aside's margin box. */
.sk-content img {
	display: block;
	max-width: min(812px, 100%);
	height: auto;
	margin: 26px auto;
	border-radius: var(--sk-r-m);
	border: 1px solid var(--sk-line);
}
.sk-content figure { margin: 26px 0; max-width: min(812px, 100%); margin-inline: auto; }
.sk-content figure img { margin: 0 auto; }
.sk-content figcaption { margin-top: 9px; font-size: 13.5px; color: var(--sk-dim); text-align: center; }

.sk-content blockquote {
	margin: 26px 0; padding: 16px 20px;
	border-left: 3px solid var(--sk-gold);
	border-radius: 0 var(--sk-r-s) var(--sk-r-s) 0;
	background: var(--sk-panel);
	color: var(--sk-muted); font-style: italic;
}
.sk-content blockquote p:last-child { margin-bottom: 0; }

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

.sk-tscroll { max-width: 100%; overflow-x: auto; margin: 0 0 22px; -webkit-overflow-scrolling: touch; }
.sk-content table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 520px; }
.sk-content th, .sk-content td { padding: 11px 14px; border: 1px solid var(--sk-line); text-align: left; }
.sk-content th { background: var(--sk-panel); font-weight: 700; color: var(--sk-text); }
.sk-content tbody tr:nth-child(even) td { background: #ffffff05; }

/* --- the floated card column --- */
.sk-aside { display: grid; align-content: start; gap: 14px; margin: 0 0 26px; }

/* From 1240px up the card column is a FLOAT, not a grid track: the copy wraps
   beside it and then reclaims the full 1200px measure as soon as the cards
   end, so a long article never runs in a narrow ribbon with a dead gutter
   beside it for its whole length. A grid track cannot do that — the column
   keeps the same width down its entire height.

   1240px is the first viewport at which the wrapped column is still wide
   enough for an 812px content image: 1200 measure - 324 cards - 34 gutter =
   842px. Below it the cards drop under the article (the flex stack above).

   The DOM order is head, aside, contents, body: the head is a block before
   the float, so the <h1> stays the first substantive node on the page, and
   the float is declared before the copy that has to wrap around it.

   Scoped with :has() because page.php and landing.php call sk_copy() with no
   card column. A browser without :has() keeps the single-column stack, which
   is the layout every narrow viewport already gets. */
@media (min-width: 1240px) {
	/* flow-root, so the floated column is contained and the footer below the
	   article is not dragged up beside it. */
	.sk-copy:has(.sk-aside) { display: flow-root; }

	.sk-copy:has(.sk-aside) > .sk-aside {
		float: right;
		width: 324px;
		margin: 0 0 26px 34px;
	}

	/* Boxes that carry their own background, border or scroller would slide
	   UNDER the float — a float only shortens the line boxes inside a block,
	   not the block's own box. Their own formatting context makes each one sit
	   beside the cards at the wrapped width, then widen once the float ends.
	   .sk-tscroll already has one via overflow-x, and a block-level replaced
	   element (a content image) may not overlap a float's margin box, so
	   neither needs re-stating here. */
	.sk-copy:has(.sk-aside) > .sk-toc,
	.sk-copy:has(.sk-aside) .sk-content blockquote,
	.sk-copy:has(.sk-aside) .sk-content figure { display: flow-root; }
}

/* Stacked under the article the three cards would run a screen and a half
   tall, so from the tablet width up they sit side by side instead. */
@media (min-width: 720px) and (max-width: 1239px) {
	.sk-copy > .sk-aside { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
}

.sk-card {
	padding: 18px;
	border-radius: var(--sk-r-l);
	background: var(--sk-panel);
	border: 1px solid var(--sk-line);
	display: grid; gap: 9px;
}
.sk-card__kick {
	display: inline-flex; align-items: center; gap: 7px;
	font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
	font-weight: 700; color: var(--sk-gold);
}
.sk-card__head {
	display: flex; align-items: center; gap: 9px;
	font: 700 15px/1.2 var(--sk-display);
}
.sk-card__head .sk-ico { color: var(--sk-gold); }
.sk-card__sum { font: 800 26px/1.1 var(--sk-display); letter-spacing: -.02em; }
.sk-card__sum span { display: block; font: 600 13px/1.4 var(--sk-font); color: var(--sk-muted); margin-top: 4px; }
.sk-card__note { font-size: 13.5px; line-height: 1.6; color: var(--sk-muted); }
.sk-card--bonus {
	background:
		radial-gradient(120% 130% at 100% 0%, #ffe5001f 0%, #ffe50000 58%),
		var(--sk-panel);
}
.sk-card .sk-btn { margin-top: 5px; }
.sk-247 {
	margin-left: auto; padding: 3px 8px; border-radius: 99px;
	font: 700 11px/1 var(--sk-font); letter-spacing: .05em;
	background: #ffffff0f; color: var(--sk-muted);
}

.sk-tops { display: grid; gap: 2px; }
.sk-tops__i {
	display: flex; align-items: center; gap: 11px;
	padding: 8px; border-radius: var(--sk-r-s);
	transition: background-color .16s;
}
.sk-tops__i:hover { background: #ffffff0a; }
.sk-tops__n { width: 16px; font: 800 14px/1 var(--sk-display); color: var(--sk-dim); flex: none; }
.sk-tops__i img { width: 34px; height: 38px; object-fit: cover; border-radius: 6px; flex: none; }
.sk-tops__txt { display: grid; min-width: 0; flex: 1; }
.sk-tops__name { font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sk-tops__prov { font-size: 11.5px; color: var(--sk-dim); }
.sk-tops__i .sk-ico { color: var(--sk-dim); flex: none; }

/* --- rating --- */
.sk-rate { display: inline-flex; align-items: center; gap: 8px; }
.sk-rate__stars { display: inline-flex; gap: 2px; }
.sk-rate__s { color: var(--sk-line-2); display: inline-flex; }
.sk-rate__s.is-on { color: var(--sk-gold); }
.sk-rate__n { font-size: 13.5px; font-weight: 700; }

/* ---------- 9. page types ------------------------------------------------ */

/* --- toplist --- */
.sk-tl { display: grid; gap: 12px; }
.sk-tl__i {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) auto auto;
	align-items: center; gap: 18px;
	padding: 16px 18px;
	border-radius: var(--sk-r-l);
	background: var(--sk-panel);
	border: 1px solid var(--sk-line);
	transition: border-color .16s;
}
.sk-tl__i:hover { border-color: var(--sk-line-2); }
.sk-tl__i:first-child { border-color: #ffe50059; background: radial-gradient(90% 130% at 0% 0%, #ffe50014, #ffe50000 60%), var(--sk-panel); }
.sk-tl__n { font: 800 24px/1 var(--sk-display); color: var(--sk-dim); text-align: center; }
.sk-tl__i:first-child .sk-tl__n { color: var(--sk-gold); }
.sk-tl__name { display: block; font: 700 17px/1.25 var(--sk-display); margin-bottom: 7px; }
.sk-tl__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sk-tl__tag {
	font-size: 11.5px; font-weight: 600; color: var(--sk-muted);
	padding: 3px 9px; border-radius: 99px; border: 1px solid var(--sk-line);
}
.sk-tl__bonus { text-align: right; }
.sk-tl__sum { display: block; font: 800 21px/1.1 var(--sk-display); color: var(--sk-gold); }
/* Block, so the measure actually applies — as an inline span the condition
   ran the full width of the row and crowded the CTA column. */
.sk-tl__cond { display: block; font-size: 12.5px; line-height: 1.45; color: var(--sk-muted); max-width: 30ch; margin: 4px 0 0 auto; }
.sk-tl__go { display: grid; gap: 8px; justify-items: stretch; min-width: 152px; }

/* --- review --- */
.sk-rev {
	display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: var(--sk-gap);
	align-items: start;
	padding: 22px;
	border-radius: var(--sk-r-xl);
	background: var(--sk-panel);
	border: 1px solid var(--sk-line);
	margin-bottom: 12px;
}
.sk-rev__name { display: block; font: 700 26px/1.15 var(--sk-display); letter-spacing: -.02em; margin-bottom: 10px; }
.sk-rev__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 16px; }
.sk-rev__facts { display: grid; gap: 1px; background: var(--sk-line); border-radius: var(--sk-r-m); overflow: hidden; }
.sk-rev__f { display: flex; gap: 14px; padding: 11px 15px; background: var(--sk-panel); font-size: 14.5px; }
.sk-rev__fk { color: var(--sk-muted); min-width: 42%; }
.sk-rev__fv { font-weight: 600; }
.sk-rev__side { display: grid; gap: 12px; }
.sk-rev__badge {
	display: inline-flex; align-items: center; gap: 7px;
	padding: 5px 11px; border-radius: 99px;
	font-size: 12px; font-weight: 700;
	background: #ffffff0f; color: var(--sk-muted);
}

/* --- landing --- */
.sk-land {
	position: relative; isolation: isolate;
	padding: clamp(30px, 6vw, 66px);
	border-radius: var(--sk-r-xl);
	overflow: hidden;
	border: 1px solid var(--sk-line);
	text-align: center;
	margin-bottom: 26px;
}
/* The art is used as texture here, not as a picture: it carries the source's
   own promo line, so it is scaled up past the frame, blurred and buried under
   a near-opaque veil. Anything legible in it would compete with the headline
   this panel exists to carry. */
.sk-land__bg {
	position: absolute; inset: 0; z-index: -2;
	width: 100%; height: 100%; object-fit: cover;
	transform: scale(1.08);
	filter: blur(7px) saturate(1.15);
}
.sk-land__veil {
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(90% 120% at 50% 0%, #0a0a0d99 0%, #0a0a0dee 70%),
		#0a0a0dbf;
}
/* Block-level, or the badge shares its line with the headline that follows. */
.sk-land__kick {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	font-size: 12px; letter-spacing: .09em; text-transform: uppercase;
	font-weight: 700; color: var(--sk-gold); margin-bottom: 14px;
}
.sk-land__t {
	display: block;
	font: 700 clamp(27px, 4.4vw, 42px)/1.14 var(--sk-display);
	letter-spacing: -.03em; margin-bottom: 14px;
	max-width: 22ch; margin-inline: auto;
}
.sk-land__t em {
	font-style: normal;
	background: linear-gradient(180deg, var(--sk-gold-2), var(--sk-gold-dim));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.sk-land__note { font-size: 16.5px; line-height: 1.65; color: var(--sk-muted); max-width: 56ch; margin: 0 auto 24px; }
.sk-land__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.sk-land__pts {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px;
	margin-top: 30px; text-align: left;
}
.sk-land__pt {
	display: flex; gap: 11px; align-items: flex-start;
	padding: 14px 16px; border-radius: var(--sk-r-m);
	background: #ffffff0a; border: 1px solid var(--sk-line);
	font-size: 14px; color: var(--sk-muted);
}
.sk-land__pt .sk-ico { color: var(--sk-gold); margin-top: 2px; }

/* ---------- 10. footer --------------------------------------------------- */

.sk-foot {
	margin-top: 20px;
	padding: 44px 0 30px;
	background: var(--sk-bg-2);
	border-top: 1px solid var(--sk-line);
}

.sk-foot__top {
	display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--sk-line);
}
.sk-foot__about { margin: 14px 0 0; font-size: 13.5px; line-height: 1.65; color: var(--sk-muted); max-width: 44ch; }
.sk-foot__soc { display: flex; gap: 10px; margin-top: 16px; }
.sk-foot__soci {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 50%;
	border: 1px solid var(--sk-line); color: var(--sk-muted);
	transition: color .16s, border-color .16s;
}
.sk-foot__soci:hover { color: var(--sk-gold); border-color: var(--sk-gold); }

.sk-foot__col { display: grid; align-content: start; gap: 10px; }
.sk-foot__ct {
	font: 700 13px/1 var(--sk-display);
	letter-spacing: .02em;
	margin-bottom: 4px;
}
.sk-foot__col a { font-size: 14px; color: var(--sk-muted); transition: color .16s; }
.sk-foot__col a:hover { color: var(--sk-gold); }

.sk-pays { display: flex; flex-wrap: wrap; gap: 9px; padding: 24px 0; border-bottom: 1px solid var(--sk-line); }
.sk-pays__i {
	padding: 7px 14px; border-radius: var(--sk-r-s);
	background: #ffffff08; border: 1px solid var(--sk-line);
	font-size: 12.5px; font-weight: 600; color: var(--sk-dim);
}

.sk-foot__legal { display: grid; gap: 10px; padding: 24px 0; }
.sk-foot__legal p { margin: 0; font-size: 12.5px; line-height: 1.65; color: var(--sk-dim); max-width: 92ch; }
.sk-age {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%;
	border: 2px solid var(--sk-hot); color: var(--sk-hot);
	font: 800 13px/1 var(--sk-display);
}

.sk-foot__bottom {
	display: flex; flex-wrap: wrap; gap: 8px 22px;
	padding-top: 20px; border-top: 1px solid var(--sk-line);
	font-size: 12.5px; color: var(--sk-dim);
}

/* ---------- 11. responsive ----------------------------------------------- */

@media (max-width: 959px) {
	.sk-duo { grid-template-columns: 1fr; }
	.sk-panel--jack { min-height: 210px; }
}

@media (max-width: 1023px) {
	.sk-top__nav { display: none; }
	.sk-hero__deck {
		grid-auto-columns: 84%;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}
	.sk-hero__deck::-webkit-scrollbar { display: none; }
	.sk-slide { scroll-snap-align: center; }
	.sk-hero__dots { display: flex; }
	.sk-foot__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sk-rev { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
	body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
	.sk-tabbar { display: flex; }
	.sk-totop { bottom: calc(74px + env(safe-area-inset-bottom)); }

	.sk-main { padding: 16px 16px 40px; }
	.sk-wrap { padding-inline: 16px; }
	.sk-top__in { padding: 0 16px; gap: 10px; }

	.sk-stats { grid-template-columns: repeat(2, 1fr); }
	.sk-rail { grid-auto-columns: 136px; }
	.sk-slide { min-height: 200px; padding: 20px; }
	.sk-slide__t { font-size: 23px; }

	.sk-content { font-size: 16px; }
	.sk-lead { font-size: 16px; }

	.sk-tl__i { grid-template-columns: 34px minmax(0, 1fr); gap: 10px 14px; }
	.sk-tl__bonus { grid-column: 1 / -1; text-align: left; }
	.sk-tl__cond { max-width: none; }
	.sk-tl__go { grid-column: 1 / -1; grid-auto-flow: column; }

	.sk-foot { padding-top: 32px; }
	.sk-foot__top { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 479px) {
	/* The auth pair drops to the registration button alone — at this width the
	   two together crowd the wordmark, and login is one row down in the drawer. */
	.sk-top__auth .sk-btn--ghost { display: none; }
	.sk-rail { grid-auto-columns: 124px; }
	.sk-tl__go { grid-auto-flow: row; }
}

@media (max-width: 359px) {
	.sk-stats { grid-template-columns: 1fr; }
}
