/*
 * Stylesheet — "vipcasino_1" (template 64).
 *
 * Analyze-mode build, source https://vipcasinos.com.ua/. The palette is the
 * source's own and is taken exactly: its registration gradient
 * (#815516 → #FFCB51 → #C98217) and its #262634 hairline. Everything else is
 * rebuilt — the source sets the whole page in Arial on flat #000 with 6px
 * radii, and reads like a 2019 affiliate build rather than the premium club
 * its art is selling. Everything here is set in Inter — one family, display
 * sizes carried by weight 800 and tight tracking rather than a second face.
 *
 * Sections
 *   1. tokens & base          5. rails & tiles
 *   2. buttons & the mark     6. copy, aside, content typography
 *   3. header, drawer, offer  7. footer, tab bar, responsive
 *   4. hero, winners, club    8. toplist, review, landing, page
 */

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

:root {
	--vc-bg:        #07070a;
	--vc-bg-2:      #0b0b10;
	--vc-surface:   #121218;
	--vc-surface-2: #191921;
	--vc-line:      #262634; /* the source's own hairline */
	--vc-line-2:    #343446;

	--vc-text:   #f4f2ec;
	--vc-mute:   #a5a29a;
	--vc-mute-2: #75726c;

	/* The source's registration gradient, kept verbatim — it is the one piece
	   of its visual identity that carries the whole brand. */
	--vc-gold:   #ffcb51;
	--vc-gold-d: #c98217;
	--vc-gold-l: #ffe6a8;
	--vc-gold-g: linear-gradient(98.32deg, #815516 -2%, #ffcb51 54.7%, #c98217 107.96%);
	--vc-gold-s: rgba(255, 203, 81, .12);

	--vc-hot:  #ff5a45;
	--vc-new:  #4bd6a0;
	--vc-win:  #ffcb51;

	/* One family for the whole page. Display sizes lean on weight 800 and
	   tight tracking rather than a second face. */
	--vc-font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

	--vc-wrap:  1248px;
	--vc-top:   68px;
	--vc-r-sm:  8px;
	--vc-r:     14px;
	--vc-r-lg:  20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background:
		radial-gradient(120% 70% at 50% 0%, rgba(255, 203, 81, .07), transparent 62%),
		var(--vc-bg);
	color: var(--vc-text);
	font: 400 16px/1.6 var(--vc-font);
	-webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

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

.vc-skip {
	position: fixed;
	inset-block-start: -60px;
	inset-inline-start: 12px;
	z-index: 90;
	padding: 10px 16px;
	border-radius: var(--vc-r-sm);
	background: var(--vc-gold);
	color: #14100a;
	font-weight: 700;
	transition: inset-block-start .16s;
}

.vc-skip:focus { inset-block-start: 12px; }

.vc-main { display: block; padding-bottom: 40px; }
.vc-sec { margin-top: 38px; }
.vc-ico { flex: none; }

/* --------------------------------------------------- 2. buttons & the mark */

.vc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font: 700 15px/1 var(--vc-font);
	white-space: nowrap;
	cursor: pointer;
	transition: filter .16s, background-color .16s, border-color .16s, color .16s, transform .16s;
}

.vc-btn--gold {
	background: var(--vc-gold-g);
	color: #16100a;
	letter-spacing: .01em;
}

.vc-btn--gold:hover { filter: brightness(1.08); }

.vc-btn--ghost {
	border-color: var(--vc-line-2);
	background: transparent;
	color: var(--vc-text);
}

.vc-btn--ghost:hover { border-color: var(--vc-gold); color: var(--vc-gold); }

.vc-btn--sm { padding: 9px 16px; font-size: 13.5px; }
.vc-btn--lg { padding: 15px 30px; font-size: 16px; }
.vc-btn--block { display: flex; width: 100%; }
.vc-btn:active { transform: translateY(1px); }

.vc-mark { display: inline-flex; align-items: center; }

/* The mark is the image alone — no wordmark beside it. */
.vc-mark__img { display: block; height: var(--vc-mark-h); width: auto; }

/* --------------------------------------------- 3. header, drawer, the offer */

.vc-top {
	position: sticky;
	inset-block-start: 0;
	z-index: 60;
	border-bottom: 1px solid var(--vc-line);
	background: rgba(7, 7, 10, .92);
	backdrop-filter: blur(12px);
}

.vc-top__in {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	max-width: var(--vc-wrap);
	min-height: var(--vc-top);
	margin-inline: auto;
	padding-inline: 20px;
}

.vc-burger {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: none;
	border: 1px solid var(--vc-line);
	border-radius: 12px;
	background: var(--vc-surface);
	color: var(--vc-text);
	cursor: pointer;
	transition: border-color .16s, color .16s;
}

.vc-burger:hover { border-color: var(--vc-gold); color: var(--vc-gold); }

.vc-top__nav { display: flex; align-items: center; gap: 4px; margin-inline-start: 6px; }

.vc-top__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 999px;
	color: var(--vc-mute);
	font-weight: 600;
	font-size: 14.5px;
	transition: color .16s, background-color .16s;
}

