@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('manrope-cyr-ext.woff2') format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('manrope-cyr.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Manrope';
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url('manrope-lat.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Design tokens, taken from the operator's own brand: crimson and yellow on
   near-black, no blue anywhere. The two accents carry different jobs and are
   never swapped — red is identity (the mark, badges, active states, heading
   rules, hover borders), yellow is money and action (CTA buttons, sums, odds,
   ratings, links). Everything else is the ink/graphite scale. Sizes step on a
   4px grid. */
:root {
	--bg: #08080a;
	--bg-2: #0f0f13;
	--surface: #16161b;
	--surface-2: #1d1d24;
	--line: #2b2b34;
	--line-soft: rgba(255, 255, 255, .08);
	--red: #e50037;
	--red-lt: #ff2b5c;
	--yellow: #ffe600;
	--yellow-lt: #fff35c;
	--on-yellow: #12120b;
	--text: #fff;
	--muted: #a3a3ae;
	--dim: #8a8a96;
	--live: #17ff8b;
	--warn: #ff4d5e;

	--wrap: 1220px;
	--gut: 16px;

	--s1: 4px;
	--s2: 8px;
	--s3: 12px;
	--s4: 16px;
	--s5: 24px;
	--s6: 32px;
	--s7: 48px;
	--s8: 64px;
	--s9: 88px;

	--r-xs: 8px;
	--r-sm: 12px;
	--r-md: 18px;
	--r-lg: 26px;
	--r-pill: 999px;

	--sect-y: 44px;
	--bar-h: 76px;
}

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

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	overflow-wrap: break-word;
	/* The sticky action bar floats over the last section on phones. */
	padding-bottom: var(--bar-h);
}

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

a { color: var(--yellow-lt); text-decoration: none; }
a:hover { color: var(--yellow); }

button { font: inherit; color: inherit; }

[hidden] { display: none !important; }

::selection { background: var(--yellow); color: var(--on-yellow); }

:focus-visible { outline: 2px solid var(--yellow-lt); outline-offset: 3px; }

.skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	padding: var(--s3) var(--s5);
	background: var(--yellow);
	color: var(--on-yellow);
	border-radius: 0 0 var(--r-sm) 0;
	font-weight: 700;
}
.skip:focus { left: 0; }

/* ---- layout primitives ------------------------------------------------ */

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

.sect { padding-block: var(--sect-y); }
.sect--tight { padding-block: var(--s6); }

/* Stacked sections share one gap instead of adding both paddings. */
.sect + .sect,
.sect + .promo,
.promo + .plate,
.sect + .plate { padding-block-start: 0; }

.sect__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: var(--s2) var(--s5);
	margin-bottom: var(--s5);
}

.sect__t {
	display: block;
	font-size: clamp(24px, 5vw, 34px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.02em;
}

.sect__sub {
	display: block;
	color: var(--muted);
	font-size: 15px;
	max-width: 62ch;
}

.sect__more {
	margin-inline-start: auto;
	font-weight: 700;
	font-size: 14px;
	white-space: nowrap;
}

.grid {
	display: grid;
	gap: var(--s4);
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--s2);
	min-height: 46px;
	padding: 0 var(--s5);
	border: 1px solid transparent;
	border-radius: var(--r-pill);
	font-weight: 700;
	font-size: 15px;
	line-height: 1.1;
	text-align: center;
	cursor: pointer;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--cta {
	background: linear-gradient(180deg, var(--yellow-lt), var(--yellow));
	color: var(--on-yellow);
}
.btn--cta:hover { background: var(--yellow-lt); color: var(--on-yellow); }

.btn--ghost {
	background: transparent;
	border-color: var(--line);
	color: var(--text);
}
.btn--ghost:hover { border-color: var(--red); color: var(--red-lt); }

.btn--solid {
	background: var(--surface-2);
	border-color: var(--line);
	color: var(--text);
}
.btn--solid:hover { border-color: var(--red); color: var(--red-lt); }

.btn--lg { min-height: 54px; padding-inline: var(--s6); font-size: 16px; }
.btn--block { width: 100%; }

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

.chip {
	display: inline-flex;
	align-items: center;
	gap: var(--s2);
	padding: 5px var(--s3);
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	background: rgba(29, 29, 36, .7);
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}
.chip--red { border-color: rgba(229, 0, 55, .5); color: var(--red-lt); background: rgba(229, 0, 55, .12); }
.chip--live { border-color: rgba(23, 255, 139, .35); color: var(--live); background: rgba(23, 255, 139, .1); }
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }

