/**
 * vipcasino_01_vst — template 62.
 *
 * Near-black page, flat dark plates, 4px corners and one warm gold accent.
 * Font files sit beside this stylesheet, so the @font-face urls stay relative:
 * they resolve both in the preview tool and under /assets/css on a live site.
 */

@font-face {
	font-family: 'Google Sans';
	src: url('gs-cyr-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Google Sans';
	src: url('gs-lat-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Google Sans';
	src: url('gs-cyr-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Google Sans';
	src: url('gs-lat-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Google Sans';
	src: url('gs-cyr-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Google Sans';
	src: url('gs-lat-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg: #0f1012;
	--panel: #15161a;
	--panel-2: #202126;
	--surface: #2a2d33;
	--line: #34373f;
	--gold: #fde292;
	--gold-2: #fcdb77;
	--gold-dim: #d0b771;
	--gold-deep: #c09e41;
	--text: #e7e8ec;
	--muted: #a7aebe;
	--on-gold: #110f08;
	--green: #43c65b;
	--radius: 4px;
	--radius-lg: 12px;
	--wrap: 1368px;
	--pad: 24px;
	--head-h: 74px;
	--font: 'Google Sans', 'Segoe UI', Arial, Helvetica, sans-serif;
}

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

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font: 400 14px/1.45 var(--font);
	min-height: 100vh;
}

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

a {
	color: var(--text);
	text-decoration: none;
	transition: color .18s ease;
}

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

ul, ol { margin: 0; padding: 0; }

li { list-style: none; }

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 6px;
	font: 500 14px/1 var(--font);
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: filter .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn--gold {
	background: var(--gold);
	color: var(--on-gold);
	font-weight: 500;
}

.btn--gold:hover { background: var(--gold-2); color: var(--on-gold); filter: brightness(1.04); }

.btn--ghost {
	background: transparent;
	border-color: var(--gold-deep);
	color: var(--gold);
}

.btn--ghost:hover { background: rgba(253, 226, 146, .1); color: var(--gold); }

/* The source's pill — a gold hairline with a 20px radius. */
.btn--pill {
	background: transparent;
	border-color: var(--gold-deep);
	border-radius: 20px;
	color: var(--gold);
	padding: 0 28px;
}

.btn--pill:hover { background: rgba(253, 226, 146, .1); color: var(--gold); }

.iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--surface);
	cursor: pointer;
}

.iconbtn:hover { background: var(--line); }

.iconbtn--ring {
	border: 1px solid var(--gold-deep);
	border-radius: 8px;
	background: transparent;
}

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

.head {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--panel-2);
	border-bottom: 1px solid rgba(52, 55, 63, .8);
}

.head__in {
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: var(--wrap);
	height: var(--head-h);
	margin: 0 auto;
	padding: 0 var(--pad);
}

.head__nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.head__nav a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--text);
}

.head__nav img { display: block; }

.head__logo {
	margin: 0 auto;
	line-height: 0;
}

.head__logo img {
	display: block;
	width: 180px;
	height: auto;
}

.head__auth {
	display: flex;
	align-items: center;
	gap: 12px;
}

.head__login { display: none; }

.chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 44px;
	padding: 0 16px;
	border-radius: 8px;
	background: var(--surface);
	color: var(--text);
}

.chip:hover { color: var(--text); background: var(--line); }

.chip img { display: block; flex: 0 0 auto; }

.chip span span {
	display: block;
	line-height: 1.25;
	white-space: nowrap;
}

.chip__a { font-size: 13px; font-weight: 500; }
.chip__b { font-size: 12px; color: var(--muted); }

/* ---- page shell ------------------------------------------------------ */

.page {
	display: block;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 var(--pad) 40px;
}

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

.hero {
	position: relative;
	margin: 0 calc(var(--pad) * -1) 4px;
	background: var(--bg) url('../img/hero/bg.webp') 50% 50% / cover no-repeat;
	overflow: hidden;
}

/*
 * The track scrolls horizontally without scroll-snap — snap makes Chromium
 * re-snap while the slide art decodes and Lighthouse never settles on an LCP
 * candidate.
 */
.hero__track {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

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

.slide {
	display: flex;
	flex: 0 0 100%;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 400px;
	padding: 40px calc(var(--pad) + 40px);
}

.slide__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 520px;
}

.slide__kick,
.slide__head {
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--text);
}

.slide__offer {
	margin: 6px 0 26px;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--gold);
}

h1.slide__offer { margin-top: 6px; }