.vc-top__link .vc-ico { color: var(--vc-gold-d); transition: color .16s; }
.vc-top__link:hover { background: var(--vc-surface); color: var(--vc-text); }
.vc-top__link:hover .vc-ico { color: var(--vc-gold); }

/*
 * The source's one genuinely good header idea, rebuilt: the offer is a pill
 * that states the bonus before it asks for the click. Here the figures are
 * live text rather than a background image, so a deployment can edit them.
 */
.vc-offer {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px 5px 5px 14px;
	border: 1px solid var(--vc-line-2);
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(255, 203, 81, .10), rgba(255, 203, 81, .02));
}

.vc-offer__l { display: inline-flex; align-items: center; gap: 10px; }
.vc-offer__l .vc-ico { color: var(--vc-gold); }
.vc-offer__l span { display: grid; gap: 1px; line-height: 1.25; }
.vc-offer__l b { font-weight: 800; font-size: 13.5px; color: var(--vc-gold-l); }
.vc-offer__l i { font-style: normal; font-size: 12px; color: var(--vc-mute); }

/* The auth pair and the offer cluster sit together at the end of the bar. */
.vc-top__login { flex: none; margin-inline-start: auto; }

.vc-scrim {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(4, 4, 6, .66);
	backdrop-filter: blur(2px);
}

.vc-scrim[hidden] { display: none; }

/*
 * The drawer opens from the left, under the burger. Its inner shape is a tile
 * pad plus an offer group plus a pinned foot — not the icon-plate row list the
 * rest of the network uses.
 */
.vc-drawer {
	position: fixed;
	inset-block: 0;
	inset-inline-start: 0;
	z-index: 80;
	display: flex;
	flex-direction: column;
	width: min(340px, 88vw);
	padding: 16px;
	overflow-y: auto;
	border-inline-end: 1px solid var(--vc-line);
	background: var(--vc-bg-2);
	transform: translateX(-102%);
	transition: transform .22s ease;
}

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

.vc-drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }

.vc-drawer__x {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--vc-line);
	border-radius: 11px;
	background: var(--vc-surface);
	color: var(--vc-text);
	cursor: pointer;
}

/* Four destinations as touch tiles, two across. */
.vc-dpad { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.vc-dtile {
	display: grid;
	justify-items: center;
	align-content: center;
	gap: 9px;
	padding: 20px 10px;
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r);
	background: var(--vc-surface);
	font-weight: 700;
	font-size: 14px;
	transition: border-color .16s, background-color .16s;
}

.vc-dtile .vc-ico { color: var(--vc-gold-d); transition: color .16s; }
.vc-dtile:hover { border-color: rgba(255, 203, 81, .5); background: var(--vc-surface-2); }
.vc-dtile:hover .vc-ico { color: var(--vc-gold); }

/* Legal rows: plain text, no plate and no chevron — they are not destinations
   a player hunts for, and dressing them up as tiles would say they are. */
.vc-dlist { display: grid; gap: 2px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--vc-line); }
.vc-dlist a { padding: 9px 2px; color: var(--vc-mute); font-size: 14.5px; }
.vc-dlist a:hover { color: var(--vc-gold); }

/*
 * Offer rows. No icon plate and no chevron — a compact gold glyph inline, and
 * a rule that lights up on hover. The network's usual drawer row is a 34px
 * plate with a chevron at its end; this is deliberately not that.
 */