.chips { display: flex; flex-wrap: wrap; gap: var(--s2); list-style: none; margin: 0; padding: 0; }

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

.head {
	position: sticky;
	top: 0;
	z-index: 60;
	background: linear-gradient(180deg, var(--bg-2), #0f0f1350);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line-soft);
}

.head__in {
	display: flex;
	align-items: center;
	gap: var(--s4);
	min-height: 64px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); }
.logo:hover { color: var(--text); }
.logo img { width: 36px; height: 36px; flex: none; }
.logo__text {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1;
	white-space: nowrap;
}
.logo__text b { color: var(--red-lt); font-weight: 800; }

.head__nav { display: none; }

.head__act { margin-inline-start: auto; display: flex; align-items: center; gap: var(--s2); }
.head__act .btn { min-height: 40px; padding-inline: var(--s4); font-size: 14px; }
.head__act .btn--ghost { display: none; }

.burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: transparent;
	cursor: pointer;
}
.burger__bar { display: block; height: 2px; border-radius: 2px; background: var(--text); }

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

.overlay {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(0, 0, 0, .74);
	backdrop-filter: blur(2px);
}

.drawer {
	position: fixed;
	inset-block: 0;
	inset-inline-end: 0;
	z-index: 80;
	width: min(340px, 86vw);
	display: flex;
	flex-direction: column;
	gap: var(--s5);
	padding: var(--s5);
	background: var(--bg-2);
	border-inline-start: 1px solid var(--line);
	overflow-y: auto;
	transform: translateX(105%);
	transition: transform .24s ease;
}
.drawer.is-open { transform: translateX(0); }

.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); }

.drawer__close {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: transparent;
	cursor: pointer;
}

.drawer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s1); }
.drawer__list a {
	display: block;
	padding: var(--s3) var(--s4);
	border-radius: var(--r-sm);
	color: var(--text);
	font-weight: 600;
}
.drawer__list a:hover { background: var(--surface); color: var(--yellow-lt); }

.drawer__act { display: grid; gap: var(--s2); margin-top: auto; }

/* ---- sticky mobile CTA ------------------------------------------------ */

.bar {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 55;
	display: flex;
	align-items: center;
	gap: var(--s3);
	padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
	background: linear-gradient(180deg, rgba(15, 15, 19, .94), var(--bg-2));
	border-top: 1px solid var(--line);
}
.bar__text { display: flex; flex-direction: column; min-width: 0; }
.bar__cap { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.bar__val { font-size: 15px; font-weight: 800; color: var(--yellow); line-height: 1.2; }
.bar .btn { margin-inline-start: auto; flex: none; }

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

.hero {
	position: relative;
	padding-block: var(--s6) var(--sect-y);
	background:
		radial-gradient(120% 90% at 85% 0%, rgba(229, 0, 55, .12), transparent 62%),
		radial-gradient(90% 70% at 0% 10%, rgba(255, 230, 0, .05), transparent 60%),
		linear-gradient(180deg, var(--bg-2), var(--bg));
	overflow: hidden;
}

.hero__in { display: grid; gap: var(--s6); }

.hero__text { display: grid; gap: var(--s4); justify-items: start; }

.hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: var(--s2);
	padding: 5px var(--s3);
	border: 1px solid rgba(229, 0, 55, .5);
	border-radius: var(--r-pill);
	background: rgba(229, 0, 55, .12);
	color: var(--red-lt);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em;
}

.hero__t {
	display: block;
	margin: 0;
	font-size: clamp(30px, 8vw, 54px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -.03em;
}
.hero__t em { font-style: normal; color: var(--red); }

.hero__sub {
	display: block;
	max-width: 56ch;
	color: var(--muted);
	font-size: clamp(15px, 3.6vw, 17px);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s3); width: 100%; }
.hero__cta .btn { flex: 1 1 200px; }

.hero__terms { display: block; color: var(--dim); font-size: 12px; line-height: 1.5; max-width: 60ch; }

.facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
	gap: var(--s2);
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fact {
	padding: var(--s3) var(--s4);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: rgba(22, 22, 27, .7);
}
.fact__v { display: block; font-size: clamp(17px, 4.6vw, 21px); font-weight: 800; color: var(--yellow); line-height: 1.2; }
.fact__c { display: block; font-size: 12px; color: var(--muted); }

