/* =========================================================================
   2k_1 — template 41. Cloned from our own 2K property (2k.ua).

   Tokens lifted from the source stylesheet, kept under the same names:
     layer-bg   #151718   app surface
     layer-01   #1a1d1e   rail, panels, chips
     layer-02   #26292b   cards, tiles
     layer-03   #202425   inset boxes (licence notes)
     border-00  #2b2f31   hairlines
     border-02  #313538   raised hairlines
     violet-500 #6800d6   primary CTA
     violet-400 #8929ef   CTA gradient partner
     violet-300 #a056f0   accent text and icons
     violet-600 #5200aa   pressed state
     magenta    #ce46f0   brand-accent gradient inside colour
     orange-600 #d2601e   the one non-violet rail tile
     text       #fff / #9ba1a6 (secondary) / #72787e (tertiary)
   Type: Dela Gothic One for the wordmark and the short display lines on
   coloured panels, Mulish for everything else — the source's pairing. Reading
   headings (page head + article body) use Mulish 800 instead: Dela is a
   single-weight ultra-black face and its Cyrillic counters close up at
   heading sizes, so long titles read as one solid block.

   Layout: fixed left rail + top bar app shell. The rail becomes a drawer
   under 1100px, matching the source's mobile behaviour.
   ========================================================================= */

:root {
	--k2-bg: #151718;
	--k2-l1: #1a1d1e;
	--k2-l2: #26292b;
	--k2-l3: #202425;
	--k2-line: #2b2f31;
	--k2-line-2: #313538;
	--k2-violet: #6800d6;
	--k2-violet-400: #8929ef;
	--k2-violet-hi: #a056f0;
	--k2-violet-lo: #5200aa;
	--k2-magenta: #ce46f0;
	--k2-orange: #d2601e;
	--k2-text: #fff;
	--k2-text-2: #9ba1a6;
	--k2-text-3: #72787e;
	--k2-rail: 218px;
	--k2-top: 60px;
	--k2-inner: 1280px;
	--k2-media: 812px;
	--k2-gamegap: 10px;
	--k2-gameh: 178px;
	--k2-grad: linear-gradient(93deg, #6800d6 0%, #8929ef 55%, #a056f0 100%);
	--k2-font-display: 'Dela Gothic One', 'Mulish', sans-serif;
	--k2-font-head: 'Mulish', -apple-system, 'Segoe UI', Arial, sans-serif;
}

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

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

body {
	margin: 0;
	background: var(--k2-bg);
	color: var(--k2-text);
	font: 400 15px/1.6 'Mulish', -apple-system, 'Segoe UI', Arial, sans-serif;
	overflow-x: hidden;
}

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

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

.k2-i {
	flex: 0 0 auto;
}

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

.k2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 9px 20px;
	border: 0;
	border-radius: 12px;
	background: var(--k2-l2);
	color: var(--k2-text);
	font-size: 14px;
	font-weight: 800;
	text-align: center;
	cursor: pointer;
	transition: filter .2s, background-color .2s;
}

.k2-btn--primary {
	background: var(--k2-grad);
}

.k2-btn--primary:hover {
	filter: brightness(1.12);
}

.k2-btn--ghost {
	background: var(--k2-l2);
}

.k2-btn--ghost:hover {
	background: var(--k2-line-2);
}

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

.k2-btn--lg {
	min-height: 50px;
	padding: 14px 34px;
	font-size: 16px;
	border-radius: 14px;
}

/* --- top bar ------------------------------------------------------------ */

.k2-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 40;
	height: var(--k2-top);
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--k2-bg);
}

.k2-logo {
	width: calc(var(--k2-rail) - 20px);
	font-family: var(--k2-font-display);
	font-size: 30px;
	line-height: 1;
	letter-spacing: -1px;
}