.vc-dgrp { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--vc-line); }
.vc-dgrp__t { display: block; margin-bottom: 4px; color: var(--vc-mute-2); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

.vc-doffer {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 10px 10px 10px 8px;
	border-inline-start: 2px solid transparent;
	border-radius: 0 var(--vc-r-sm) var(--vc-r-sm) 0;
	font-weight: 600;
	font-size: 14.5px;
	transition: border-color .16s, background-color .16s, color .16s;
}

.vc-doffer .vc-ico { color: var(--vc-gold-d); transition: color .16s; }
.vc-doffer__l { flex: 1; min-width: 0; }
.vc-doffer__n { flex: none; color: var(--vc-mute-2); font-weight: 600; font-size: 11.5px; }
.vc-doffer:hover { border-inline-start-color: var(--vc-gold); background: var(--vc-gold-s); color: var(--vc-gold-l); }
.vc-doffer:hover .vc-ico { color: var(--vc-gold); }

/* Pinned foot: the one CTA, where the thumb is. */
.vc-dfoot { margin-top: auto; padding-top: 20px; }

/* -------------------------------------------------- 4. hero, winners, club */

.vc-hero { margin-top: 22px; }

.vc-banner {
	position: relative;
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r-lg);
	overflow: hidden;
	background: var(--vc-surface);
}

.vc-banner__art {
	display: block;
	width: 100%;
	height: clamp(280px, 29vw, 380px);
	object-fit: cover;
	object-position: right center;
}

.vc-banner__in {
	position: absolute;
	inset-block: 0;
	inset-inline-start: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 12px;
	width: min(620px, 72%);
	padding: 32px clamp(20px, 4vw, 54px);
	background: linear-gradient(90deg, rgba(6, 6, 9, .93) 46%, rgba(6, 6, 9, 0));
}