.slide__note {
	margin: -14px 0 24px;
	max-width: 440px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted);
}

.slide__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.slide__art {
	flex: 0 0 auto;
	width: auto;
	max-height: 320px;
	object-fit: contain;
}

.hero__arrow {
	position: absolute;
	left: calc(var(--pad) + 40px);
	bottom: 36px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(42, 45, 51, .85);
	color: var(--text);
	font-size: 13px;
	cursor: pointer;
	transition: background-color .18s ease;
}

.hero__arrow:hover { background: var(--line); }
.hero__arrow--next { left: calc(var(--pad) + 92px); }

.hero__bar {
	display: flex;
	gap: 0;
	height: 3px;
	background: var(--surface);
}

.hero__dot {
	flex: 1 1 0;
	height: 3px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: background-color .25s ease;
}

.hero__dot.is-active { background: var(--text); }

.hero--solo .hero__track { overflow: hidden; }

/* ---- category tabs --------------------------------------------------- */

.tabs {
	display: flex;
	align-items: stretch;
	margin: 0 calc(var(--pad) * -1);
	background: var(--panel);
}

.tabs__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border-right: 1px solid var(--surface);
}

.tabs__ico:first-child { border-left: 1px solid var(--surface); }

.tabs__row {
	display: flex;
	flex: 1 1 auto;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.tabs__row::-webkit-scrollbar { display: none; }

.tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 0 auto;
	min-width: 128px;
	height: 52px;
	padding: 0 18px;
	border-right: 1px solid var(--surface);
	font-size: 14px;
	color: var(--text);
	white-space: nowrap;
}

.tab:hover { background: var(--panel-2); color: var(--gold); }
.tab.is-active { color: var(--gold); }

/* ---- game grid ------------------------------------------------------- */

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

.tile { display: flex; flex-direction: column; }

.tile__art {
	position: relative;
	display: block;
	line-height: 0;
	border-radius: var(--radius) var(--radius) 0 0;
	overflow: hidden;
}

.tile__art img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 256 / 172;
	object-fit: cover;
}

.tile__tag {
	position: absolute;
	top: 0;
	left: 0;
	padding: 3px 10px;
	border-radius: var(--radius) 0 var(--radius) 0;
	background: var(--gold);
	color: var(--on-gold);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
}

.tile__tag--new { background: var(--green); color: #06210b; }

.tile__fav {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 26px;
	border-radius: 0 var(--radius) 0 var(--radius);
	background: rgba(15, 16, 18, .82);
}

.tile__name {
	display: block;
	padding: 9px 8px;
	border-radius: 0 0 var(--radius) var(--radius);
	background: var(--surface);
	color: var(--text);
	font-size: 13px;
	line-height: 1.3;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.more {
	display: flex;
	justify-content: center;
	padding: 24px 0 4px;
}

/* ---- claim plate ----------------------------------------------------- */

.claim {
	margin: 24px calc(var(--pad) * -1) 0;
	padding: 32px var(--pad);
	background: var(--panel);
	text-align: center;
}

.claim__title {
	display: block;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--gold);
}

.claim__text {
	display: block;
	max-width: 900px;
	margin: 12px auto 0;
	font-size: 20px;
	line-height: 1.4;
	color: var(--text);
}

/* ---- winners rail ---------------------------------------------------- */

.wins {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 calc(var(--pad) * -1);
	padding: 16px var(--pad);
	background: var(--panel-2);
}

.wins__label {
	flex: 0 0 auto;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 700;
}

.wins__label span { display: block; }

.wins__track {
	display: flex;
	flex: 1 1 auto;
	gap: 28px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.wins__track::-webkit-scrollbar { display: none; }

.win {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 12px;
}

.win img {
	display: block;
	width: 76px;
	height: 51px;
	border-radius: var(--radius);
	object-fit: cover;
}

.win__desc span { display: block; white-space: nowrap; }

.win__user { font-size: 14px; font-weight: 500; }
.win__cap { font-size: 13px; color: var(--muted); }
.win__gain { font-size: 14px; font-weight: 700; color: var(--gold); }

/* ---- promo cards ----------------------------------------------------- */

.promos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding: 24px 0 0;
}

.promo {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius);
	overflow: hidden;
}