/* media zone */
/* Phones: the top-match card leads the hero, above the headline. */
.hero__media { position: relative; order: -1; }

.hero__shot {
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	/* the scrim lives in the same box as the art, so the seam lands on any width */
	background: var(--surface);
}
.hero__shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hero__shot::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 8, 10, .12) 0%, rgba(8, 8, 10, .2) 46%, rgba(8, 8, 10, .88) 100%);
}

.slip {
	position: relative;
	z-index: 2;
	margin: -56px var(--s4) 0;
	padding: var(--s4);
	display: grid;
	gap: var(--s3);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: rgba(15, 15, 19, .93);
	backdrop-filter: blur(8px);
}
.slip__top { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); }
.slip__league { font-size: 12px; color: var(--muted); font-weight: 600; }
.slip__teams { display: block; font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.slip__when { display: block; font-size: 12px; color: var(--muted); }
.slip__odds { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s2); }
.odd {
	display: grid;
	gap: 2px;
	padding: var(--s2) var(--s3);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: var(--surface);
	text-align: center;
}
.odd--up { border-color: rgba(255, 230, 0, .45); background: rgba(255, 230, 0, .1); }
.odd__k { font-size: 12px; color: var(--muted); font-weight: 600; }
.odd__v { font-size: 17px; font-weight: 800; color: var(--text); }
.odd--up .odd__v { color: var(--yellow); }
.slip__note { font-size: 11px; color: var(--dim); line-height: 1.45; }

/* ---- universal card grid (casino + sports) ---------------------------- */

.tiles { display: grid; gap: var(--s3); grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Sport cards are media rows, not picture tiles — one column on a phone. */
.tiles--sport { grid-template-columns: minmax(0, 1fr); gap: var(--s3); }

.tile {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--surface);
	overflow: hidden;
	color: var(--text);
	transition: border-color .18s ease, transform .18s ease;
}
.tile:hover { border-color: var(--red); color: var(--text); transform: translateY(-2px); }

.tile__art { position: relative; display: block; }
.tile__art img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.tile__art::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 38%, rgba(22, 22, 27, .94) 100%);
}

.tile__badge {
	position: absolute;
	inset-block-start: var(--s2);
	inset-inline-start: var(--s2);
	z-index: 2;
}

.tile__body {
	display: grid;
	gap: 2px;
	padding: var(--s3) var(--s4) var(--s4);
	margin-top: -26px;
	position: relative;
	z-index: 2;
}
.tile__t { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.01em; }
.tile__m { display: block; font-size: 13px; color: var(--muted); }

.tile__go {
	margin-top: var(--s2);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--red-lt);
}
.tile__go svg { width: 14px; height: 14px; flex: none; }

/* sport cards carry a markets line instead of a lead */
.tile--sport {
	flex-direction: row;
	align-items: center;
	gap: var(--s4);
	padding: var(--s3);
}
.tile--sport .tile__art {
	flex: none;
	width: 88px;
	border-radius: var(--r-sm);
	overflow: hidden;
}
.tile--sport .tile__art img { aspect-ratio: 1 / 1; }
.tile--sport .tile__art::after { display: none; }
.tile--sport .tile__body { margin-top: 0; padding: 0; min-width: 0; }

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

.promo { padding-block: var(--sect-y); }

.promo__box {
	position: relative;
	display: grid;
	gap: var(--s5);
	padding: var(--s6) var(--s5);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	isolation: isolate;
}
.promo__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.promo__box::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(70% 120% at 100% 0%, rgba(229, 0, 55, .32), transparent 58%),
		linear-gradient(180deg, rgba(15, 15, 19, .93), rgba(8, 8, 10, .96));
}