.vc-banner__k {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 14px;
	border: 1px solid rgba(255, 203, 81, .36);
	border-radius: 999px;
	color: var(--vc-gold);
	font-weight: 700;
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.vc-banner__h {
	font-weight: 800;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.06;
	letter-spacing: -.025em;
	background: var(--vc-gold-g);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.vc-banner__s { max-width: 44ch; color: var(--vc-mute); font-size: clamp(14px, 1.2vw, 16.5px); }
.vc-banner__in .vc-btn { margin-top: 8px; }

/*
 * Winners. The source pins these in a 200px column beside the game wall,
 * where they scroll away within a screen. As a full-width rail they are read
 * in one pass and stop competing with the catalogue for width.
 */
.vc-wins {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 6px;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.vc-wins::-webkit-scrollbar, .vc-rail::-webkit-scrollbar, .vc-tiles::-webkit-scrollbar { display: none; }

.vc-win {
	display: flex;
	align-items: center;
	gap: 11px;
	flex: none;
	width: 264px;
	padding: 10px 14px 10px 10px;
	border: 1px solid var(--vc-line);
	border-radius: 999px;
	background: var(--vc-surface);
	scroll-snap-align: start;
	transition: border-color .16s, background-color .16s;
}

.vc-win:hover { border-color: rgba(255, 203, 81, .5); background: var(--vc-surface-2); }
.vc-win__face { width: 40px; height: 40px; flex: none; border-radius: 50%; object-fit: cover; }
.vc-win__txt { display: grid; gap: 1px; min-width: 0; flex: 1; }
.vc-win__nick { font-weight: 700; font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vc-win__game { color: var(--vc-mute-2); font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vc-win__sum { flex: none; color: var(--vc-win); font-weight: 800; font-size: 14.5px; }

/* Club band — the source's four dead tab links, made into cards. */
.vc-club { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }

.vc-club__i {
	display: grid;
	align-content: start;
	gap: 7px;
	padding: 20px;
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r);
	background:
		radial-gradient(110% 130% at 100% 0%, rgba(255, 203, 81, .10), transparent 60%),
		var(--vc-surface);
	transition: border-color .16s, transform .16s;
}

.vc-club__i:hover { border-color: rgba(255, 203, 81, .45); transform: translateY(-2px); }
.vc-club__ico { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 4px; border-radius: 12px; background: var(--vc-gold-s); color: var(--vc-gold); }
.vc-club__t { font-weight: 800; font-size: 19px; line-height: 1.25; letter-spacing: -.015em; }
.vc-club__n { color: var(--vc-mute); font-size: 13.5px; }
.vc-club__go { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; color: var(--vc-gold); font-weight: 700; font-size: 13.5px; }

/* -------------------------------------------------------- 5. rails & tiles */

/*
 * Section label above a row: the label, an optional note, and a gold rule that
 * runs out to the edge. No "more" pill — the rail arrows sit on the rail.
 */
.vc-slabel { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.vc-slabel__t {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: none;
	font-weight: 800;
	font-size: clamp(20px, 2.1vw, 25px);
	line-height: 1.2;
	letter-spacing: -.02em;
}

.vc-slabel__t .vc-ico { color: var(--vc-gold); }
.vc-slabel__n { flex: none; color: var(--vc-mute-2); font-size: 13px; }

.vc-slabel::after {
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--vc-line-2), transparent);
}

.vc-slabel__n { order: 3; }
.vc-slabel::after { order: 2; }

.vc-rail {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 6px;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.vc-rail .vc-tile { flex: none; width: 244px; scroll-snap-align: start; }

/*
 * Static tile grid — the layout for a row short enough that a scroller would
 * be a control with nothing to scroll. auto-fit, so the row stretches to fill
 * the measure instead of leaving an empty track at the end.
 */
.vc-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }

.vc-tile { display: grid; gap: 2px; min-width: 0; }

.vc-tile__art {
	position: relative;
	display: block;
	margin-bottom: 9px;
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r);
	overflow: hidden;
	background: var(--vc-surface-2);
	aspect-ratio: 16 / 9;
	transition: border-color .16s;
}

.vc-tile__art img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.vc-tile:hover .vc-tile__art { border-color: rgba(255, 203, 81, .5); }
.vc-tile:hover .vc-tile__art img { transform: scale(1.05); }

.vc-tile__badge {
	position: absolute;
	inset-block-start: 9px;
	inset-inline-start: 9px;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--vc-gold-g);
	color: #16100a;
	font-weight: 800;
	font-size: 10.5px;
	letter-spacing: .06em;
}

.vc-tile__badge--hot { background: var(--vc-hot); color: #fff; }
.vc-tile__badge--new { background: var(--vc-new); color: #05271a; }

.vc-tile__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	background: rgba(7, 7, 10, .62);
	color: var(--vc-gold);
	font-weight: 800;
	font-size: 14px;
	opacity: 0;
	transition: opacity .16s;
}

.vc-tile:hover .vc-tile__play { opacity: 1; }
.vc-tile__pb { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--vc-gold-g); color: #16100a; }

/* The only line under a cover, so it reads a step up from a sub-caption. */
.vc-tile__prov { color: var(--vc-mute); font-weight: 600; font-size: 13px; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/*
 * Scroll arrows overlaid on the rail edges. The rows carry no header controls,
 * so the pair lives on the row itself: centred on the cover art rather than
 * the whole tile (--vc-cap is the caption the buttons must clear), and
 * revealed by main.js only while the row overflows.
 */
.vc-railbox { position: relative; --vc-cap: 30px; }

/* The winners chips have no caption under them, so the arrows centre on the row. */
.vc-railbox--flush { --vc-cap: 0px; }

.vc-rarrow {
	position: absolute;
	z-index: 2;
	inset-block-start: 0;
	inset-block-end: calc(var(--vc-cap) + 6px);
	margin-block: auto;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--vc-line-2);
	border-radius: 50%;
	background: rgba(7, 7, 10, .86);
	backdrop-filter: blur(6px);
	color: var(--vc-text);
	cursor: pointer;
	transition: border-color .16s, color .16s, background-color .16s, opacity .16s;
}

.vc-rarrow--prev { inset-inline-start: -8px; }
.vc-rarrow--next { inset-inline-end: -8px; }
.vc-rarrow:hover { border-color: var(--vc-gold); color: var(--vc-gold); background: var(--vc-surface-2); }
.vc-rarrow[disabled] { opacity: 0; pointer-events: none; }
.vc-rarrow[hidden] { display: none; }

/* Touch rails scroll by swipe — the buttons would only cover a cover. */
@media (hover: none) {
	.vc-rarrow { display: none; }
}

/* ------------------------------------------- 6. copy, aside, content styles */

.vc-copy { display: flow-root; }

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

.vc-phead h1 {
	margin: 0;
	font-weight: 800;
	font-size: clamp(28px, 3.4vw, 42px);
	line-height: 1.14;
	letter-spacing: -.025em;
}

.vc-lead { margin: 12px 0 0; color: var(--vc-mute); font-size: 17px; }

.vc-aside { display: grid; gap: 14px; margin-bottom: 22px; }

.vc-card {
	display: grid;
	gap: 6px;
	padding: 20px;
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r);
	background: var(--vc-surface);
}

.vc-card--bonus {
	/* #bonuses target for the header and burger rows — clear the sticky bar. */
	scroll-margin-top: calc(var(--vc-top) + 16px);
	border-color: rgba(255, 203, 81, .3);
	background:
		radial-gradient(120% 130% at 100% 0%, rgba(255, 203, 81, .18), transparent 62%),
		var(--vc-surface-2);
}

.vc-card__kick { display: inline-flex; align-items: center; gap: 7px; color: var(--vc-gold); font-weight: 700; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; }
.vc-card__sum { display: grid; gap: 2px; font-weight: 800; font-size: 33px; line-height: 1.05; letter-spacing: -.02em; color: var(--vc-gold); }
.vc-card__sum span { margin-top: 4px; color: var(--vc-mute); font-weight: 600; font-size: 14px; letter-spacing: 0; line-height: 1.4; }
.vc-card__note { color: var(--vc-mute); font-size: 13.5px; }
.vc-card__head { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 6px; font-weight: 800; font-size: 16px; }
.vc-card__head .vc-ico { color: var(--vc-gold); }
.vc-247 { margin-inline-start: auto; padding: 3px 9px; border-radius: 999px; background: var(--vc-gold-s); color: var(--vc-gold); font-weight: 700; font-size: 11px; }
.vc-card .vc-btn { margin-top: 10px; }

.vc-tops { display: grid; }

.vc-tops__i {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 9px 0;
	border-bottom: 1px solid var(--vc-line);
}

.vc-tops__i:last-child { border-bottom: 0; padding-bottom: 0; }
.vc-tops__n { width: 18px; flex: none; color: var(--vc-gold-d); font-weight: 800; font-size: 14px; }
.vc-tops__i img { width: 56px; height: 32px; flex: none; border-radius: 6px; object-fit: cover; }
.vc-tops__txt { display: grid; gap: 1px; min-width: 0; flex: 1; }
.vc-tops__name { font-weight: 700; font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vc-tops__prov { color: var(--vc-mute-2); font-size: 12px; }
.vc-tops__i > .vc-ico { color: var(--vc-mute-2); }
.vc-tops__i:hover .vc-tops__name { color: var(--vc-gold); }

.vc-toc {
	display: flow-root;
	margin-bottom: 22px;
	padding: 18px 22px;
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r);
	background: var(--vc-surface);
}

.vc-toc__t { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; font-weight: 800; font-size: 15px; }
.vc-toc__t .vc-ico { color: var(--vc-gold); }
.vc-toc ol { margin: 0; padding-inline-start: 20px; color: var(--vc-mute); }
.vc-toc li { margin: 5px 0; }
.vc-toc a:hover { color: var(--vc-gold); }

.vc-content { font-size: 16.5px; }

.vc-content h2,
.vc-content h3,
.vc-content h4 { margin: 34px 0 12px; font-weight: 800; line-height: 1.24; letter-spacing: -.02em; scroll-margin-top: calc(var(--vc-top) + 16px); }

.vc-content h2 { font-size: clamp(23px, 2.5vw, 30px); }
.vc-content h3 { font-size: clamp(20px, 2vw, 23px); }
.vc-content h4 { font-size: 18px; letter-spacing: -.01em; }
.vc-content p { margin: 0 0 16px; color: rgba(244, 242, 236, .84); }
.vc-content a { color: var(--vc-gold); text-decoration: underline; text-underline-offset: 3px; }
.vc-content a:hover { color: var(--vc-gold-l); }
.vc-content ul, .vc-content ol { margin: 0 0 18px; padding-inline-start: 22px; color: rgba(244, 242, 236, .84); }
.vc-content li { margin: 7px 0; }
.vc-content ul { list-style: none; padding-inline-start: 0; }

.vc-content ul li {
	position: relative;
	padding-inline-start: 26px;
}

.vc-content ul li::before {
	content: '';
	position: absolute;
	inset-block-start: 11px;
	inset-inline-start: 4px;
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	background: var(--vc-gold-g);
	border-radius: 2px;
}

/*
 * Content images: 812px is the network's standard, centred in the measure so
 * a narrower image does not leave a lopsided gutter. A block-level replaced
 * element may not overlap a float's margin box, so this is safe beside the
 * card column — the image centres inside the WRAPPED band, not the full page.
 */
.vc-content img {
	display: block;
	width: min(812px, 100%);
	height: auto;
	margin: 22px auto;
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r);
}

