/*
 * "joker_1" (template 46) — stylesheet.
 *
 * Cloned from one of our own UA casino properties (Joker Win). The source
 * identity is kept — #3B0A75 deep purple chrome, #AD00FF violet CTAs, Rubik
 * type, a light content field, category tabs over a search field, centred
 * section titles with rules, a tournament block and a provider wall.
 *
 * Refreshed hard against the source, which was a plain white WordPress page:
 * the field becomes a soft lavender with a violet aurora behind the header,
 * cards gain real elevation and hover lift, the flat purple bar becomes a
 * gradient with a glass search row, the tournament turns into one gradient
 * panel with a live countdown, and every tile renders its cover downscaled
 * (256px source into a ≤240px box) so artwork stays sharp instead of being
 * stretched the way the source stretched its thumbnails.
 *
 * Sections in order: tokens, reset, buttons, header, drawer, tabs, hero,
 * section headers, game grid, tournament, promos, providers, page-type blocks
 * (toplist, review, landing), CMS content, footer, responsive.
 */

/* ---------------------------------------------------------------- tokens */

:root {
	--jk-purple:      #3b0a75;
	--jk-purple-deep: #2a0757;
	--jk-purple-soft: #4d1490;
	--jk-violet:      #ad00ff;
	--jk-violet-2:    #7b2ff7;
	--jk-green:       #4cc417;
	--jk-gold:        #ffc107;

	--jk-page:        #f6f4fd;
	--jk-surface:     #ffffff;
	--jk-surface-2:   #f1ecfb;

	--jk-ink:         #1a1130;
	--jk-ink-2:       #443a63;
	--jk-muted:       #6f6690;

	--jk-line:        #e6dff7;
	--jk-line-2:      #d5c9ef;

	--jk-shadow:      0 6px 18px rgba(46, 12, 90, .08);
	--jk-shadow-md:   0 14px 34px rgba(46, 12, 90, .14);
	--jk-shadow-lg:   0 24px 60px rgba(46, 12, 90, .22);
	--jk-glow:        0 10px 30px rgba(173, 0, 255, .35);

	--jk-r:      16px;
	--jk-r-sm:   10px;
	--jk-r-lg:   24px;
	--jk-r-pill: 999px;

	/* 1200px of content plus the 16px gutters the wrapper adds either side. */
	--jk-wrap:  1232px;
	--jk-hdr-h: 72px;

	--jk-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----------------------------------------------------------------- reset */

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

html {
	scroll-behavior: smooth;
	/* Reserve the scrollbar strip permanently, so locking body scroll for the
	   drawer cannot widen the page and shift the layout sideways. */
	scrollbar-gutter: stable;
}

body {
	margin: 0;
	background-color: var(--jk-page);
	color: var(--jk-ink);
	font-family: Rubik, "Segoe UI", system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

a {
	color: var(--jk-violet);
	text-decoration: none;
}

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

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

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

.jk-main {
	min-height: 60vh;
	padding-bottom: 12px;
}

.jk-sec {
	margin: 38px 0;
}

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

.jk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 24px;
	border-radius: var(--jk-r-pill);
	background: linear-gradient(135deg, var(--jk-violet-2) 0%, var(--jk-violet) 100%);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	white-space: nowrap;
	box-shadow: var(--jk-glow);
	transition: transform .18s var(--jk-ease), box-shadow .18s var(--jk-ease), filter .18s var(--jk-ease);
}

.jk-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(173, 0, 255, .45);
	filter: brightness(1.06);
}

.jk-btn:active {
	transform: translateY(0);
}

.jk-btn--ghost {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, .5);
	box-shadow: none;
}

.jk-btn--ghost:hover {
	background: rgba(255, 255, 255, .14);
	border-color: #fff;
	box-shadow: none;
}

/* Ghost on the light field rather than on the purple bar. */
.jk-btn--outline {
	background: transparent;
	color: var(--jk-violet);
	border: 2px solid var(--jk-line-2);
	box-shadow: none;
}

.jk-btn--outline:hover {
	background: var(--jk-surface);
	border-color: var(--jk-violet);
	box-shadow: var(--jk-shadow);
}

.jk-btn--full {
	width: 100%;
}

.jk-btn--lg {
	min-height: 54px;
	padding: 0 34px;
	font-size: 17px;
}

.jk-btn--sm {
	min-height: 38px;
	padding: 0 18px;
	font-size: 14px;
}

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