.promo__text { display: grid; gap: var(--s3); justify-items: start; }
.promo__text > .steps { margin-top: var(--s2); }
.promo__kicker { display: block; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red-lt); }
.promo__t { display: block; font-size: clamp(26px, 6.4vw, 42px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.promo__lead { display: block; color: var(--muted); max-width: 52ch; }

.promo__side { display: grid; gap: var(--s4); align-content: start; }

.promo__sum {
	display: grid;
	gap: 2px;
	padding: var(--s4) var(--s5);
	border: 1px solid rgba(255, 230, 0, .4);
	border-radius: var(--r-md);
	background: rgba(255, 230, 0, .08);
	text-align: center;
}
.promo__num { display: block; font-size: clamp(34px, 9vw, 52px); font-weight: 800; line-height: 1; color: var(--yellow); letter-spacing: -.03em; }
.promo__unit { display: block; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.promo__small { display: block; font-size: 11px; color: var(--dim); line-height: 1.5; }

.steps { display: grid; gap: var(--s3); width: 100%; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); list-style: none; margin: 0; padding: 0; }
.step {
	display: grid;
	gap: 4px;
	padding: var(--s4);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: rgba(22, 22, 27, .7);
}
.step__n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--red);
	color: var(--text);
	font-size: 14px;
	font-weight: 800;
}
.step__t { display: block; font-weight: 800; }
.step__x { display: block; font-size: 14px; color: var(--muted); }

/* ---- content plate ---------------------------------------------------- */

.plate { padding-block: var(--sect-y); }

.prose {
	padding: var(--s5) var(--s5) var(--s6);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--surface);
	font-size: 16px;
}
.prose > :first-child { margin-top: 0; }
.prose > :last-child { margin-bottom: 0; }

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
	margin: 1.6em 0 .5em;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.02em;
}
.prose h1 { font-size: clamp(27px, 6vw, 38px); margin-top: 0; }
.prose h2 { font-size: clamp(22px, 4.6vw, 28px); }
.prose h3 { font-size: clamp(19px, 4vw, 22px); }
.prose h4 { font-size: 17px; }

.prose h2::after {
	content: "";
	display: block;
	width: 52px;
	height: 3px;
	margin-top: var(--s3);
	border-radius: 2px;
	background: var(--red);
}

.prose p, .prose ul, .prose ol, .prose table, .prose blockquote, .prose figure { margin: 0 0 1.1em; }
.prose ul, .prose ol { padding-inline-start: 1.25em; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--red-lt); }

/* Definition lists (term + explanation): the term in bold, the explanation
   under a red rule, like the list markers. */
.prose dl { margin: 0 0 1.1em; }
.prose dt { margin-top: var(--s4); color: var(--text); font-weight: 800; }
.prose dt:first-child { margin-top: 0; }
.prose dd { margin: var(--s2) 0 0; padding-inline-start: var(--s4); border-inline-start: 2px solid var(--red); color: var(--muted); }

.prose img { display: block; height: auto; margin: var(--s4) auto; border-radius: var(--r-md); }

.prose a { text-decoration: underline; text-underline-offset: 3px; }

.prose blockquote {
	padding: var(--s4) var(--s5);
	border-inline-start: 3px solid var(--red);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	background: rgba(29, 29, 36, .7);
	color: var(--muted);
}

.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
/* Tables size to their content inside a scroll wrapper: natural width, never
   narrower than the column, long prose cells wrap, short ones stay on one line. */
.prose .table-scroll { overflow-x: auto; margin: 0 0 1.1em; -webkit-overflow-scrolling: touch; border-radius: var(--r-sm); }
.prose .table-scroll table { width: max-content; min-width: 100%; margin: 0; }
.prose .table-scroll th { white-space: nowrap; }
.prose .table-scroll td { max-width: 38ch; }
.prose th, .prose td { padding: var(--s3) var(--s4); border: 1px solid var(--line); text-align: start; }
.prose th { background: var(--surface-2); font-weight: 700; }

.prose hr { border: 0; border-top: 1px solid var(--line); margin: var(--s6) 0; }

/* ---- inner page header (crumbs + title) ------------------------------- */

.inner { padding-block: var(--s6) 0; display: grid; gap: var(--s3); }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2); font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--yellow-lt); }
.crumbs__sep { color: var(--line); }
.crumbs__now { color: var(--text); }

.inner__t {
	display: block;
	margin: 0;
	font-size: clamp(28px, 6.4vw, 44px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.03em;
}
.inner__upd { font-size: 13px; color: var(--muted); }

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

.ranks { display: grid; gap: var(--s4); padding-block: var(--s6) 0; }

.rank {
	display: grid;
	gap: var(--s4);
	padding: var(--s5);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--surface);
}
.rank--top { border-color: rgba(229, 0, 55, .55); background: linear-gradient(180deg, rgba(229, 0, 55, .12), var(--surface) 46%); }