.vc-content figure { display: flow-root; margin: 22px 0; }
.vc-content figcaption { color: var(--vc-mute-2); font-size: 13.5px; text-align: center; }

.vc-content blockquote {
	display: flow-root;
	margin: 22px 0;
	padding: 18px 22px;
	border: 1px solid var(--vc-line);
	border-inline-start: 3px solid var(--vc-gold);
	border-radius: var(--vc-r);
	background: var(--vc-surface);
	color: var(--vc-mute);
}

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

.vc-tscroll { display: flow-root; overflow-x: auto; margin: 22px 0; border: 1px solid var(--vc-line); border-radius: var(--vc-r); }
.vc-content table { width: 100%; border-collapse: collapse; font-size: 15px; }
.vc-content th, .vc-content td { padding: 12px 16px; text-align: start; border-bottom: 1px solid var(--vc-line); }
.vc-content th { background: var(--vc-surface-2); font-weight: 700; }
.vc-content tr:last-child td { border-bottom: 0; }

/* ------------------------------------------- 7. footer, tab bar, responsive */

.vc-foot { margin-top: 34px; padding-bottom: 22px; }

.vc-foot__card {
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r-lg);
	background: var(--vc-bg-2);
	overflow: hidden;
}

.vc-foot__cols {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 26px;
	padding: 30px clamp(20px, 3vw, 34px);
}