.jk-hdr {
	position: sticky;
	top: 0;
	z-index: 60;
	height: var(--jk-hdr-h);
	background:
		radial-gradient(90% 200% at 10% 0%, rgba(173, 0, 255, .55), transparent 58%),
		radial-gradient(80% 180% at 88% 10%, rgba(90, 40, 220, .5), transparent 60%),
		linear-gradient(90deg, var(--jk-purple-deep) 0%, var(--jk-purple) 52%, #46108a 100%);
	box-shadow: 0 8px 30px rgba(35, 6, 74, .32);
}

.jk-hdr__in {
	position: relative;
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.jk-burger {
	flex: none;
	width: 42px;
	height: 42px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--jk-violet-2) 0%, var(--jk-violet) 100%);
	box-shadow: 0 6px 16px rgba(173, 0, 255, .4);
	transition: transform .18s var(--jk-ease), box-shadow .18s var(--jk-ease);
}

.jk-burger span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	transition: transform .26s var(--jk-ease), opacity .18s var(--jk-ease);
}

.jk-burger:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(173, 0, 255, .55);
}

/* Collapse to an X while the drawer is open. */
.jk-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.jk-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.jk-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.jk-hdr__nav {
	display: flex;
	align-items: center;
	gap: 6px;
}

.jk-hdr__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: var(--jk-r-pill);
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	transition: background .18s var(--jk-ease), transform .18s var(--jk-ease);
}

.jk-hdr__item .jk-i {
	color: var(--jk-gold);
}

.jk-hdr__item:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-1px);
}

.jk-hdr__logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
}

.jk-hdr__logo img {
	height: 46px;
	width: auto;
}

/* Typographic fallback when the site ships no logo file. */
.jk-mark {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	font-size: 27px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.jk-mark b {
	color: var(--jk-green);
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(76, 196, 23, .45);
}

.jk-mark i {
	color: var(--jk-gold);
	font-style: italic;
	font-size: .68em;
	font-weight: 700;
}

.jk-hdr__auth {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
}

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

.jk-dim {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(26, 6, 56, .55);
	backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s var(--jk-ease), visibility .25s var(--jk-ease);
}

.jk-dim.is-open {
	opacity: 1;
	visibility: visible;
}

.jk-drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 80;
	display: flex;
	flex-direction: column;
	width: 312px;
	max-width: 88vw;
	height: 100%;
	overflow-y: auto;
	overscroll-behavior: contain;
	background: linear-gradient(180deg, var(--jk-purple) 0%, var(--jk-purple-deep) 100%);
	box-shadow: var(--jk-shadow-lg);
	transform: translateX(-104%);
	transition: transform .3s var(--jk-ease);
}

.jk-drawer.is-open {
	transform: none;
}