.k2-logo__b {
	background: linear-gradient(180deg, var(--k2-magenta), var(--k2-violet));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.k2-apppill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 auto;
	padding: 7px 14px;
	border-radius: 999px;
	background: var(--k2-l2);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.k2-apppill__sep {
	width: 1px;
	height: 16px;
	background: var(--k2-line-2);
}

.k2-apppill--rail {
	margin: 18px 0 6px;
	justify-content: center;
	width: 100%;
	font-size: 12px;
}

.k2-top__auth {
	display: flex;
	align-items: center;
	gap: 10px;
}

.k2-top__auth .k2-btn {
	border-radius: 999px;
	min-height: 36px;
	padding: 8px 22px;
}

/* --- burger + dim ------------------------------------------------------- */

.k2-burger {
	display: none;
	width: 36px;
	height: 36px;
	padding: 9px 7px;
	border: 0;
	border-radius: 10px;
	background: var(--k2-l2);
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
}

.k2-burger span {
	display: block;
	height: 2px;
	background: var(--k2-text);
	transition: transform .25s, opacity .2s;
}

.k2-burger.is-on span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.k2-burger.is-on span:nth-child(2) {
	opacity: 0;
}

.k2-burger.is-on span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.k2-dim {
	position: fixed;
	inset: 0;
	z-index: 44;
	background: rgba(0, 0, 0, .6);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s, visibility .25s;
}

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

/* --- left rail ---------------------------------------------------------- */

.k2-rail {
	position: fixed;
	top: var(--k2-top);
	left: 0;
	bottom: 0;
	z-index: 45;
	width: var(--k2-rail);
	padding: 12px 12px 24px;
	background: var(--k2-l1);
	border-radius: 0 16px 0 0;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--k2-line-2) transparent;
}

.k2-rail::-webkit-scrollbar {
	width: 6px;
}

.k2-rail::-webkit-scrollbar-thumb {
	background: var(--k2-line-2);
	border-radius: 3px;
}

.k2-rail__promos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 14px;
}

.k2-promo {
	position: relative;
	display: block;
	height: 60px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--k2-violet-lo);
}

/* The promo art ships without baked-in text (the source's narrow-tile variant),
   so it sits right-anchored and the label rides over the left half. */
.k2-promo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
}

.k2-promo__txt {
	position: relative;
	display: block;
	width: 62%;
	padding: 9px 0 0 9px;
	font-size: 9.5px;
	font-weight: 800;
	line-height: 1.2;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .75);
}

.k2-railgrp {
	margin-bottom: 6px;
}

.k2-raillink {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 10px;
	border-radius: 10px;
	color: var(--k2-text-2);
	font-size: 13px;
	font-weight: 700;
	transition: background-color .2s, color .2s;
}

.k2-raillink:hover {
	background: var(--k2-l2);
	color: var(--k2-text);
}

.k2-raillink--drop {
	justify-content: space-between;
}

.k2-railtiles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
	padding: 6px;
	border-radius: 12px;
	background: var(--k2-l2);
}

.k2-railtile img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 6px;
}

.k2-rail__sep {
	height: 1px;
	margin: 12px 4px;
	background: var(--k2-line);
}

/* --- main column -------------------------------------------------------- */

.k2-main {
	margin-left: var(--k2-rail);
	padding: calc(var(--k2-top) + 14px) 20px 0;
	min-height: 100vh;
}

/* Everything the page types emit sits in one centred column; the footer is
   the only full-bleed band, and it centres its own rows to the same measure. */
.k2-inner {
	max-width: var(--k2-inner);
	margin: 0 auto;
}

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

.k2-stitle {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 16px;
}

.k2-stitle__ico {
	display: inline-flex;
	color: var(--k2-violet-hi);
}

.k2-stitle__lbl {
	font-size: 17px;
	font-weight: 800;
}

.k2-stitle__arrows {
	margin-left: auto;
	display: flex;
	gap: 8px;
}

.k2-arr {
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: var(--k2-l2);
	color: var(--k2-text-2);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background-color .2s, color .2s;
}

.k2-arr:hover {
	background: var(--k2-line-2);
	color: var(--k2-text);
}

/* --- promo banners ------------------------------------------------------ */

/* Desktop scrolls these rails with the overlay buttons only — they surface on
   hover (or keyboard focus) and hide again at the end of their travel. Touch
   keeps its native swipe, so the buttons stay out of the way there. */
.k2-hrail {
	position: relative;
}