.vc-foot__about { margin: 14px 0 0; color: var(--vc-mute); font-size: 14px; max-width: 40ch; }
.vc-foot__soc { display: flex; gap: 8px; margin-top: 14px; }

.vc-foot__soci {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--vc-line);
	border-radius: 50%;
	color: var(--vc-mute);
	transition: border-color .16s, color .16s;
}

.vc-foot__soci:hover { border-color: var(--vc-gold); color: var(--vc-gold); }

.vc-foot__col { display: grid; align-content: start; gap: 9px; }
.vc-foot__t { margin-bottom: 3px; color: var(--vc-text); font-weight: 800; font-size: 14px; }
.vc-foot__col a { color: var(--vc-mute); font-size: 14px; }
.vc-foot__col a:hover { color: var(--vc-gold); }

.vc-foot__bands {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 16px clamp(20px, 3vw, 34px);
	border-block: 1px solid var(--vc-line);
	background: var(--vc-surface);
}

.vc-bands { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }

.vc-band__i {
	padding: 8px 14px;
	border: 1px solid var(--vc-line);
	border-radius: 10px;
	background: var(--vc-surface-2);
	color: var(--vc-mute);
	font-weight: 700;
	font-size: 13px;
}

.vc-band__i--mute { background: transparent; color: var(--vc-mute-2); }

.vc-age {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 2px solid var(--vc-hot);
	border-radius: 50%;
	color: var(--vc-hot);
	font-weight: 800;
	font-size: 13px;
}

.vc-foot__legal { padding: 18px clamp(20px, 3vw, 34px); }
.vc-foot__legal p { margin: 0 0 8px; color: var(--vc-mute-2); font-size: 12.5px; line-height: 1.55; }
.vc-foot__legal p:last-child { margin-bottom: 0; }

.vc-foot__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	padding: 14px clamp(20px, 3vw, 34px);
	border-top: 1px solid var(--vc-line);
	color: var(--vc-mute-2);
	font-size: 13px;
}

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

.vc-tabbar {
	position: fixed;
	inset-block-end: 0;
	inset-inline: 0;
	z-index: 55;
	display: none;
	border-top: 1px solid var(--vc-line);
	background: rgba(7, 7, 10, .96);
	backdrop-filter: blur(12px);
}

.vc-tabbar__i {
	display: grid;
	justify-items: center;
	gap: 3px;
	flex: 1;
	padding: 9px 4px calc(9px + env(safe-area-inset-bottom));
	color: var(--vc-mute);
	font-weight: 600;
	font-size: 11px;
}

.vc-tabbar__i .vc-ico { color: var(--vc-gold-d); }