.promo__title {
	display: block;
	padding: 16px;
	background: var(--surface);
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.promo__art {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	padding: 28px;
	background: var(--panel) url('../img/promo/bg1.webp') 50% 50% / cover no-repeat;
	color: var(--text);
}

.promo__art--2 { background-image: url('../img/promo/bg2.webp'); }

.promo__art::after {
	content: '';
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(253, 226, 146, .35);
	border-radius: var(--radius);
	pointer-events: none;
}

.promo__art:hover { color: var(--text); }
.promo__art:hover::after { border-color: var(--gold); }

.promo__lines {
	position: relative;
	z-index: 1;
	text-align: center;
}

.promo__line {
	display: block;
	font-size: 24px;
	line-height: 1.35;
	font-weight: 700;
}

.promo__line--hi { color: var(--gold); }

.promo__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	background: var(--surface);
}

.promo__cap { font-size: 15px; font-weight: 500; }

/* ---- provider strip -------------------------------------------------- */

.devs {
	margin: 24px 0 0;
	padding: 16px 20px;
	border-radius: var(--radius);
	background: var(--panel-2);
}

.devs__title {
	display: block;
	padding-bottom: 14px;
	font-size: 16px;
	font-weight: 700;
}

.devs__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 28px;
}

.devs__row img {
	display: block;
	height: 24px;
	width: auto;
	opacity: .85;
}

/* ---- inner-page title bar -------------------------------------------- */

.bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 calc(var(--pad) * -1);
	padding: 16px 56px;
	background: var(--panel-2);
}

.bar__back {
	position: absolute;
	left: var(--pad);
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-size: 13px;
	color: var(--muted);
}

.bar__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}

/* ---- plate + prose (CMS content) ------------------------------------- */

.plate {
	margin: 24px 0 0;
	padding: 24px 28px;
	border-radius: var(--radius);
	background: var(--panel);
}

.prose {
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
	margin: 0;
	padding: 22px 0 12px;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--text);
}

.prose h1 { font-size: 26px; padding-top: 0; }
.prose h2 { font-size: 22px; }
.prose h3 { font-size: 18px; }
.prose h4,
.prose h5,
.prose h6 { font-size: 16px; }

.prose p { margin: 0; padding: 0 0 14px; }

.prose a { color: var(--gold); text-decoration: underline; }
.prose a:hover { text-decoration: none; }

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

.prose ul,
.prose ol {
	margin: 0;
	padding: 0 0 14px 22px;
}

.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose li { margin-bottom: 6px; }
.prose li::marker { color: var(--gold); }

.prose img {
	display: block;
	max-width: 100%;
	height: auto;
	/* Narrow images sit centred in the plate rather than hugging its left edge. */
	margin: 8px auto 18px;
	border-radius: var(--radius);
}

.prose blockquote {
	margin: 0 0 18px;
	padding: 14px 18px;
	border-left: 3px solid var(--gold);
	border-radius: 0 var(--radius) var(--radius) 0;
	background: var(--surface);
}

.prose blockquote p:last-child { padding-bottom: 0; }

/* A wide table scrolls inside its own box instead of squeezing every column
   into the viewport: sized to its content, never narrower than the wrapper. */
.table-scroll { overflow-x: auto; margin: 0 0 18px; -webkit-overflow-scrolling: touch; }

.prose table {
	width: max-content;
	min-width: 100%;
	margin: 0;
	border-collapse: separate;
	border-spacing: 0 4px;
	font-size: 13px;
	line-height: 1.4;
}

.prose th,
.prose td {
	padding: 12px 14px;
	background: var(--surface);
	text-align: left;
}

.prose th { color: var(--text); font-weight: 700; white-space: nowrap; }
.prose td { max-width: 38ch; }
.prose tr td:first-child, .prose tr th:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.prose tr td:last-child, .prose tr th:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

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

.toplist {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px 0 0;
}

.top {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 16px 20px;
	border-radius: var(--radius);
	background: var(--surface);
}

.top__rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: var(--radius);
	background: var(--gold);
	color: var(--on-gold);
	font-size: 15px;
	font-weight: 700;
}

.top__art {
	display: block;
	flex: 0 0 auto;
	width: 148px;
	height: 100px;
	border-radius: var(--radius);
	object-fit: cover;
}

.top__body { flex: 1 1 auto; }

.top__name { display: block; font-size: 18px; font-weight: 700; }
.top__offer { display: block; padding-top: 6px; font-size: 15px; color: var(--gold); }
.top__note { display: block; padding-top: 6px; font-size: 13px; color: var(--muted); }

.top__side {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 8px;
	align-items: stretch;
	min-width: 180px;
}

.top__rating {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 700;
	color: var(--gold);
}

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