.k2-hrail__arr {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	background: rgba(21, 23, 24, .72);
	color: #fff;
	backdrop-filter: blur(4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s, background-color .2s;
}

.k2-hrail:hover .k2-hrail__arr,
.k2-hrail__arr:focus-visible {
	opacity: 1;
	pointer-events: auto;
}

/* At either end there is nothing left to reveal, so the button stays hidden
   even while the rail is hovered. */
.k2-hrail .k2-hrail__arr.is-off {
	opacity: 0;
	pointer-events: none;
}

.k2-hrail__arr:hover {
	background: rgba(21, 23, 24, .92);
	color: #fff;
}

.k2-hrail__arr--prev {
	left: 12px;
}

.k2-hrail__arr--next {
	right: 12px;
}

/* The chip row is short, so its buttons shrink and hug the edges. */
.k2-hrail--chips {
	margin-bottom: 26px;
}

.k2-hrail--chips .k2-chips {
	margin-bottom: 0;
}

.k2-hrail--chips .k2-hrail__arr {
	width: 34px;
	height: 34px;
	font-size: 16px;
}

.k2-hrail--chips .k2-hrail__arr--prev {
	left: 0;
}

.k2-hrail--chips .k2-hrail__arr--next {
	right: 0;
}

.k2-banners {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(420px, 1fr);
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 6px;
	margin-bottom: 22px;
	scrollbar-width: none;
}

.k2-banners::-webkit-scrollbar {
	display: none;
}

.k2-banner {
	position: relative;
	scroll-snap-align: start;
	display: block;
	padding: 26px 28px;
	min-height: 210px;
	border-radius: 16px;
	overflow: hidden;
	background:
		radial-gradient(120% 140% at 88% 20%, rgba(206, 70, 240, .55) 0%, rgba(206, 70, 240, 0) 55%),
		linear-gradient(115deg, #2a0a4d 0%, #4c00a3 48%, #8929ef 100%);
}

.k2-banner--b {
	background:
		radial-gradient(120% 140% at 85% 15%, rgba(160, 86, 240, .55) 0%, rgba(160, 86, 240, 0) 55%),
		linear-gradient(115deg, #16203f 0%, #3a1180 55%, #6800d6 100%);
}

.k2-banner--c {
	background:
		radial-gradient(120% 140% at 90% 25%, rgba(255, 110, 66, .35) 0%, rgba(255, 110, 66, 0) 55%),
		linear-gradient(115deg, #240a3d 0%, #5200aa 50%, #ce46f0 100%);
}

.k2-banner__kick {
	position: relative;
	display: block;
	font-family: var(--k2-font-display);
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .4px;
}

.k2-banner__head {
	position: relative;
	display: block;
	margin: 10px 0 4px;
	font-family: var(--k2-font-display);
	font-size: 34px;
	line-height: 1.1;
}

.k2-banner__sub {
	position: relative;
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: rgba(255, 255, 255, .82);
}

.k2-banner__cta {
	position: relative;
	margin-top: 18px;
}

/* Corner motif for the promo panels — concentric rings behind a soft bloom.
   Abstract on purpose: the panels carry no wordmark of their own. */
.k2-deco {
	position: absolute;
	right: -70px;
	bottom: -90px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background:
		repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .13) 0 1px, rgba(255, 255, 255, 0) 1px 26px),
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 62%);
	pointer-events: none;
}

.k2-deco::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 74px;
	height: 74px;
	transform: translate(-50%, -50%) rotate(45deg);
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .06));
}

.k2-deco--lg {
	right: -90px;
	bottom: -130px;
	width: 380px;
	height: 380px;
}

.k2-deco--lg::after {
	width: 108px;
	height: 108px;
	border-radius: 32px;
}

/* --- category chips ----------------------------------------------------- */

.k2-chips {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 8px;
	margin-bottom: 26px;
	scrollbar-width: none;
}

.k2-chips::-webkit-scrollbar {
	display: none;
}

.k2-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 15px;
	border-radius: 12px;
	background: var(--k2-l2);
	color: var(--k2-text-2);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	transition: background-color .2s, color .2s;
}

.k2-chip:hover,
.k2-chip.is-on {
	background: var(--k2-line-2);
	color: var(--k2-text);
}

.k2-chip.is-on .k2-i {
	color: var(--k2-violet-hi);
}

/* --- operator cards ----------------------------------------------------- */

.k2-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
	gap: 16px;
}

.k2-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 14px;
	border-radius: 16px;
	background: var(--k2-l2);
}

.k2-card__rate {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	align-self: flex-start;
	padding: 4px 9px;
	border-radius: 8px;
	background: var(--k2-l3);
	color: var(--k2-text-2);
	font-size: 12px;
	font-weight: 800;
}