.vc-totop {
	position: fixed;
	inset-block-end: 22px;
	inset-inline-end: 22px;
	z-index: 50;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--vc-line-2);
	border-radius: 50%;
	background: var(--vc-surface);
	color: var(--vc-gold);
	cursor: pointer;
}

.vc-totop[hidden] { display: none; }

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

/*
 * The card column FLOATS, so the copy wraps beside it and then reclaims the
 * full measure once the cards end. A grid track is deliberately not used — it
 * would hold the article at one width down the whole page and leave a dead
 * gutter beside the short cards.
 *
 * The float switches on at the first width where the wrapped copy still fits
 * an 812px content image: measure − card column − gutter ≥ 812. Both are
 * fluid, so that point is 1180px (1140 − 288 − 24 = 828) rather than the 1240
 * a fixed 324px column would need, and the column grows back to 324px on a
 * full-width page.
 */
@media (min-width: 1180px) {
	.vc-copy--aside .vc-aside {
		float: right;
		width: clamp(288px, 24vw, 324px);
		margin: 0 0 22px clamp(24px, 2vw, 34px);
	}
}

/*
 * Below that the cards cannot sit beside the copy without squeezing it, so
 * they drop BELOW the article as a band — three across, one per row on a
 * phone. Source order puts the aside before the article (it is a card column,
 * not a footer), so the order is reset here rather than in the markup.
 */
@media (max-width: 1179px) {
	.vc-copy--aside { display: flex; flex-direction: column; }
	.vc-copy--aside .vc-phead   { order: 1; }
	.vc-copy--aside .vc-toc     { order: 2; }
	.vc-copy--aside .vc-content { order: 3; }

	.vc-copy--aside .vc-aside {
		order: 4;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: start;
		margin: 28px 0 0;
	}
}

@media (max-width: 1100px) {
	.vc-club { grid-template-columns: 1fr 1fr; }
	.vc-foot__cols { grid-template-columns: 1fr 1fr; }
	.vc-offer__l i { display: none; }
}

@media (max-width: 980px) {
	.vc-top__nav { display: none; }
}

@media (max-width: 900px) {
	.vc-tabbar { display: flex; }
	.vc-main { padding-bottom: 6px; }
	.vc-foot { padding-bottom: 84px; }
	.vc-totop { inset-block-end: 84px; }
	.vc-top__login { display: none; }
	.vc-offer { margin-inline-start: auto; }
	.vc-banner__in { width: 100%; background: linear-gradient(90deg, rgba(6, 6, 9, .94) 56%, rgba(6, 6, 9, .35)); }
}

@media (max-width: 720px) {
	.vc-sec { margin-top: 28px; }
	.vc-slabel__n { display: none; }
	.vc-copy--aside .vc-aside { grid-template-columns: minmax(0, 1fr); }
	.vc-rarrow { display: none; }
	.vc-club { grid-template-columns: 1fr; }
	.vc-foot__cols { grid-template-columns: 1fr; gap: 22px; }
	.vc-rail .vc-tile { width: 208px; }
	.vc-content { font-size: 16px; }

	/*
	 * On a phone the static grid becomes the same swipe rail as the labelled
	 * rows above it: at this width auto-fit gives one column, and five tall
	 * tiles stacked is a wall to scroll past rather than a row to look at.
	 */
	.vc-tiles {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		padding-bottom: 6px;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.vc-tiles .vc-tile { flex: none; width: 208px; scroll-snap-align: start; }
	.vc-offer__l span { display: none; }
	.vc-offer { padding-inline-start: 10px; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
	html { scroll-behavior: auto; }
}

/* ---------------------------------------- 8. toplist, review, landing, page */

.vc-tl { display: grid; gap: 12px; }

.vc-tl__i {
	display: grid;
	grid-template-columns: 46px minmax(0, 1.5fr) minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: 18px 22px;
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r);
	background: var(--vc-surface);
	transition: border-color .16s;
}

.vc-tl__i:hover { border-color: rgba(255, 203, 81, .45); }

.vc-tl__n {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--vc-gold-s);
	color: var(--vc-gold);
	font-weight: 800;
	font-size: 17px;
}

.vc-tl__main { display: grid; gap: 7px; min-width: 0; }
.vc-tl__name { font-weight: 800; font-size: 17px; }
.vc-tl__tags { display: flex; flex-wrap: wrap; gap: 6px; }