.rank__main { display: grid; gap: var(--s4); align-content: start; }
.rank__head { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.rank__n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: var(--r-sm);
	background: var(--surface-2);
	border: 1px solid var(--line);
	font-weight: 800;
	color: var(--red-lt);
}
.rank--top .rank__n { background: var(--red); border-color: var(--red); color: var(--text); }
.rank__t { display: block; font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.rank__lead { display: block; color: var(--muted); font-size: 15px; }

.rank__facts { display: grid; gap: var(--s3); margin: 0; grid-template-columns: minmax(0, 1fr); }
.rank__facts > div { padding: var(--s3) var(--s4); border: 1px solid var(--line); border-radius: var(--r-sm); background: rgba(15, 15, 19, .6); }
.rank__facts dt { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.rank__facts dd { margin: 2px 0 0; font-weight: 700; }
.rank__gives { color: var(--yellow); }

.rank__side { display: grid; gap: var(--s2); justify-items: start; }
.rank__small { font-size: 11px; color: var(--dim); }

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

.rev {
	display: grid;
	gap: var(--s5);
	margin-top: var(--s6);
	padding: var(--s5);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: linear-gradient(180deg, var(--surface-2), var(--surface) 60%);
}

.rev__id { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: var(--s4); }
.rev__id .rev__logo { grid-column: 1; grid-row: 1; }
.rev__id .rev__score { grid-column: 2; grid-row: 1; justify-self: end; }
.rev__id .rev__names { grid-column: 1 / -1; grid-row: 2; }
.rev__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	flex: none;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--bg-2);
	font-size: 22px;
	font-weight: 800;
	color: var(--red-lt);
	letter-spacing: .02em;
}
.rev__names { display: grid; gap: 2px; }
.rev__t { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.rev__rate { display: inline-flex; align-items: center; gap: var(--s2); font-size: 14px; color: var(--muted); }

.stars { position: relative; display: inline-block; line-height: 0; color: var(--line); }
.stars svg { display: inline-block; fill: currentColor; }
.stars__fg { position: absolute; inset-block-start: 0; inset-inline-start: 0; overflow: hidden; white-space: nowrap; color: var(--yellow); }

.rev__score { display: grid; justify-items: center; padding: var(--s3) var(--s4); border: 1px solid rgba(255, 230, 0, .4); border-radius: var(--r-md); background: rgba(255, 230, 0, .08); }
.rev__score-v { font-size: 26px; font-weight: 800; color: var(--yellow); line-height: 1; }
.rev__score-c { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.rev__facts { display: grid; gap: var(--s2); margin: 0; grid-template-columns: minmax(0, 1fr); }
.rev__facts > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s3);
	padding: var(--s3) var(--s4);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: rgba(15, 15, 19, .6);
}
.rev__facts dt { font-size: 13px; color: var(--muted); }
.rev__facts dd { margin: 0; font-weight: 700; text-align: end; }

.rev__cta { display: grid; gap: var(--s3); justify-items: start; padding-top: var(--s4); border-top: 1px solid var(--line); }
.rev__bonus-c { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.rev__bonus-v { display: block; font-size: 20px; font-weight: 800; color: var(--yellow); }
.rev__small { font-size: 11px; color: var(--dim); }

.pc { display: grid; gap: var(--s4); margin-top: var(--s5); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.pc__col { padding: var(--s5); border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
.pc__col--pro { border-inline-start: 3px solid var(--live); }
.pc__col--con { border-inline-start: 3px solid var(--warn); }
.pc__t { display: block; font-weight: 800; margin-bottom: var(--s3); }
.pc__col ul { margin: 0; padding-inline-start: 1.1em; color: var(--muted); }
.pc__col li { margin-bottom: .4em; }
.pc__col--pro li::marker { color: var(--live); }
.pc__col--con li::marker { color: var(--warn); }

.verdict { padding-bottom: var(--sect-y); }
.verdict__box {
	display: grid;
	gap: var(--s4);
	justify-items: start;
	padding: var(--s6) var(--s5);
	border: 1px solid rgba(229, 0, 55, .4);
	border-radius: var(--r-lg);
	background: linear-gradient(140deg, rgba(229, 0, 55, .14), var(--surface) 55%);
}
.verdict__t { display: block; font-size: 22px; font-weight: 800; }
.verdict__x { display: block; color: var(--muted); max-width: 70ch; }

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

.lhero {
	padding-block: var(--s7) var(--s6);
	background:
		radial-gradient(90% 80% at 80% 0%, rgba(229, 0, 55, .18), transparent 58%),
		linear-gradient(180deg, var(--bg-2), var(--bg));
}
.lhero__in { display: grid; gap: var(--s5); justify-items: start; }
.lhero__t { display: block; margin: 0; font-size: clamp(30px, 8vw, 52px); font-weight: 800; line-height: 1.06; letter-spacing: -.03em; }
.lhero__sub { display: block; color: var(--muted); max-width: 58ch; font-size: 17px; }

.lcard {
	display: grid;
	gap: var(--s4);
	width: 100%;
	padding: var(--s5);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--surface);
}
.lcard__facts { display: grid; gap: var(--s2); margin: 0; }
.lcard__facts > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s3);
	padding: var(--s3) var(--s4);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: rgba(15, 15, 19, .6);
}
.lcard__facts dt { font-size: 12px; color: var(--muted); }
.lcard__facts dd { margin: 0; font-weight: 800; color: var(--yellow); text-align: end; }
.lcard__small { font-size: 11px; color: var(--dim); }

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