.k2-card__rate .k2-i {
	color: var(--k2-text-2);
}

.k2-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 74px;
	margin: 6px 0 14px;
}

.k2-card__logo img {
	max-height: 46px;
	width: auto;
	object-fit: contain;
}

.k2-card__offer {
	display: block;
	min-height: 60px;
	margin-bottom: 14px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
}

.k2-card__specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 12px;
	margin: 14px 0 12px;
}

.k2-spec {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 6px;
	padding: 6px 0;
	border-bottom: 1px solid var(--k2-line);
	font-size: 11px;
}

.k2-spec__k {
	color: var(--k2-text-3);
}

.k2-spec__v {
	font-weight: 800;
}

.k2-card__lic {
	display: block;
	padding: 8px 10px;
	border-radius: 8px;
	background: var(--k2-l3);
	color: var(--k2-text-3);
	font-size: 10px;
	line-height: 1.45;
}

/* --- provider wall ------------------------------------------------------ */

/* Eight marks land in one clean row at the template's full width. */
.k2-provs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
	gap: 16px;
}

.k2-prov {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	height: 118px;
	padding: 18px;
	border: 1px solid transparent;
	border-radius: 16px;
	overflow: hidden;
	background: var(--k2-l2);
	transition: transform .2s, border-color .2s, box-shadow .2s;
}

/* Violet bloom that only shows on hover, behind the mark. */
.k2-prov::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(80% 120% at 50% 0%, rgba(160, 86, 240, .35) 0%, rgba(160, 86, 240, 0) 65%);
	opacity: 0;
	transition: opacity .25s;
}

.k2-prov:hover {
	transform: translateY(-3px);
	border-color: var(--k2-violet-400);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
}

.k2-prov:hover::before {
	opacity: 1;
}

.k2-prov__logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
}

.k2-prov__logo img {
	max-height: 40px;
	width: auto;
	object-fit: contain;
}

.k2-prov__count {
	position: relative;
	font-size: 12px;
	font-weight: 700;
	color: var(--k2-text-3);
	transition: color .2s;
}

.k2-prov:hover .k2-prov__count {
	color: var(--k2-violet-hi);
}

/* --- recent wins -------------------------------------------------------- */

/* Three per row, so six entries fill two rows without a ragged tail. */
.k2-wins {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	gap: 12px;
}

.k2-win {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px 12px 12px;
	border-radius: 14px;
	background: linear-gradient(100deg, var(--k2-l2) 0%, var(--k2-l2) 62%, rgba(105, 0, 214, .28) 100%);
	transition: transform .2s, box-shadow .2s;
}

.k2-win:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(0, 0, 0, .4);
}

.k2-win img {
	width: 52px;
	height: 52px;
	flex: 0 0 auto;
	border-radius: 10px;
	object-fit: cover;
}

.k2-win__meta {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.k2-win__id {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .4px;
	color: var(--k2-text-3);
}

.k2-win__game {
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.k2-win__sum {
	margin-left: auto;
	padding-left: 10px;
	font-size: 15px;
	font-weight: 900;
	color: var(--k2-violet-hi);
	white-space: nowrap;
}

/* --- game rails --------------------------------------------------------- */

/* Eight tiles fill the template width exactly — the column is computed from
   the container rather than fixed, so a row never ends on a clipped tile.
   The rail still scrolls (and the section arrows still drive it) for whatever
   sits past the eighth tile. */
.k2-games {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 7 * var(--k2-gamegap)) / 8);
	gap: var(--k2-gamegap);
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	padding-bottom: 6px;
	scrollbar-width: none;
}

.k2-games::-webkit-scrollbar {
	display: none;
}

.k2-games--two {
	grid-template-rows: repeat(2, auto);
	grid-auto-flow: column;
}

.k2-game {
	position: relative;
	scroll-snap-align: start;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	background: var(--k2-l2);
}

.k2-game img {
	width: 100%;
	height: var(--k2-gameh);
	object-fit: cover;
}

.k2-game__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(21, 23, 24, .66);
	color: #fff;
	opacity: 0;
	transition: opacity .2s;
}

.k2-game:hover .k2-game__play {
	opacity: 1;
}

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

.k2-hero {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 26px 28px;
	margin-bottom: 30px;
	border-radius: 16px;
	background:
		radial-gradient(90% 160% at 92% 10%, rgba(160, 86, 240, .45) 0%, rgba(160, 86, 240, 0) 60%),
		var(--k2-l2);
}