.jk-drawer__head {
	position: sticky;
	top: 0;
	z-index: 2;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	height: var(--jk-hdr-h);
	padding: 0 16px;
	background: linear-gradient(90deg, var(--jk-purple-deep) 0%, var(--jk-purple) 100%);
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.jk-drawer__head img {
	height: 38px;
	width: auto;
}

.jk-drawer__x {
	flex: none;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	transition: background .18s var(--jk-ease), transform .18s var(--jk-ease);
}

.jk-drawer__x:hover {
	background: rgba(255, 255, 255, .26);
	transform: rotate(90deg);
}

.jk-drawer__body {
	flex: 1 1 auto;
	padding: 18px 16px 22px;
}

.jk-drawer__promo {
	position: relative;
	overflow: hidden;
	padding: 18px;
	margin-bottom: 20px;
	border-radius: var(--jk-r);
	background: linear-gradient(135deg, var(--jk-violet-2) 0%, var(--jk-violet) 100%);
	box-shadow: var(--jk-glow);
	text-align: center;
}

.jk-drawer__tag {
	display: block;
	color: rgba(255, 255, 255, .82);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.jk-drawer__sum {
	display: block;
	margin: 8px 0 14px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
}

.jk-drawer__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	border-radius: var(--jk-r-pill);
	background: #fff;
	color: var(--jk-violet);
	font-weight: 700;
	transition: transform .18s var(--jk-ease);
}

.jk-drawer__btn:hover {
	transform: translateY(-2px);
}

.jk-drawer__gt {
	display: block;
	margin: 0 0 8px 4px;
	color: rgba(255, 255, 255, .55);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.jk-drawer__nav {
	display: grid;
	gap: 2px;
	margin-bottom: 22px;
}

.jk-drawer__nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border-radius: var(--jk-r-sm);
	color: rgba(255, 255, 255, .88);
	font-size: 15px;
	font-weight: 500;
	transition: background .18s var(--jk-ease), color .18s var(--jk-ease);
}

.jk-drawer__nav a .jk-i {
	flex: none;
	box-sizing: content-box;
	width: 19px;
	height: 19px;
	padding: 7px;
	border-radius: 9px;
	background: rgba(255, 255, 255, .1);
	color: var(--jk-gold);
	transition: background .18s var(--jk-ease);
}

.jk-drawer__nav a:hover {
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.jk-drawer__nav a:hover .jk-i {
	background: rgba(173, 0, 255, .55);
	color: #fff;
}

.jk-drawer__auth {
	display: grid;
	gap: 10px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.jk-drawer__note {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	color: rgba(255, 255, 255, .6);
	font-size: 12px;
	line-height: 1.45;
}

.jk-drawer__note b {
	flex: none;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid var(--jk-gold);
	color: var(--jk-gold);
	font-size: 12px;
}

/* ------------------------------------------------------- tabs and search */

/* The source floated a bordered box with three text tabs and a search input.
   Same row, now an elevated card sitting under the header. */
.jk-tabs {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 20px 0 26px;
	padding: 10px;
	border-radius: var(--jk-r);
	background: var(--jk-surface);
	border: 1px solid var(--jk-line);
	box-shadow: var(--jk-shadow-md);
}

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

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

.jk-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: none;
	padding: 10px 18px;
	border-radius: var(--jk-r-pill);
	color: var(--jk-ink-2);
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
	transition: background .18s var(--jk-ease), color .18s var(--jk-ease);
}

.jk-tab .jk-i {
	color: var(--jk-violet);
	opacity: .8;
}

.jk-tab:hover {
	background: var(--jk-surface-2);
	color: var(--jk-ink);
}

.jk-tab.is-active {
	background: linear-gradient(135deg, var(--jk-violet-2) 0%, var(--jk-violet) 100%);
	color: #fff;
	box-shadow: var(--jk-glow);
}

.jk-tab.is-active .jk-i {
	color: #fff;
	opacity: 1;
}

.jk-search {
	position: relative;
	margin-left: auto;
	flex: 0 1 320px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 16px;
	height: 44px;
	border-radius: var(--jk-r-pill);
	background: var(--jk-surface-2);
	border: 1px solid var(--jk-line);
	color: var(--jk-muted);
}

.jk-search .jk-i {
	flex: none;
	color: var(--jk-violet);
}

.jk-search input {
	width: 100%;
	border: 0;
	background: none;
	font: inherit;
	color: var(--jk-ink);
	outline: none;
}

.jk-search input::placeholder {
	color: var(--jk-muted);
}

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

.jk-hero {
	position: relative;
	overflow: hidden;
	margin: 22px 0 0;
	border-radius: var(--jk-r-lg);
	box-shadow: var(--jk-shadow-lg);
}

.jk-hero__track {
	display: flex;
	overflow-x: auto;
	/* Must be explicit: a lone overflow-x turns the other axis from visible
	   into auto, and a slide's decorative art would then drag vertically. */
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.jk-hero__track::-webkit-scrollbar {
	display: none;
}

.jk-hero__slide {
	position: relative;
	overflow: hidden;
	flex: 0 0 100%;
	scroll-snap-align: start;
	display: flex;
	align-items: center;
	min-height: 300px;
	padding: 40px 76px;
	color: #fff;
}

.jk-hero__slide--a {
	background:
		radial-gradient(70% 130% at 82% 40%, rgba(173, 0, 255, .6), transparent 62%),
		linear-gradient(120deg, #2a0757 0%, #4a108f 56%, #7b2ff7 100%);
}

.jk-hero__slide--b {
	background:
		radial-gradient(70% 130% at 80% 44%, rgba(76, 196, 23, .38), transparent 62%),
		linear-gradient(120deg, #240a4d 0%, #3b0a75 54%, #6a1fb5 100%);
}

.jk-hero__slide--c {
	background:
		radial-gradient(70% 130% at 80% 44%, rgba(255, 193, 7, .34), transparent 60%),
		linear-gradient(120deg, #3a0a63 0%, #5a1096 52%, #9426d6 100%);
}

.jk-hero__slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(2px 2px at 14% 24%, rgba(255, 255, 255, .8), transparent 60%),
		radial-gradient(1.6px 1.6px at 34% 72%, rgba(255, 255, 255, .5), transparent 60%),
		radial-gradient(2px 2px at 60% 18%, rgba(255, 255, 255, .7), transparent 60%),
		radial-gradient(2.4px 2.4px at 76% 64%, rgba(255, 223, 130, .8), transparent 60%),
		radial-gradient(1.6px 1.6px at 88% 32%, rgba(255, 255, 255, .6), transparent 60%),
		radial-gradient(2px 2px at 46% 46%, rgba(255, 255, 255, .45), transparent 60%);
	pointer-events: none;
}

.jk-hero__in {
	position: relative;
	z-index: 1;
	max-width: 620px;
}

.jk-hero__kick {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 15px;
	margin-bottom: 14px;
	border-radius: var(--jk-r-pill);
	background: rgba(255, 255, 255, .16);
	border: 1px solid rgba(255, 255, 255, .3);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.jk-hero__ttl {
	display: block;
	font-size: 30px;
	font-weight: 300;
	line-height: 1.2;
}

.jk-hero__sum {
	display: block;
	margin: 6px 0 10px;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -.01em;
	background: linear-gradient(180deg, #fff 0%, #ffe08a 58%, var(--jk-gold) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 6px 20px rgba(255, 193, 7, .35));
}

.jk-hero__note {
	display: block;
	max-width: 430px;
	margin-bottom: 24px;
	color: rgba(255, 255, 255, .84);
	font-size: 16px;
}

.jk-hero__cta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* Right-hand ornament — the source shipped a heavy banner plate here. */
.jk-hero__art {
	position: absolute;
	top: 50%;
	right: 70px;
	z-index: 1;
	width: 280px;
	height: 240px;
	transform: translateY(-50%);
	pointer-events: none;
}

.jk-hero__ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 240px;
	height: 240px;
	margin: -120px 0 0 -120px;
	border-radius: 50%;
	border: 1px dashed rgba(255, 255, 255, .34);
	box-shadow: 0 0 70px 14px rgba(255, 255, 255, .12) inset;
}

.jk-hero__glyph {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	transform: translate(-50%, -50%);
	color: #fff;
	filter: drop-shadow(0 12px 32px rgba(255, 255, 255, .35));
}

.jk-hero__glyph::before {
	content: "";
	position: absolute;
	inset: -34px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, .06) 48%, transparent 70%);
}

.jk-hero__glyph .jk-i {
	position: relative;
	stroke-width: 1.7;
}

.jk-hero__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	transform: translateY(-50%);
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	border: 1px solid rgba(255, 255, 255, .32);
	color: #fff;
	backdrop-filter: blur(6px);
	transition: background .18s var(--jk-ease), color .18s var(--jk-ease);
}

.jk-hero__nav:hover {
	background: #fff;
	color: var(--jk-violet);
}

.jk-hero__nav--prev {
	left: 16px;
}

.jk-hero__nav--next {
	right: 16px;
}

.jk-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 3;
	display: flex;
	gap: 7px;
	transform: translateX(-50%);
}

.jk-hero__dots button {
	width: 8px;
	height: 8px;
	padding: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .45);
	transition: width .22s var(--jk-ease), background .22s var(--jk-ease);
}

.jk-hero__dots button.is-active {
	width: 26px;
	border-radius: var(--jk-r-pill);
	background: #fff;
}

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

/* The source centred each title between two hairlines. Kept, tightened. */
.jk-shead {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 20px;
}

.jk-shead::before,
.jk-shead::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--jk-line-2));
}