.rev {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 24px;
	align-items: center;
	margin: 24px 0 0;
	padding: 28px;
	border-radius: var(--radius);
	background: var(--panel) url('../img/hero/bg.webp') 50% 50% / cover no-repeat;
}

.rev__art {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rev__char {
	display: block;
	max-height: 240px;
	width: auto;
	object-fit: contain;
}

/*
 * With no verified facts to show, the two-column split leaves the right half
 * empty — collapse to one column and centre the call to action instead.
 */
.rev--bare { grid-template-columns: 1fr; gap: 16px; }
.rev--bare .rev__cta { justify-content: center; }
.rev--bare .rev__char { max-height: 200px; }

.rev__mark {
	position: absolute;
	left: 0;
	top: 0;
	line-height: 0;
}

.rev__facts {
	margin: 0 0 20px;
	padding: 0;
}

.rev__facts li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 11px 14px;
	margin-bottom: 4px;
	border-radius: var(--radius);
	background: rgba(42, 45, 51, .82);
	font-size: 14px;
}

.rev__facts span { color: var(--muted); }
.rev__facts b { color: var(--gold); font-weight: 700; }

.rev__cta { display: flex; gap: 12px; flex-wrap: wrap; }

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

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 24px 0 0;
}

.step {
	padding: 24px;
	border-radius: var(--radius);
	background: var(--panel);
}

.step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--on-gold);
	font-size: 16px;
	font-weight: 700;
}

.step__title { display: block; padding-bottom: 8px; font-size: 18px; font-weight: 700; }
.step__text { display: block; font-size: 14px; line-height: 1.55; color: var(--muted); }

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

.foot {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 var(--pad) 40px;
	font-size: 13px;
}

.foot__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	padding: 26px 0;
	border-top: 1px solid var(--surface);
}

.trust__cap { display: block; color: var(--muted); line-height: 1.35; }
.trust__cap span { display: block; }

.trust__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-top: 10px;
	border-radius: 50%;
	background: var(--surface);
}

.foot__brand {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	padding: 22px 0;
}

.foot__mark { display: flex; align-items: center; gap: 14px; }

.foot__mark img { display: block; width: 56px; height: auto; }

.foot__name { display: block; font-size: 15px; font-weight: 700; }
.foot__slogan { display: block; padding-top: 2px; color: var(--muted); }

.foot__soc { display: flex; align-items: center; gap: 28px; }

.foot__soc a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
}

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

.foot__links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px 24px;
	padding: 18px 0 22px;
	border-top: 1px solid var(--surface);
}

.foot__links li { padding: 6px 0; }

.foot__links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
}

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

.foot__note {
	margin: 0;
	padding: 18px 0 0;
	border-top: 1px solid var(--surface);
	color: var(--muted);
	line-height: 1.6;
	text-align: center;
}

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

.overlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(0, 0, 0, .7);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

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

.drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 70;
	width: 300px;
	max-width: 86vw;
	padding: 20px;
	background: var(--panel-2);
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform .24s ease;
}

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

.drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 20px;
}

.drawer__head img { display: block; width: 150px; height: auto; }

.drawer__close {
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--surface);
	color: var(--text);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.drawer__auth {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding-bottom: 20px;
}

.drawer__auth .btn { padding: 0 10px; }

.drawer__list { border-top: 1px solid var(--surface); }

.drawer__list li { border-bottom: 1px solid var(--surface); }

.drawer__list a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 2px;
	color: var(--text);
}

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

/* ---- sticky mobile bar ----------------------------------------------- */

.stickybar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	display: none;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	background: var(--surface);
}

.stickybar .chip {
	flex: 1 1 auto;
	min-width: 0;
	height: 42px;
	padding: 0 12px;
	background: rgba(15, 16, 18, .55);
}

.stickybar .chip span span { overflow: hidden; text-overflow: ellipsis; }

.stickybar .btn { flex: 0 0 auto; }

/* ---- cookie bar ------------------------------------------------------ */

.cookie {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 55;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
	padding: 16px 20px;
	border: 1px solid var(--surface);
	border-radius: var(--radius);
	background: var(--panel-2);
	font-size: 13px;
	line-height: 1.5;
	color: var(--muted);
}

/* The class sets display:flex, which outranks the UA sheet's [hidden] rule —
   without this the bar ignores both the initial hidden attribute and the
   dismiss click. */
.cookie[hidden] { display: none; }

.cookie a { color: var(--gold); text-decoration: underline; }
.cookie .btn { flex: 0 0 auto; height: 36px; padding: 0 18px; }

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