.k2-hero__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 190px;
	height: 118px;
	border-radius: 14px;
	background: var(--k2-l3);
}

.k2-hero__logo img {
	max-height: 56px;
	width: auto;
	object-fit: contain;
}

.k2-hero__body {
	flex: 1 1 auto;
}

.k2-hero__rate {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
	font-size: 19px;
	font-weight: 900;
}

.k2-hero__rate .k2-i {
	color: var(--k2-violet-hi);
}

.k2-hero__rate i {
	font-style: normal;
	font-size: 14px;
	font-weight: 700;
	color: var(--k2-text-3);
}

.k2-hero__act {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

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

.k2-promo-hero {
	position: relative;
	display: flex;
	align-items: center;
	padding: 46px 40px;
	margin-bottom: 30px;
	border-radius: 16px;
	overflow: hidden;
	background:
		radial-gradient(110% 150% at 88% 18%, rgba(206, 70, 240, .5) 0%, rgba(206, 70, 240, 0) 58%),
		linear-gradient(115deg, #23073f 0%, #4c00a3 50%, #8929ef 100%);
}

.k2-promo-hero__kick {
	display: block;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .78);
}

/* The landing hero carries the page's H1, so it follows the reading headings
   rather than the display lines around it. */
.k2-promo-hero__h {
	display: block;
	max-width: 640px;
	font-family: var(--k2-font-head);
	font-size: 43px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.6px;
}

.k2-promo-hero__sub {
	margin: 16px 0 0;
	max-width: 560px;
	font-size: 16px;
	color: rgba(255, 255, 255, .84);
}

.k2-promo-hero .k2-btn {
	margin-top: 26px;
}

/* --- page head + content ------------------------------------------------ */

.k2-phead h1 {
	margin: 0;
	font-family: var(--k2-font-head);
	font-size: 31px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.2px;
}

.k2-phead p {
	margin: 12px 0 0;
	font-size: 15px;
	color: var(--k2-text-2);
}

.k2-phead--top {
	margin-bottom: 26px;
}

/* Two-up split, used by the review facts/scores pair. */
.k2-cols {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.k2-content {
	margin-top: 22px;
	font-size: 15px;
	line-height: 1.75;
	color: var(--k2-text-2);
}

/* Copy runs the full template width; only inserted media keeps a cap, so the
   wrapper exists purely to group the page head with its body. */
.k2-copy {
	max-width: 100%;
}

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

.k2-content h1,
.k2-content h2,
.k2-content h3,
.k2-content h4 {
	color: var(--k2-text);
	font-family: var(--k2-font-head);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -.2px;
}

.k2-content h1 {
	margin: 0 0 18px;
	font-size: 31px;
}

.k2-content h2 {
	margin: 34px 0 14px;
	font-size: 24px;
}

.k2-content h3 {
	margin: 26px 0 12px;
	font-size: 19px;
}

.k2-content h4 {
	margin: 22px 0 10px;
	font-size: 17px;
}

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

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

.k2-content a:hover {
	color: var(--k2-magenta);
}

.k2-content strong,
.k2-content b {
	color: var(--k2-text);
}

.k2-content ul,
.k2-content ol {
	margin: 0 0 18px;
	padding: 0 0 0 20px;
}

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

.k2-content ul li {
	position: relative;
	padding: 0 0 9px 20px;
}

.k2-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--k2-violet-hi);
}

.k2-content ol li {
	padding: 0 0 9px 2px;
}

.k2-content ol li::marker {
	color: var(--k2-violet-hi);
	font-weight: 800;
}

.k2-content blockquote {
	margin: 22px 0;
	padding: 14px 18px;
	border-left: 3px solid var(--k2-violet);
	border-radius: 0 12px 12px 0;
	background: var(--k2-l2);
}

/* CMS-inserted media: centred, never wider than 812px, and shrinking with the
   column on narrow screens. `width: auto` keeps an oversized `width` attribute
   on the tag from beating the cap. */
.k2-content img,
.k2-content video,
.k2-content iframe {
	display: block;
	width: auto;
	max-width: min(100%, var(--k2-media));
	height: auto;
	margin: 22px auto;
	border-radius: 12px;
}