.jk-shead::after {
	background: linear-gradient(90deg, var(--jk-line-2), transparent);
}

.jk-shead__t {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: none;
	color: var(--jk-purple);
	font-size: 26px;
	font-weight: 500;
	line-height: 1.2;
}

.jk-shead__t .jk-i {
	color: var(--jk-violet);
}

/* --------------------------------------------------------------- tiles */

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

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

.jk-tile {
	position: relative;
	display: block;
	overflow: hidden;
	/* Covers are 256px square. Capping the tile there means the browser only
	   ever downscales them — a wider column would upscale the art and soften
	   it, which is exactly how the source's thumbnails ended up blurry. */
	width: 100%;
	max-width: 256px;
	margin-inline: auto;
	border-radius: var(--jk-r);
	background: var(--jk-surface);
	box-shadow: var(--jk-shadow);
	transition: transform .22s var(--jk-ease), box-shadow .22s var(--jk-ease);
}

.jk-tile__img {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--jk-surface-2);
}

.jk-grid--wide .jk-tile__img {
	aspect-ratio: 16 / 10;
}

/* Covers are 256px square and never render wider than ~240px, so the browser
   only ever downscales them — the source upscaled its thumbnails, which is
   what made them look soft. */
.jk-tile__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s var(--jk-ease);
}

.jk-tile:hover {
	transform: translateY(-6px);
	box-shadow: var(--jk-shadow-md);
}

.jk-tile:hover .jk-tile__img img {
	transform: scale(1.07);
}

.jk-tile__veil {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, rgba(42, 7, 87, .1) 0%, rgba(42, 7, 87, .72) 100%);
	opacity: 0;
	transition: opacity .22s var(--jk-ease);
}