@media (max-width: 1180px) {
	.head__nav { display: none; }
	.slide { padding: 32px var(--pad); }
	.slide__art { max-height: 260px; }
	.grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
	:root { --pad: 16px; --head-h: 60px; }

	.head__auth { display: none; }
	.head__login { display: inline-flex; }
	.head__logo { margin: 0 auto; }
	.head__logo img { width: 150px; }

	.stickybar { display: flex; }
	.cookie { bottom: 74px; flex-direction: column; text-align: center; gap: 12px; }

	.slide {
		flex-direction: column-reverse;
		align-items: center;
		gap: 8px;
		min-height: 0;
		padding: 20px var(--pad) 32px;
		text-align: center;
	}

	.slide__text { align-items: center; max-width: none; }
	.slide__kick, .slide__head { font-size: 20px; }
	.slide__offer { font-size: 28px; margin-bottom: 18px; }
	.slide__note { margin: -8px 0 18px; }
	.slide__art { max-height: 200px; }

	.hero__arrow { display: none; }

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

	.claim { padding: 24px var(--pad); }
	.claim__title { font-size: 22px; }
	.claim__text { font-size: 16px; }

	.wins { gap: 16px; padding: 14px var(--pad); }
	.wins__label { font-size: 16px; }

	.promos { grid-template-columns: 1fr; gap: 16px; }
	.promo__art { min-height: 180px; padding: 18px; }
	.promo__line { font-size: 18px; }
	.promo__art img { max-height: 150px; }
	.promo__foot { flex-direction: column; align-items: stretch; text-align: center; }

	.plate { padding: 20px var(--pad); }
	.prose h1 { font-size: 22px; }
	.prose h2 { font-size: 19px; }
	.prose h3 { font-size: 17px; }

	.rev { grid-template-columns: 1fr; padding: 20px var(--pad); }
	.rev__mark { position: static; padding-bottom: 8px; }
	.rev__art { flex-direction: column; }

	.steps { grid-template-columns: 1fr; }

	.top { flex-wrap: wrap; gap: 14px; }
	.top__art { width: 110px; height: 74px; }
	.top__body { flex: 1 1 160px; }
	.top__side { flex: 1 1 100%; min-width: 0; }

	.foot { padding-bottom: 132px; }
	.foot__trust { gap: 28px; }
	.foot__links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.foot__brand { gap: 20px; }
}

@media (max-width: 560px) {
	.tabs__ico { width: 46px; height: 46px; }
	.tab { min-width: 108px; height: 46px; font-size: 13px; }
	.foot__links { grid-template-columns: 1fr; }
	.stickybar .chip__a { font-size: 12px; }
	.stickybar .chip__b { font-size: 11px; }
}


/* ---- site pages in the chrome ---------------------------------------- */

.head__nav a.is-on span { color: var(--gold); }
.drawer__list a.is-on span { color: var(--gold); }

.foot__cap span {
	display: block;
	padding-bottom: 4px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text);
}

.drawer__cap span {
	display: block;
	padding: 14px 20px 6px;
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--muted);
}

/* ---- language switcher ----------------------------------------------- */

.lang { position: relative; }

.lang__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 44px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: transparent;
	color: var(--text);
	font: inherit;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
}

.lang__btn:hover { border-color: var(--gold-deep); }

.lang__caret {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid var(--muted);
}

.lang__panel {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 60;
	min-width: 190px;
	margin: 0;
	padding: 6px;
	list-style: none;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--panel-2);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
}

.lang.is-open .lang__panel { display: block; }

.lang__opt {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: var(--radius);
	font-size: 13px;
	color: var(--text);
}

.lang__opt:hover { background: var(--surface); color: var(--text); }
.lang__opt b { min-width: 24px; font-size: 12px; color: var(--muted); }
.lang__opt.is-on, .lang__opt.is-on b { color: var(--gold); }

/* In the drawer there is no room for a dropdown and nothing to save by
   hiding the options: the three editions are listed outright. */
.lang--drawer { display: none; padding: 16px 20px 0; }
.lang--drawer .lang__btn { display: none; }

.lang--drawer .lang__panel {
	display: block;
	position: static;
	min-width: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.lang--drawer .lang__opt {
	margin-bottom: 8px;
	border: 1px solid var(--line);
}

/* Exactly one switcher is visible at any width: the header one down to the
   point where the auth block folds away, the drawer one below it. */
@media (max-width: 900px) {
	.lang--hdr { display: none; }
	.lang--drawer { display: block; }
}