.k2-content figure {
	max-width: min(100%, var(--k2-media));
	margin: 22px auto;
	text-align: center;
}

.k2-content figure img {
	margin: 0 auto;
}

.k2-content figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: var(--k2-text-3);
}

.k2-tscroll {
	overflow-x: auto;
	margin: 22px 0;
	border-radius: 12px;
	-webkit-overflow-scrolling: touch;
}

.k2-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	background: var(--k2-l2);
}

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

.k2-content thead th {
	background: var(--k2-l3);
	color: var(--k2-text);
	font-weight: 800;
}

/* --- review facts + scores ---------------------------------------------- */

.k2-facts {
	border-radius: 16px;
	background: var(--k2-l2);
	padding: 6px 18px;
}

.k2-fact {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--k2-line);
	font-size: 14px;
}

.k2-fact:last-child {
	border-bottom: 0;
}

.k2-fact__k {
	color: var(--k2-text-3);
}

.k2-fact__v {
	font-weight: 800;
	text-align: right;
}

.k2-scores {
	padding: 20px 22px;
	border-radius: 16px;
	background: var(--k2-l2);
}

.k2-scores__total {
	display: block;
	margin-bottom: 18px;
	font-size: 15px;
	font-weight: 700;
	color: var(--k2-text-3);
}

.k2-scores__total b {
	font-family: var(--k2-font-display);
	font-size: 40px;
	color: var(--k2-text);
	line-height: 1;
}

.k2-score {
	display: grid;
	grid-template-columns: 165px minmax(0, 1fr) 34px;
	align-items: center;
	gap: 14px;
	padding: 8px 0;
	font-size: 13px;
}

.k2-score__k {
	color: var(--k2-text-2);
}

.k2-score__bar {
	display: block;
	height: 6px;
	border-radius: 3px;
	background: var(--k2-l3);
	overflow: hidden;
}

.k2-score__bar i {
	display: block;
	height: 100%;
	background: var(--k2-grad);
}

.k2-score__v {
	font-weight: 800;
	text-align: right;
}

/* --- closing CTA -------------------------------------------------------- */

.k2-cta {
	padding: 40px 34px;
	margin-bottom: 34px;
	border-radius: 16px;
	text-align: center;
	background:
		radial-gradient(80% 160% at 50% 0%, rgba(105, 0, 214, .55) 0%, rgba(105, 0, 214, 0) 65%),
		var(--k2-l2);
}

.k2-cta__h {
	display: block;
	font-family: var(--k2-font-display);
	font-size: 28px;
	line-height: 1.2;
}

.k2-cta p {
	margin: 14px auto 24px;
	max-width: 560px;
	font-size: 15px;
	color: var(--k2-text-2);
}

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

.k2-foot {
	position: relative;
	margin: 46px -20px 0;
	padding: 34px 20px 40px;
	border-radius: 24px 24px 0 0;
	background:
		radial-gradient(70% 120% at 50% 0%, rgba(105, 0, 214, .28) 0%, rgba(105, 0, 214, 0) 62%),
		var(--k2-l1);
}

/* Hairline of brand colour along the top edge of the band. */
.k2-foot::before {
	content: '';
	position: absolute;
	top: 0;
	left: 12%;
	right: 12%;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, var(--k2-violet-hi), var(--k2-magenta), transparent);
}

.k2-foot__band,
.k2-foot__provs,
.k2-foot__cols,
.k2-foot__meta {
	max-width: var(--k2-inner);
	margin-left: auto;
	margin-right: auto;
}

.k2-foot__band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 18px;
	padding: 22px 26px;
	margin-bottom: 26px;
	border-radius: 16px;
	background:
		radial-gradient(90% 180% at 88% 12%, rgba(206, 70, 240, .38) 0%, rgba(206, 70, 240, 0) 60%),
		linear-gradient(110deg, #23073f 0%, #4c00a3 60%, #6800d6 100%);
}

.k2-foot__brand {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.k2-logo--foot {
	width: auto;
	font-size: 34px;
}

.k2-foot__claim {
	font-size: 15px;
	font-weight: 700;
	color: rgba(255, 255, 255, .88);
}

.k2-foot__apps {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.k2-foot__app {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(21, 23, 24, .5);
	font-size: 13px;
	font-weight: 800;
	transition: background-color .2s;
}

.k2-foot__app:hover {
	background: rgba(21, 23, 24, .8);
}

.k2-foot__provs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--k2-line);
}