.foot {
	margin-top: var(--s7);
	background: linear-gradient(180deg, var(--bg-2), #050507);
	border-top: 1px solid var(--line);
}

.foot__top { display: grid; gap: var(--s6); padding-block: var(--s7) var(--s6); }

.foot__brand { display: grid; gap: var(--s3); justify-items: start; }
.foot__blurb { color: var(--muted); font-size: 14px; max-width: 46ch; }

.foot__cols { display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.foot__h { display: block; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--red-lt); margin-bottom: var(--s3); }
.foot__cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s2); }
.foot__cols a { color: var(--muted); font-size: 14px; }
.foot__cols a:hover { color: var(--yellow-lt); }

.foot__mid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--s3);
	padding-block: var(--s5);
	border-top: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
}
.foot__age {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: none;
	border: 2px solid var(--warn);
	border-radius: 50%;
	color: var(--warn);
	font-weight: 800;
	font-size: 13px;
}

.foot__legal { display: grid; gap: var(--s3); padding-block: var(--s5) var(--s7); }
.foot__legal p { margin: 0; font-size: 12px; color: var(--dim); line-height: 1.6; }
.foot__legal a { color: var(--muted); }

/* ---- breakpoints ------------------------------------------------------ */

@media (min-width: 560px) {
	:root { --gut: 20px; --sect-y: 56px; }
	.tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.tiles--sport { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s4); }
	.rank__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.rev__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3); }
	.rev__id { grid-template-columns: auto minmax(0, 1fr) auto; }
	.rev__id .rev__names { grid-column: 2; grid-row: 1; }
	.rev__id .rev__score { grid-column: 3; }
	.hero__cta .btn { flex: 0 1 auto; }
}

@media (min-width: 900px) {
	:root { --sect-y: 64px; }

	.hero { padding-block: var(--s8) var(--sect-y); }
	.hero__in { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: var(--s7); }
	.hero__media { order: 0; align-self: stretch; display: grid; align-content: center; }
	.slip { margin-inline: var(--s6); }

	.promo__box { grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); align-items: center; padding: var(--s8) var(--s7); }
	.promo__side { justify-items: stretch; }

	.rank { grid-template-columns: minmax(0, 1fr) 230px; align-items: center; }
	.rank__side { justify-items: stretch; }

	.rev { padding: var(--s6); }
	.rev__cta { grid-template-columns: 1fr auto; align-items: center; column-gap: var(--s5); }
	.rev__cta .rev__small { grid-column: 1 / -1; }

	.lhero__in { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; column-gap: var(--s7); }
	.lhero__in > .lhero__kicker, .lhero__in > .lhero__t, .lhero__in > .lhero__sub { grid-column: 1; }
	.lcard { grid-column: 2; grid-row: 1 / span 4; }

	.tiles--sport { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.tile--sport .tile__art { width: 96px; }

	.rev__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	.prose { padding: var(--s7); }

	.foot__top { grid-template-columns: minmax(0, .85fr) minmax(0, 1.6fr); gap: var(--s8); }
}