.vc-tl__tag {
	padding: 4px 10px;
	border: 1px solid var(--vc-line);
	border-radius: 999px;
	color: var(--vc-mute);
	font-size: 12px;
	font-weight: 600;
}

.vc-tl__bonus { display: grid; gap: 2px; min-width: 0; }
.vc-tl__sum { font-weight: 800; font-size: 21px; color: var(--vc-gold); line-height: 1.15; }
.vc-tl__cond { color: var(--vc-mute); font-size: 13px; }
.vc-tl__go { display: grid; justify-items: end; gap: 9px; }

.vc-rate { display: inline-flex; align-items: center; gap: 7px; }
.vc-rate__stars { display: inline-flex; gap: 2px; color: var(--vc-line-2); }
.vc-rate__s.is-on { color: var(--vc-gold); }
.vc-rate__n { font-weight: 800; font-size: 14px; }

.vc-review {
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r-lg);
	background:
		radial-gradient(80% 160% at 0% 0%, rgba(255, 203, 81, .14), transparent 58%),
		var(--vc-surface);
	overflow: hidden;
}

.vc-review__head { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; padding: 24px clamp(20px, 3vw, 30px); }
.vc-review__mark { display: inline-flex; align-items: center; }
.vc-review__txt { display: grid; gap: 4px; }
.vc-review__note { color: var(--vc-mute); font-size: 14px; }
.vc-review__cta { margin-inline-start: auto; }

.vc-review__facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--vc-line); }

.vc-fact {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px clamp(18px, 2.4vw, 26px);
	border-inline-end: 1px solid var(--vc-line);
	border-bottom: 1px solid var(--vc-line);
}

/* The card clips its own edge, so the outer grid lines would double it. */
.vc-fact:nth-child(3n) { border-inline-end: 0; }
.vc-fact:nth-last-child(-n+3) { border-bottom: 0; }

.vc-fact__i { display: grid; place-items: center; width: 38px; height: 38px; flex: none; border-radius: 11px; background: var(--vc-gold-s); color: var(--vc-gold); }
.vc-fact__t { display: grid; gap: 1px; }
.vc-fact__k { color: var(--vc-mute); font-size: 13px; }
.vc-fact__v { font-weight: 800; font-size: 15.5px; }

.vc-pros { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.vc-pro {
	display: grid;
	align-content: start;
	gap: 10px;
	padding: 22px;
	border: 1px solid var(--vc-line);
	border-radius: var(--vc-r);
	background: var(--vc-surface);
}

.vc-pro__t { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 16px; }
.vc-pro--plus .vc-pro__t .vc-ico { color: var(--vc-new); }
.vc-pro--minus .vc-pro__t .vc-ico { color: var(--vc-gold); }
.vc-pro ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.vc-pro li { position: relative; padding-inline-start: 18px; color: var(--vc-mute); font-size: 14.5px; }
.vc-pro li::before { content: ''; position: absolute; inset-block-start: 9px; inset-inline-start: 0; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.vc-pro--plus li::before { background: var(--vc-new); }
.vc-pro--minus li::before { background: var(--vc-gold-d); }

.vc-land {
	display: grid;
	gap: 16px;
	justify-items: center;
	padding: clamp(34px, 6vw, 64px) clamp(20px, 4vw, 48px);
	border: 1px solid rgba(255, 203, 81, .28);
	border-radius: var(--vc-r-lg);
	background:
		radial-gradient(70% 130% at 50% 0%, rgba(255, 203, 81, .18), transparent 64%),
		var(--vc-surface);
	text-align: center;
}

.vc-land__k { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border: 1px solid rgba(255, 203, 81, .36); border-radius: 999px; color: var(--vc-gold); font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; }
.vc-land__h { font-weight: 800; font-size: clamp(30px, 4.6vw, 52px); line-height: 1.08; letter-spacing: -.025em; }
.vc-land__s { max-width: 58ch; color: var(--vc-mute); font-size: 16px; }
.vc-land__row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 900px) {
	.vc-tl__i { grid-template-columns: 40px minmax(0, 1fr); row-gap: 14px; }
	.vc-tl__bonus, .vc-tl__go { grid-column: 2; }
	.vc-tl__go { justify-items: start; }
	.vc-review__facts { grid-template-columns: 1fr 1fr; }
	.vc-pros { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
	.vc-review__facts { grid-template-columns: 1fr; }
}