.k2-foot__prov {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 116px;
	height: 46px;
	padding: 8px;
	border-radius: 10px;
	background: var(--k2-l2);
}

.k2-foot__prov img {
	max-height: 26px;
	width: auto;
	object-fit: contain;
}

.k2-foot__cols {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	gap: 30px;
	padding: 28px 0;
}

.k2-foot__coltl {
	display: block;
	margin-bottom: 14px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--k2-violet-hi);
}

.k2-foot__col a {
	display: block;
	padding: 5px 0;
	font-size: 14px;
	color: var(--k2-text-2);
	transition: color .2s;
}

.k2-foot__col a:hover {
	color: var(--k2-text);
}

.k2-foot__col--wide p {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.7;
	color: var(--k2-text-3);
}

.k2-foot__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	padding-top: 22px;
	border-top: 1px solid var(--k2-line);
	font-size: 13px;
	color: var(--k2-text-3);
}

.k2-foot__age {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--k2-violet-lo);
	border-radius: 50%;
	color: var(--k2-text-2);
	font-weight: 800;
}

.k2-foot__marks {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.k2-foot__mark {
	padding: 6px 12px;
	border: 1px solid var(--k2-line-2);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: var(--k2-text-2);
}

.k2-foot__copy {
	margin-left: auto;
}

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

@media screen and (max-width: 1100px) {
	.k2-rail {
		transform: translateX(-100%);
		transition: transform .28s ease;
		border-radius: 0;
		width: 260px;
	}

	.k2-rail.is-on {
		transform: none;
	}

	.k2-main {
		margin-left: 0;
	}

	.k2-burger {
		display: flex;
	}

	.k2-logo {
		width: auto;
	}

	.k2-apppill {
		display: none;
	}

	.k2-apppill--rail {
		display: inline-flex;
	}
}

@media screen and (max-width: 760px) {
	.k2-top {
		padding: 0 14px;
		gap: 10px;
	}

	.k2-top__auth .k2-btn {
		padding: 8px 14px;
		font-size: 13px;
	}

	.k2-main {
		padding-left: 14px;
		padding-right: 14px;
	}

	.k2-foot {
		margin-left: -14px;
		margin-right: -14px;
		padding-left: 14px;
		padding-right: 14px;
	}

	.k2-foot__band {
		padding: 18px;
	}

	.k2-foot__copy {
		margin-left: 0;
	}

	.k2-banners {
		grid-auto-columns: minmax(280px, 1fr);
	}

	.k2-banner {
		min-height: 178px;
		padding: 20px;
	}

	.k2-banner__head {
		font-size: 27px;
	}

	.k2-cards {
		grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
		gap: 12px;
	}

	.k2-card__specs {
		grid-template-columns: 1fr;
	}

	/* Touch scrolls these rails natively — the overlay buttons would only sit
	   on top of the artwork. */
	.k2-hrail__arr {
		display: none;
	}

	.k2-games {
		grid-auto-columns: calc((100% - 3 * var(--k2-gamegap)) / 4);
	}

	.k2-hero {
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding: 20px;
	}

	.k2-hero__logo {
		width: 100%;
		height: 96px;
	}

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

	.k2-phead h1 {
		font-size: 24px;
	}

	.k2-promo-hero {
		padding: 30px 20px;
	}

	.k2-promo-hero__h {
		font-size: 30px;
	}

	.k2-deco {
		width: 190px;
		height: 190px;
		right: -60px;
		bottom: -70px;
	}

	.k2-deco--lg {
		width: 240px;
		height: 240px;
		right: -70px;
		bottom: -90px;
	}

	.k2-content h1 {
		font-size: 24px;
	}

	.k2-content h2 {
		font-size: 20px;
	}

	.k2-score {
		grid-template-columns: minmax(0, 1fr) 34px;
	}

	.k2-score__bar {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.k2-foot__cols {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.k2-cta {
		padding: 30px 20px;
	}

	.k2-cta__h {
		font-size: 22px;
	}
}

@media screen and (max-width: 420px) {
	.k2-games {
		grid-auto-columns: calc((100% - 2 * var(--k2-gamegap)) / 3);
	}

	.k2-provs {
		grid-template-columns: 1fr 1fr;
	}
}