.jk-tile:hover .jk-tile__veil {
	opacity: 1;
}

.jk-tile__play {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 22px;
	border-radius: var(--jk-r-pill);
	background: linear-gradient(135deg, var(--jk-violet-2) 0%, var(--jk-violet) 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	transform: translateY(8px);
	transition: transform .22s var(--jk-ease);
}

.jk-tile:hover .jk-tile__play {
	transform: translateY(0);
}

.jk-tile__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 11px 14px;
}

.jk-tile__name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--jk-ink);
	font-size: 14px;
	font-weight: 500;
}

.jk-tile__prov {
	flex: none;
	color: var(--jk-muted);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.jk-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	padding: 4px 10px;
	border-radius: var(--jk-r-pill);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #fff;
	box-shadow: 0 4px 12px rgba(42, 7, 87, .28);
}

.jk-badge--new {
	background: linear-gradient(135deg, #3fbf3f 0%, var(--jk-green) 100%);
}

.jk-badge--hot {
	background: linear-gradient(135deg, #ff7a3d 0%, #f2402d 100%);
}

.jk-badge--top {
	background: linear-gradient(135deg, #ffd44d 0%, var(--jk-gold) 100%);
	color: #4a3200;
}

.jk-more {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

/* ------------------------------------------------------------ tournament */

.jk-tourn {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 32px;
	padding: 34px 38px;
	border-radius: var(--jk-r-lg);
	color: #fff;
	background:
		radial-gradient(60% 140% at 88% 10%, rgba(173, 0, 255, .55), transparent 62%),
		linear-gradient(125deg, var(--jk-purple-deep) 0%, var(--jk-purple) 55%, #5a1096 100%);
	box-shadow: var(--jk-shadow-lg);
}

.jk-tourn__dates {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	padding: 6px 14px;
	border-radius: var(--jk-r-pill);
	background: rgba(255, 255, 255, .14);
	font-size: 13px;
}

.jk-tourn__dates b {
	font-weight: 600;
}

.jk-tourn__lbl {
	display: block;
	color: rgba(255, 255, 255, .72);
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.jk-tourn__sum {
	display: block;
	margin: 6px 0 18px;
	font-size: 54px;
	font-weight: 700;
	line-height: 1.05;
	font-variant-numeric: tabular-nums;
	background: linear-gradient(180deg, #fff 0%, #ffe08a 60%, var(--jk-gold) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.jk-clock {
	display: flex;
	gap: 10px;
	margin-bottom: 22px;
}

.jk-clock__i {
	min-width: 68px;
	padding: 10px 6px;
	border-radius: var(--jk-r-sm);
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .16);
	text-align: center;
}

.jk-clock__n {
	display: block;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
}

.jk-clock__l {
	display: block;
	color: rgba(255, 255, 255, .66);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.jk-board {
	align-self: center;
	width: 100%;
	border-collapse: collapse;
	border-radius: var(--jk-r-sm);
	overflow: hidden;
	background: rgba(255, 255, 255, .08);
	font-size: 14px;
}

.jk-board th,
.jk-board td {
	padding: 10px 14px;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.jk-board th {
	background: rgba(255, 255, 255, .12);
	font-weight: 600;
	white-space: nowrap;
}

.jk-board tr:last-child td {
	border-bottom: 0;
}

.jk-board td:first-child {
	width: 46px;
	color: var(--jk-gold);
	font-weight: 700;
}

.jk-board td:last-child {
	text-align: right;
	font-weight: 600;
	white-space: nowrap;
}

/* --------------------------------------------------------------- promos */

.jk-promos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.jk-promo {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 210px;
	padding: 22px;
	border-radius: var(--jk-r);
	color: #fff;
	box-shadow: var(--jk-shadow);
	transition: transform .2s var(--jk-ease), box-shadow .2s var(--jk-ease);
}

.jk-promo--a { background: linear-gradient(140deg, #5a1096 0%, var(--jk-violet) 100%); }
.jk-promo--b { background: linear-gradient(140deg, #2a0757 0%, #2f8f18 100%); }
.jk-promo--c { background: linear-gradient(140deg, #3b0a75 0%, #d18a00 100%); }

.jk-promo::after {
	content: "";
	position: absolute;
	right: -30px;
	top: -30px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
}

.jk-promo:hover {
	transform: translateY(-4px);
	box-shadow: var(--jk-shadow-md);
}

.jk-promo__date {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-self: flex-start;
	margin-bottom: auto;
	padding: 5px 12px;
	border-radius: var(--jk-r-pill);
	background: rgba(255, 255, 255, .18);
	font-size: 12px;
}

.jk-promo__t {
	position: relative;
	z-index: 1;
	display: block;
	margin-bottom: 6px;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.25;
}

.jk-promo__s {
	position: relative;
	z-index: 1;
	display: block;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, .8);
	font-size: 14px;
}

.jk-promo__go {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	padding: 9px 18px;
	border-radius: var(--jk-r-pill);
	background: #fff;
	color: var(--jk-violet);
	font-size: 14px;
	font-weight: 600;
}

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

.jk-prov {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.jk-prov__i {
	display: grid;
	place-items: center;
	min-height: 68px;
	padding: 10px 12px;
	border-radius: var(--jk-r-sm);
	background: var(--jk-surface);
	border: 1px solid var(--jk-line);
	color: var(--jk-ink-2);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .03em;
	text-align: center;
	text-transform: uppercase;
	transition: color .18s var(--jk-ease), border-color .18s var(--jk-ease), transform .18s var(--jk-ease), box-shadow .18s var(--jk-ease);
}

.jk-prov__i:hover {
	color: var(--jk-violet);
	border-color: var(--jk-violet);
	transform: translateY(-3px);
	box-shadow: var(--jk-shadow);
}

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

.jk-top {
	display: grid;
	gap: 14px;
}

.jk-top__i {
	display: grid;
	grid-template-columns: 54px 200px 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 16px 20px;
	border-radius: var(--jk-r);
	background: var(--jk-surface);
	border: 1px solid var(--jk-line);
	box-shadow: var(--jk-shadow);
	transition: transform .2s var(--jk-ease), box-shadow .2s var(--jk-ease);
}

.jk-top__i:hover {
	transform: translateY(-3px);
	box-shadow: var(--jk-shadow-md);
}

.jk-top__i--lead {
	border-color: var(--jk-violet);
}

.jk-top__rank {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: var(--jk-surface-2);
	color: var(--jk-violet);
	font-size: 20px;
	font-weight: 700;
}

.jk-top__i--lead .jk-top__rank {
	background: linear-gradient(135deg, var(--jk-violet-2) 0%, var(--jk-violet) 100%);
	color: #fff;
}

.jk-top__brand {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.jk-top__name {
	color: var(--jk-ink);
	font-size: 18px;
	font-weight: 600;
}

.jk-top__rate {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--jk-gold);
	font-size: 14px;
	font-weight: 600;
}

.jk-top__bonus {
	color: var(--jk-muted);
	font-size: 14px;
}

.jk-top__bonus b {
	display: block;
	color: var(--jk-ink);
	font-size: 17px;
	font-weight: 600;
}

.jk-top__cta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 180px;
}

.jk-top__terms {
	color: var(--jk-muted);
	font-size: 11px;
	text-align: center;
}

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

.jk-rev {
	display: grid;
	grid-template-columns: 1fr 330px;
	gap: 26px;
	align-items: start;
}

.jk-rev__card {
	position: sticky;
	top: calc(var(--jk-hdr-h) + 16px);
	padding: 24px;
	border-radius: var(--jk-r);
	background: var(--jk-surface);
	border: 1px solid var(--jk-line);
	box-shadow: var(--jk-shadow-md);
}

.jk-rev__mark {
	display: grid;
	place-items: center;
	padding: 18px 12px;
	margin-bottom: 18px;
	border-radius: var(--jk-r-sm);
	background: linear-gradient(135deg, var(--jk-purple-deep) 0%, var(--jk-purple) 100%);
}

.jk-rev__mark img {
	height: 54px;
	width: auto;
}

.jk-rev__score {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	color: var(--jk-violet);
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
}

.jk-rev__score small {
	color: var(--jk-muted);
	font-size: 15px;
	font-weight: 400;
}

.jk-rev__stars {
	display: flex;
	justify-content: center;
	gap: 3px;
	margin: 8px 0 18px;
	color: var(--jk-gold);
}

.jk-rev__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px solid var(--jk-line);
	font-size: 14px;
}

.jk-rev__row:last-of-type {
	border-bottom: 0;
	margin-bottom: 16px;
}

.jk-rev__row span {
	color: var(--jk-muted);
}

.jk-rev__row b {
	color: var(--jk-ink);
	font-weight: 500;
	text-align: right;
}

.jk-pros {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 26px;
}

.jk-pros__b {
	padding: 20px 22px;
	border-radius: var(--jk-r);
	background: var(--jk-surface);
	border: 1px solid var(--jk-line);
}

.jk-pros__b--plus { border-left: 4px solid var(--jk-green); }
.jk-pros__b--minus { border-left: 4px solid #f2704a; }

.jk-pros__t {
	display: block;
	margin-bottom: 10px;
	color: var(--jk-ink);
	font-size: 16px;
	font-weight: 600;
}

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

.jk-pros__b li {
	position: relative;
	margin-bottom: 7px;
	padding-left: 24px;
	color: var(--jk-ink-2);
	font-size: 15px;
}

.jk-pros__b li::before {
	content: "";
	position: absolute;
	left: 6px;
	top: .62em;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	transform: rotate(45deg);
}

.jk-pros__b--plus li::before { background: var(--jk-green); }
.jk-pros__b--minus li::before { background: #f2704a; }

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

.jk-land {
	position: relative;
	overflow: hidden;
	margin: 24px 0;
	padding: 58px 40px;
	border-radius: var(--jk-r-lg);
	text-align: center;
	color: #fff;
	background:
		radial-gradient(60% 140% at 50% 0%, rgba(173, 0, 255, .55), transparent 64%),
		linear-gradient(150deg, var(--jk-purple-deep) 0%, var(--jk-purple) 55%, #6a1fb5 100%);
	box-shadow: var(--jk-shadow-lg);
}

.jk-land h1 {
	margin: 0 0 12px;
	font-size: 42px;
	font-weight: 500;
	line-height: 1.14;
}

.jk-land__sub {
	max-width: 660px;
	margin: 0 auto 28px;
	color: rgba(255, 255, 255, .84);
	font-size: 18px;
}

.jk-land__cta {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.jk-land__trust {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 28px;
	margin-top: 32px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, .18);
}

.jk-land__trust b {
	display: block;
	color: var(--jk-gold);
	font-size: 24px;
	line-height: 1.2;
}

.jk-land__trust span {
	color: rgba(255, 255, 255, .72);
	font-size: 13px;
}

/* ----------------------------------------------------------- CMS content */

.jk-phead {
	margin-bottom: 20px;
}

.jk-phead h1 {
	margin: 0 0 8px;
	color: var(--jk-purple);
	font-size: 34px;
	font-weight: 500;
	line-height: 1.2;
}

.jk-phead p {
	margin: 0;
	color: var(--jk-muted);
	font-size: 17px;
}

.jk-copy {
	padding: 30px 34px;
	border-radius: var(--jk-r);
	background: var(--jk-surface);
	border: 1px solid var(--jk-line);
	box-shadow: var(--jk-shadow);
}

.jk-content {
	color: var(--jk-ink-2);
	font-size: 16px;
	line-height: 1.75;
}

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

.jk-content h2,
.jk-content h3,
.jk-content h4 {
	color: var(--jk-ink);
	line-height: 1.28;
	margin: 32px 0 12px;
	font-weight: 500;
}

.jk-content h2 { font-size: 26px; }
.jk-content h3 { font-size: 21px; }
.jk-content h4 { font-size: 18px; }

.jk-content p {
	margin: 0 0 16px;
}

.jk-content a {
	color: var(--jk-violet);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.jk-content a:hover {
	color: var(--jk-purple);
}

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

.jk-content li {
	margin-bottom: 8px;
}

.jk-content ul {
	list-style: none;
	padding-left: 0;
}

.jk-content ul li {
	position: relative;
	padding-left: 26px;
}

.jk-content ul li::before {
	content: "";
	position: absolute;
	left: 8px;
	top: .66em;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	background: var(--jk-violet);
	transform: rotate(45deg);
}

/* Editorial images render at a fixed 812px — the width content is prepared at
   — and shrink with the column once it is narrower than that, so no viewport
   ever overflows. height:auto keeps the aspect ratio at every size. */
.jk-content img {
	display: block;
	width: min(812px, 100%);
	height: auto;
	margin: 22px auto;
	border-radius: var(--jk-r-sm);
}

.jk-content blockquote {
	margin: 22px 0;
	padding: 16px 22px;
	border-left: 4px solid var(--jk-violet);
	border-radius: 0 var(--jk-r-sm) var(--jk-r-sm) 0;
	background: var(--jk-surface-2);
	color: var(--jk-ink);
}

.jk-content blockquote p:last-child {
	margin-bottom: 0;
}

.jk-tscroll {
	overflow-x: auto;
	margin: 0 0 20px;
	border-radius: var(--jk-r-sm);
	border: 1px solid var(--jk-line);
}

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

.jk-content th,
.jk-content td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--jk-line);
}

.jk-content th {
	background: var(--jk-surface-2);
	color: var(--jk-ink);
	font-weight: 600;
	white-space: nowrap;
}

.jk-content tbody tr:last-child td {
	border-bottom: 0;
}

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

.jk-foot {
	margin-top: 34px;
	padding-top: 40px;
	color: rgba(255, 255, 255, .8);
	background:
		radial-gradient(70% 160% at 12% 0%, rgba(173, 0, 255, .3), transparent 60%),
		linear-gradient(180deg, var(--jk-purple) 0%, var(--jk-purple-deep) 100%);
}

.jk-foot__in {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 30px;
	max-width: var(--jk-wrap);
	margin: 0 auto;
	padding: 0 16px 32px;
}

.jk-foot__brand img {
	height: 48px;
	width: auto;
	margin-bottom: 16px;
}

.jk-foot__help {
	display: block;
	margin-bottom: 10px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
}

.jk-foot__mail {
	display: inline-block;
	margin-bottom: 6px;
	color: var(--jk-gold);
	font-size: 15px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.jk-foot__sub {
	display: block;
	color: rgba(255, 255, 255, .6);
	font-size: 14px;
}

.jk-foot__ct {
	display: block;
	margin-bottom: 12px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.jk-foot__col a {
	display: block;
	padding: 5px 0;
	color: rgba(255, 255, 255, .78);
	font-size: 15px;
	transition: color .18s var(--jk-ease), transform .18s var(--jk-ease);
}

.jk-foot__col a:hover {
	color: var(--jk-gold);
	transform: translateX(3px);
}

.jk-foot__age {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-top: 14px;
	border-radius: 50%;
	border: 2px solid var(--jk-gold);
	color: var(--jk-gold);
	font-size: 13px;
	font-weight: 700;
}

.jk-foot__legal {
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.jk-foot__legal div {
	max-width: var(--jk-wrap);
	margin: 0 auto;
	padding: 20px 16px 28px;
}

.jk-foot__legal p {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, .58);
	font-size: 13px;
	line-height: 1.6;
}

.jk-foot__legal p:last-child {
	margin-bottom: 0;
}

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

@media (max-width: 1100px) {
	.jk-hdr__nav {
		display: none;
	}

	.jk-hero__slide {
		padding: 36px 44px;
	}

	.jk-hero__art {
		right: 24px;
		transform: translateY(-50%) scale(.84);
	}

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

	.jk-grid--wide {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.jk-tourn {
		grid-template-columns: 1fr;
		gap: 24px;
	}

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

	.jk-rev__card {
		position: static;
	}

	.jk-foot__in {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 900px) {
	.jk-hdr__logo {
		position: static;
		transform: none;
	}

	.jk-tabs {
		flex-wrap: wrap;
	}

	.jk-search {
		flex: 1 1 100%;
		margin-left: 0;
	}

	.jk-hero__slide {
		padding: 30px 24px 46px;
		min-height: 0;
	}

	.jk-hero__art,
	.jk-hero__nav {
		display: none;
	}

	.jk-hero__sum {
		font-size: 44px;
	}

	.jk-hero__ttl {
		font-size: 24px;
	}

	.jk-grid,
	.jk-grid--wide {
		grid-template-columns: repeat(3, 1fr);
	}

	.jk-promos {
		grid-template-columns: 1fr;
	}

	.jk-tourn {
		padding: 26px 22px;
	}

	.jk-tourn__sum {
		font-size: 40px;
	}

	.jk-top__i {
		grid-template-columns: 44px 1fr;
		grid-template-areas:
			"rank brand"
			"bonus bonus"
			"cta cta";
		gap: 12px;
	}

	.jk-top__rank { grid-area: rank; }
	.jk-top__brand { grid-area: brand; }
	.jk-top__bonus { grid-area: bonus; }
	.jk-top__cta { grid-area: cta; }

	.jk-pros {
		grid-template-columns: 1fr;
	}

	.jk-land {
		padding: 40px 22px;
	}

	.jk-land h1 {
		font-size: 32px;
	}
}

@media (max-width: 600px) {
	.jk-hdr__auth .jk-btn--ghost {
		display: none;
	}

	.jk-hdr__logo img {
		height: 38px;
	}

	.jk-grid,
	.jk-grid--wide {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

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

	.jk-shead__t {
		font-size: 21px;
	}

	.jk-clock__i {
		min-width: 0;
		flex: 1;
	}

	.jk-copy {
		padding: 22px 18px;
	}

	.jk-phead h1 {
		font-size: 26px;
	}

	.jk-foot__in {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
}

/* ------------------------------------------- site-local (podkova.org, ru-UA)

   The Russian header labels are wider than the Ukrainian ones in master
   template 46, so between 1100px and ~1180px the third nav cluster ran under
   the centred wordmark. Hand the nav over to the burger a little earlier; the
   drawer carries the same entries. Site-local — a redeploy drops this block.  */
@media (max-width: 1180px) {
	.jk-hdr__nav {
		display: none;
	}
}