@media (min-width: 1024px) {
	.head__in { min-height: 76px; gap: var(--s5); }
	.head__nav {
		display: flex;
		align-items: center;
		gap: var(--s1);
		margin-inline-start: var(--s4);
	}
	.head__nav a {
		padding: var(--s2) var(--s3);
		border-radius: var(--r-xs);
		color: var(--muted);
		font-size: 15px;
		font-weight: 600;
		white-space: nowrap;
	}
	.head__nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
	.head__nav a.is-active { color: var(--red-lt); }
	.head__act .btn--ghost { display: inline-flex; }
	.burger { display: none; }
	.bar { display: none; }
	:root { --bar-h: 0px; }
	body { padding-bottom: 0; }
}

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

.lsw { position: relative; }
.lsw__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 40px;
	padding: 0 var(--s3);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: transparent;
	color: var(--text);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}
.lsw__btn:hover, .lsw.is-open .lsw__btn { border-color: rgba(229, 0, 55, .6); }
.lsw__globe { color: var(--muted); }
.lsw__caret { color: var(--muted); transition: transform .18s ease; }
.lsw.is-open .lsw__caret { transform: rotate(180deg); }
.lsw__panel {
	position: absolute;
	inset-inline-end: 0;
	top: calc(100% + 8px);
	z-index: 90;
	min-width: 200px;
	margin: 0;
	padding: var(--s2);
	list-style: none;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--bg-2);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.lsw.is-open .lsw__panel { opacity: 1; visibility: visible; transform: none; }
.lsw__opt {
	display: flex;
	align-items: center;
	gap: var(--s3);
	padding: var(--s2) var(--s3);
	border-radius: var(--r-xs);
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
}
.lsw__opt b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 24px;
	border-radius: 6px;
	background: var(--surface-2);
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}
.lsw__opt:hover { background: var(--surface); color: var(--text); }
.lsw__opt.is-on { color: var(--red-lt); }
.lsw__opt.is-on b { background: var(--red); color: #fff; }

.lsw--hdr { display: none; }
.lsw--drawer .lsw__btn { width: 100%; justify-content: flex-start; min-height: 46px; }
.lsw--drawer .lsw__caret { margin-inline-start: auto; }
.lsw--drawer .lsw__panel { position: static; margin-top: var(--s2); box-shadow: none; display: none; transform: none; }
.lsw--drawer.is-open .lsw__panel { display: block; }

.drawer__list a.is-active { color: var(--red-lt); background: var(--surface); }

/* footer language tiles */
.langs { display: flex; flex-wrap: wrap; gap: var(--s2); margin: var(--s2) 0 0; padding: 0; list-style: none; }
.langs__opt {
	display: inline-flex;
	align-items: center;
	gap: var(--s2);
	padding: 6px var(--s3) 6px 6px;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
}
.langs__opt b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 22px;
	border-radius: var(--r-pill);
	background: var(--surface-2);
	font-size: 11px;
	font-weight: 800;
}
.langs__opt:hover { color: var(--text); border-color: rgba(229, 0, 55, .5); }
.langs__opt.is-on { color: var(--text); border-color: rgba(229, 0, 55, .6); }
.langs__opt.is-on b { background: var(--red); color: #fff; }

/* ---- match card (hero) ------------------------------------------------ */

.duel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: var(--s3);
}
.duel__team { display: flex; align-items: center; gap: var(--s2); min-width: 0; }
.duel__team--away { flex-direction: row-reverse; text-align: end; }
.duel__mono {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--surface-2);
	color: var(--text);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .04em;
}
.duel__name { font-size: 15px; font-weight: 800; line-height: 1.2; letter-spacing: -.01em; }
.duel__vs { color: var(--dim); font-size: 12px; font-weight: 700; text-transform: uppercase; }
/* Long club names (Галатасарай) do not fit beside the monogram on a phone:
   stack the monogram over the name there. */
@media (max-width: 480px) {
	.duel__team, .duel__team--away { flex-direction: column; text-align: center; }
}
a.odd { color: var(--text); transition: border-color .15s ease, background .15s ease; }
a.odd:hover { border-color: rgba(255, 230, 0, .55); background: rgba(255, 230, 0, .12); color: var(--text); }
.slip--match .btn { min-height: 44px; }

@media (min-width: 1024px) {
	.lsw--hdr { display: block; }
	.lsw--drawer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	* { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
