/**
 * "jetton_1" (template 50) — cloned from our own JetTon property.
 *
 * Field #0b0c0d, flat #141517 surfaces hair-lined with rgba(169,175,181,.12),
 * one acid-lime CTA (#bbeb00) that always carries black text, Inter 400–800.
 * Radii come straight off the source: 6px chips, 8px buttons, 12px cards and
 * banners, 16px on the big panels.
 *
 * Block prefixes:
 *   .jt-rail   → left navigation (labelled ≥1280, icons 1024–1280, drawer below)
 *   .jt-top    → top bar        .jt-bar   → mobile bottom tab bar
 *   .jt-wrap   → 1400px content measure
 *   .jt-game   → portrait game card, always inside a scroll-snap rail
 *
 * Breakpoints: 1280 (rail loses labels), 1024 (rail becomes a drawer, bottom
 * bar appears), 900 (banners become a rail), 720, 430.
 */

:root {
	--jt-bg: #0b0c0d;
	--jt-surface: #141517;
	--jt-surface-2: #1b1d1f;
	--jt-line: rgba(169, 175, 181, .12);
	--jt-line-2: rgba(169, 175, 181, .2);
	--jt-accent: #bbeb00;
	--jt-accent-d: #a5d000;
	--jt-text: #f4f5f6;
	--jt-muted: #9fa5ac;
	--jt-muted-2: #6f757c;
	--jt-win: #bbeb00;
	--jt-r-sm: 6px;
	--jt-r-md: 8px;
	--jt-r-lg: 12px;
	--jt-r-xl: 16px;
	--jt-rail-w: 200px;
	--jt-rail-icon-w: 60px;
	--jt-top-h: 68px;
	--jt-ease: .2s ease;
	--jt-shadow: 0 18px 50px rgba(0, 0, 0, .6);
}

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

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

body {
	margin: 0;
	background: var(--jt-bg);
	color: var(--jt-text);
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	overflow-x: hidden;
}

body.jt-drawer { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.jt-ico { display: block; flex: none; color: currentColor; fill: currentColor; }

.jt-skip {
	position: fixed;
	top: -60px;
	left: 12px;
	z-index: 90;
	padding: 10px 16px;
	border-radius: var(--jt-r-md);
	background: var(--jt-accent);
	color: #000;
	font-weight: 700;
	transition: top var(--jt-ease);
}
.jt-skip:focus { top: 12px; }

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

.jt-shell { display: flex; min-height: 100vh; }

.jt-col {
	display: flex;
	flex: 1;
	min-width: 0;
	flex-direction: column;
	margin-left: var(--jt-rail-w);
	transition: margin-left var(--jt-ease);
}

.jt-main { flex: 1; padding: 20px 24px 60px; }
.jt-wrap { width: min(1400px, 100%); margin: 0 auto; }
.jt-sec { margin-top: 28px; }

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

.jt-rail {
	position: fixed;
	z-index: 60;
	top: 0;
	left: 0;
	display: flex;
	width: var(--jt-rail-w);
	height: 100vh;
	flex-direction: column;
	background: var(--jt-surface);
	border-right: 1px solid var(--jt-line);
	/* Folding to the icon strip and unfolding back are both animated, so the
	   rail slides shut instead of snapping. */
	transition: width var(--jt-ease);
}

.jt-rail__head {
	display: flex;
	height: var(--jt-top-h);
	flex: none;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	border-bottom: 1px solid var(--jt-line);
}
.jt-rail__toggle,
.jt-rail__close { display: grid; padding: 6px; color: var(--jt-muted); transition: color var(--jt-ease); }
.jt-rail__toggle:hover,
.jt-rail__close:hover { color: var(--jt-text); }
.jt-rail__close { display: none; }
/* The wordmark lives in the top bar on desktop; the rail only shows it once it
   becomes the drawer, where no top bar is behind it. */
.jt-rail .jt-rail__mark { display: none; }

.jt-mark { display: inline-flex; align-items: center; }
.jt-mark__img { display: block; width: auto; }
.jt-mark__text { display: inline-flex; align-items: center; gap: 8px; }
.jt-mark__word {
	font-size: calc(var(--jt-mark-h, 20px) * .9);
	font-weight: 800;
	letter-spacing: -.5px;
	white-space: nowrap;
}

.jt-rail__seg {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	margin: 10px;
	padding: 4px;
	border-radius: var(--jt-r-md);
	background: var(--jt-surface-2);
}
.jt-seg {
	display: flex;
	height: 30px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border-radius: var(--jt-r-sm);
	color: var(--jt-muted);
	font-size: 13px;
	font-weight: 600;
	transition: background var(--jt-ease), color var(--jt-ease);
}
.jt-seg.is-active { background: var(--jt-accent); color: #000; }
.jt-seg:not(.is-active):hover { color: var(--jt-text); }

.jt-rail__search {
	display: flex;
	height: 34px;
	align-items: center;
	gap: 10px;
	margin: 0 10px 10px;
	padding: 0 10px;
	border-radius: var(--jt-r-md);
	background: var(--jt-surface-2);
	color: var(--jt-muted);
	font-size: 14px;
	font-weight: 500;
}
.jt-rail__search:hover { color: var(--jt-text); }

.jt-rail__nav {
	flex: 1;
	min-height: 0;
	padding: 0 6px 10px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--jt-line-2) transparent;
	overscroll-behavior: contain;
}
.jt-rail__nav::-webkit-scrollbar { width: 6px; }
.jt-rail__nav::-webkit-scrollbar-thumb { border-radius: 3px; background: var(--jt-line-2); }

.jt-rail__grp {
	display: block;
	padding: 10px 9px 3px;
	color: var(--jt-muted);
	font-size: 12px;
	font-weight: 600;
}

.jt-nav__i {
	display: flex;
	height: 34px;
	align-items: center;
	gap: 10px;
	padding: 0 9px;
	border-radius: var(--jt-r-md);
	color: var(--jt-text);
	font-size: 14px;
	font-weight: 500;
	transition: background var(--jt-ease), color var(--jt-ease);
}
.jt-nav__i:hover { background: var(--jt-surface-2); }
.jt-nav__i .jt-nav__ico { color: var(--jt-muted); transition: color var(--jt-ease); }
.jt-nav__i:hover .jt-nav__ico { color: var(--jt-text); }
.jt-nav__i.is-active { background: rgba(187, 235, 0, .1); color: var(--jt-accent); }
.jt-nav__i.is-active .jt-nav__ico { color: var(--jt-accent); }

.jt-rail__foot {
	display: grid;
	flex: none;
	gap: 4px;
	padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
	border-top: 1px solid var(--jt-line);
}
.jt-rail__help {
	display: flex;
	height: 34px;
	align-items: center;
	gap: 10px;
	padding: 0 9px;
	border-radius: var(--jt-r-md);
	color: var(--jt-muted);
	font-size: 14px;
	font-weight: 500;
}
.jt-rail__help:hover { background: var(--jt-surface-2); color: var(--jt-text); }

.jt-scrim {
	position: fixed;
	z-index: 55;
	inset: 0;
	visibility: hidden;
	background: rgba(0, 0, 0, .6);
	opacity: 0;
	/* Visibility waits out the fade, so closing the drawer dims away instead
	   of blinking off. */
	transition: opacity var(--jt-ease), visibility 0s linear .2s;
}
body.jt-drawer .jt-scrim { visibility: visible; opacity: 1; transition: opacity var(--jt-ease); }

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

.jt-top {
	position: sticky;
	z-index: 40;
	top: 0;
	display: flex;
	height: var(--jt-top-h);
	align-items: center;
	gap: 14px;
	padding: 0 24px;
	background: rgba(11, 12, 13, .92);
	border-bottom: 1px solid var(--jt-line);
	backdrop-filter: blur(12px);
}
.jt-burger { display: none; padding: 8px; margin-left: -8px; }
.jt-top__mark { display: inline-flex; }
.jt-top__auth { display: flex; margin-left: auto; gap: 8px; }

.jt-btn {
	display: inline-flex;
	height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 16px;
	border-radius: var(--jt-r-md);
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	transition: background var(--jt-ease), color var(--jt-ease), transform var(--jt-ease);
}
.jt-btn:active { transform: translateY(1px); }
.jt-btn--primary { background: var(--jt-accent); color: #000; }
.jt-btn--primary:hover { background: var(--jt-accent-d); }
.jt-btn--ghost { background: rgba(169, 175, 181, .12); color: var(--jt-text); }
.jt-btn--ghost:hover { background: rgba(169, 175, 181, .2); }
.jt-btn--dark { background: rgba(0, 0, 0, .8); color: #fff; }
.jt-btn--dark:hover { background: #000; }
.jt-btn--block { width: 100%; }

.jt-wheel {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 16px 6px 8px;
	border-radius: 999px;
	background: linear-gradient(120deg, #1b2ea8, #4b1ea8);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .1), 0 8px 26px rgba(59, 30, 168, .5);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.15;
}
.jt-wheel__disc {
	position: relative;
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: 50%;
	background:
		conic-gradient(#f5325b 0 45deg, #ffd400 45deg 90deg, #2ec5ff 90deg 135deg, #f5325b 135deg 180deg,
		#ffd400 180deg 225deg, #2ec5ff 225deg 270deg, #f5325b 270deg 315deg, #ffd400 315deg 360deg);
	box-shadow: 0 0 0 3px #12143a;
}
.jt-wheel__disc::after {
	position: absolute;
	inset: 34%;
	border-radius: 50%;
	background: #fff;
	content: "";
}
.jt-wheel__n {
	display: inline-flex;
	width: 20px;
	height: 20px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #ff4d3d;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

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

.jt-banners { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; align-items: stretch; }
/* The wide banner fixes the row height off its own aspect ratio; the two side
   banners fill that height and crop, which is how the source lays them out. */
.jt-banner {
	display: block;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background: var(--jt-surface);
}
.jt-banner--wide { aspect-ratio: 764 / 429; }
.jt-banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.jt-banner:hover img { transform: scale(1.03); }

/* --------------------------------------------------------------- toolbar */

.jt-toolbar { display: flex; align-items: center; gap: 12px; margin-top: 20px; }

.jt-tabs {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-md);
	background: var(--jt-surface);
	overflow-x: auto;
	scrollbar-width: none;
}
.jt-tabs::-webkit-scrollbar { display: none; }
.jt-tab {
	display: inline-flex;
	height: 40px;
	flex: none;
	align-items: center;
	gap: 8px;
	padding: 0 16px;
	border-radius: var(--jt-r-sm);
	color: var(--jt-muted);
	font-size: 15px;
	font-weight: 600;
	transition: background var(--jt-ease), color var(--jt-ease);
}
.jt-tab:hover { color: var(--jt-text); }
.jt-tab.is-active { background: var(--jt-accent); color: #000; }

.jt-search {
	display: flex;
	height: 48px;
	flex: 1;
	align-items: center;
	gap: 10px;
	padding: 0 16px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-md);
	background: var(--jt-surface);
	color: var(--jt-muted);
	font-size: 14px;
}
.jt-search:hover { border-color: var(--jt-line-2); color: var(--jt-text); }

/* ----------------------------------------------------------- rail headers */

.jt-shead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}
.jt-shead__t { font-size: 20px; font-weight: 700; letter-spacing: -.3px; }
.jt-shead__ctl { display: flex; align-items: center; gap: 6px; }

.jt-pill {
	display: inline-flex;
	height: 36px;
	align-items: center;
	padding: 0 12px;
	border-radius: var(--jt-r-sm);
	background: rgba(169, 175, 181, .12);
	color: var(--jt-text);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	transition: background var(--jt-ease);
}
.jt-pill:hover { background: rgba(169, 175, 181, .2); }

.jt-arrow {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: var(--jt-r-sm);
	background: rgba(169, 175, 181, .12);
	color: var(--jt-text);
	transition: background var(--jt-ease), opacity var(--jt-ease);
}
.jt-arrow:hover { background: rgba(169, 175, 181, .2); }
.jt-arrow[disabled] { opacity: .35; pointer-events: none; }

/* ------------------------------------------------------------ game cards */

.jt-rail-wrap { position: relative; margin: 0 -24px; padding: 0 24px; }
.jt-games {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	/* No scroll-snap-type here: Chromium keeps re-snapping the track while the
	   cover images load, which makes Lighthouse report NO_LCP and errors the
	   whole trace. overflow-x alone keeps the rail and the arrow buttons. */
	scroll-behavior: smooth;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.jt-games::-webkit-scrollbar { display: none; }

.jt-game {
	flex: 0 0 clamp(132px, 12vw, 176px);
	scroll-snap-align: start;
}
.jt-game__shot {
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background: var(--jt-surface);
	aspect-ratio: 256 / 344;
}
.jt-game__shot img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.jt-game:hover .jt-game__shot img { transform: scale(1.05); }

.jt-game__veil {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(0, 0, 0, .55);
	opacity: 0;
	transition: opacity var(--jt-ease);
}
.jt-game:hover .jt-game__veil,
.jt-game:focus-visible .jt-game__veil { opacity: 1; }
.jt-game__play {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 15px;
	border-radius: var(--jt-r-md);
	background: var(--jt-accent);
	color: #000;
	font-size: 14px;
	font-weight: 700;
}

.jt-game__prov {
	position: absolute;
	right: 8px;
	bottom: 8px;
	left: 8px;
	overflow: hidden;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .55);
	color: rgba(255, 255, 255, .82);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .6px;
	text-align: center;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
	backdrop-filter: blur(6px);
}

.jt-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	padding: 4px 10px;
	border-radius: var(--jt-r-lg) 0 var(--jt-r-lg) 0;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .5px;
	text-transform: uppercase;
}
.jt-badge--excl { background: #ff2d78; color: #fff; }
.jt-badge--early { background: #2ea6ff; color: #06202f; }
.jt-badge--top { background: var(--jt-accent); color: #000; }

/* ---------------------------------------------------------- random strip */

.jt-random {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 28px;
	padding: 26px 28px;
	overflow: hidden;
	border-radius: var(--jt-r-xl);
	background: linear-gradient(100deg, #93b800, var(--jt-accent) 60%, #d6f45a);
	color: #101200;
}
.jt-random__in { display: grid; gap: 6px; justify-items: start; }
.jt-random__t { font-size: 24px; font-weight: 800; line-height: 1.15; letter-spacing: -.5px; }
.jt-random__n { color: rgba(16, 18, 0, .72); font-size: 14px; font-weight: 600; }
.jt-random .jt-btn { margin-top: 8px; }
.jt-random__art { display: flex; flex: none; gap: 10px; }
.jt-random__art img {
	width: 92px;
	height: 124px;
	border-radius: var(--jt-r-md);
	object-fit: cover;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}
.jt-random__art img:nth-child(2) { transform: translateY(-10px) scale(1.06); }

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

.jt-promos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.jt-promo {
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background: var(--jt-surface);
	aspect-ratio: 764 / 429;
}
.jt-promo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .4s ease;
}
.jt-promo:hover img { transform: scale(1.04); }
.jt-promo__txt {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: grid;
	gap: 3px;
	padding: 42px 18px 16px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88) 62%);
}
.jt-promo__kick {
	color: var(--jt-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .6px;
	text-transform: uppercase;
}
.jt-promo__t { font-size: 18px; font-weight: 800; letter-spacing: -.3px; }
.jt-promo__n { color: var(--jt-muted); font-size: 13px; font-weight: 500; }

/* ------------------------------------------------------------ bets table */

/* Compact by design: the feed is decoration under the copy, so the rows are
   tighter and the covers smaller than in a game rail. */
.jt-bets { margin-top: 4px; }
/* The tab row scrolls inside itself instead of stretching the section header
   past the viewport — with flex:none it widened the whole page on a phone. */
.jt-tabs--bets { flex: 0 1 auto; min-width: 0; max-width: 100%; }
.jt-tabs--bets .jt-tab { height: 32px; padding: 0 12px; font-size: 13px; }
.jt-tabs--bets .jt-tab.is-active { background: var(--jt-surface-2); color: var(--jt-text); }

.jt-bets__scroll { overflow-x: auto; scrollbar-width: thin; }
.jt-bets__t { width: 100%; border-collapse: collapse; min-width: 660px; }
.jt-bets__t th {
	padding: 7px 12px;
	color: var(--jt-muted);
	font-size: 12px;
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
}
.jt-bets__t td { padding: 5px 12px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.jt-bets__t tbody tr { border-radius: var(--jt-r-md); }
.jt-bets__t tbody tr:nth-child(odd) { background: var(--jt-surface); }
.jt-bets__t tbody tr:nth-child(odd) td:first-child { border-radius: var(--jt-r-md) 0 0 var(--jt-r-md); }
.jt-bets__t tbody tr:nth-child(odd) td:last-child { border-radius: 0 var(--jt-r-md) var(--jt-r-md) 0; }

.jt-bets__g { display: flex; align-items: center; gap: 10px; }
.jt-bets__g img { width: 28px; height: 38px; flex: none; border-radius: var(--jt-r-sm); object-fit: cover; }
.jt-bets__g > span { display: grid; gap: 1px; }
.jt-bets__prov { color: var(--jt-muted); font-size: 11px; font-weight: 500; }
.jt-bets__name { font-size: 13px; font-weight: 700; }
.jt-bets__u { color: var(--jt-muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.jt-bets__x { color: var(--jt-text); }
.jt-bets__sum { display: flex; align-items: center; gap: 7px; }
.jt-bets__sum.is-win { color: var(--jt-win); }
.jt-bets__sum.is-loss { color: var(--jt-muted); }
.jt-coin {
	width: 16px;
	height: 16px;
	flex: none;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #7bd66a, #2f9c3f);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .25);
}

/* ------------------------------------------------------- content + aside */

/* The sidebar sits UNDER the copy, not beside it: a card rail beside a text
   column ate too much width from the reading measure. One column at every
   width, with the aside cards spreading into a 3-up strip below the article. */
.jt-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
	margin-top: 32px;
	align-items: start;
}
.jt-split__main { min-width: 0; }

.jt-aside { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
/* Side by side the three cards carry different amounts of copy, so they
   stretch to the tallest one and pin their CTA to the bottom edge. */
.jt-aside .jt-card { display: flex; flex-direction: column; }
.jt-aside .jt-card .jt-btn { margin-top: auto; }

.jt-card {
	display: grid;
	gap: 9px;
	padding: 18px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background: var(--jt-surface);
}
.jt-card--bonus {
	background:
		radial-gradient(120% 100% at 100% 0, rgba(187, 235, 0, .18), transparent 60%),
		var(--jt-surface);
}
.jt-card--help {
	background:
		linear-gradient(90deg, var(--jt-surface) 42%, rgba(20, 21, 23, .3)),
		url("../img/support.webp") right center / cover no-repeat;
}
.jt-card__kick {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--jt-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .5px;
	text-transform: uppercase;
}
.jt-card__sum { font-size: 40px; font-weight: 800; line-height: 1; letter-spacing: -1.4px; }
.jt-card__note { color: var(--jt-muted); font-size: 14px; font-weight: 500; line-height: 1.5; max-width: 30ch; }
.jt-card__head { display: inline-flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 700; }
.jt-card .jt-btn { margin-top: 6px; }

.jt-247 {
	padding: 2px 8px;
	border-radius: 999px;
	background: var(--jt-accent);
	color: #000;
	font-size: 11px;
	font-weight: 800;
}

.jt-tops { display: grid; gap: 2px; }
.jt-tops__i {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 7px;
	border-radius: var(--jt-r-md);
	color: var(--jt-muted);
	transition: background var(--jt-ease), color var(--jt-ease);
}
.jt-tops__i:hover { background: var(--jt-surface-2); color: var(--jt-text); }
.jt-tops__i img { width: 36px; height: 48px; flex: none; border-radius: var(--jt-r-sm); object-fit: cover; }
.jt-tops__n {
	width: 18px;
	flex: none;
	color: var(--jt-muted-2);
	font-size: 14px;
	font-weight: 800;
	text-align: center;
}
.jt-tops__txt { display: grid; gap: 1px; min-width: 0; margin-right: auto; }
.jt-tops__name {
	overflow: hidden;
	color: var(--jt-text);
	font-size: 14px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.jt-tops__prov { color: var(--jt-muted-2); font-size: 12px; font-weight: 500; }

/* -------------------------------------------------------------- CMS copy */

.jt-copy {
	padding: 24px 26px 28px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-xl);
	background: var(--jt-surface);
}
.jt-phead { padding-bottom: 16px; border-bottom: 1px solid var(--jt-line); }
.jt-phead h1 {
	margin: 0;
	font-size: clamp(25px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -.8px;
}
.jt-phead p { margin: 10px 0 0; color: var(--jt-muted); font-size: 15px; font-weight: 500; line-height: 1.6; }

.jt-content { margin-top: 20px; color: #dfe3e7; font-weight: 400; line-height: 1.7; }
.jt-content h2,
.jt-content h3,
.jt-content h4 {
	margin: 28px 0 12px;
	color: var(--jt-text);
	font-weight: 800;
	line-height: 1.24;
	letter-spacing: -.4px;
}
.jt-content h2 { font-size: 25px; }
.jt-content h3 { font-size: 20px; }
.jt-content h4 { font-size: 17px; }
.jt-content p { margin: 0 0 15px; }
.jt-content a { color: var(--jt-accent); text-decoration: underline; text-underline-offset: 3px; }
.jt-content a:hover { color: #d3ff33; }
.jt-content ul,
.jt-content ol { margin: 0 0 16px; padding-left: 22px; }
.jt-content li { margin-bottom: 8px; }
.jt-content li::marker { color: var(--jt-accent); font-weight: 700; }
/* Content images: centred, capped at 812px, and never upscaled past their own
   pixel size — the UI screenshots are 380–800px wide and stretching them to the
   column width turned them soft. */
.jt-content img {
	display: block;
	width: auto;
	max-width: min(812px, 100%);
	height: auto;
	margin: 18px auto;
	border-radius: var(--jt-r-lg);
}
/* Interface screenshots (login form, registration, wheel, phone view) share one
   rendered height, so a page that mixes portrait and near-square screens still
   reads as one set. */
.jt-content img.jt-shot { max-height: 520px; }
.jt-content blockquote {
	margin: 20px 0;
	padding: 15px 20px;
	border-left: 3px solid var(--jt-accent);
	border-radius: 0 var(--jt-r-md) var(--jt-r-md) 0;
	background: var(--jt-surface-2);
	color: var(--jt-text);
}
.jt-content strong { color: var(--jt-text); font-weight: 700; }
.jt-tscroll { margin: 18px 0; overflow-x: auto; }
.jt-content table {
	width: 100%;
	border-collapse: collapse;
	border-radius: var(--jt-r-md);
	overflow: hidden;
	font-size: 14px;
}
.jt-content th,
.jt-content td { padding: 11px 14px; border-bottom: 1px solid var(--jt-line); text-align: left; }
.jt-content th { color: var(--jt-text); background: var(--jt-surface-2); font-weight: 700; white-space: nowrap; }

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

.jt-foot { padding: 24px 24px 40px; border-top: 1px solid var(--jt-line); }
.jt-foot__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 24px;
}

.jt-foot__cols {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) 320px;
	gap: 24px;
	padding-bottom: 28px;
}
.jt-foot__col { display: grid; gap: 10px; align-content: start; }
.jt-foot__t { color: var(--jt-accent); font-size: 15px; font-weight: 700; }
.jt-foot__col a { color: var(--jt-muted); font-size: 14px; font-weight: 500; transition: color var(--jt-ease); }
.jt-foot__col a:hover { color: var(--jt-text); }

.jt-support {
	display: grid;
	gap: 8px;
	align-content: start;
	justify-items: start;
	padding: 18px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background:
		linear-gradient(90deg, var(--jt-surface) 40%, rgba(20, 21, 23, .25)),
		url("../img/support.webp") right center / cover no-repeat;
}
.jt-support__t { display: inline-flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 700; }
.jt-support__n { max-width: 20ch; color: var(--jt-muted); font-size: 14px; font-weight: 500; }
.jt-support .jt-btn { height: 40px; margin-top: 4px; }

.jt-foot__mid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	border-top: 1px solid var(--jt-line);
	border-bottom: 1px solid var(--jt-line);
	flex-wrap: wrap;
}
.jt-pays { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.jt-pay {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	background: var(--jt-surface);
	box-shadow: inset 0 0 0 1px var(--jt-line);
}
.jt-pay img { display: block; width: 22px; height: 22px; }
.jt-pay--more { color: var(--jt-muted); font-size: 12px; font-weight: 700; }
.jt-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.jt-social {
	display: inline-flex;
	height: 40px;
	align-items: center;
	gap: 8px;
	padding: 0 14px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-md);
	background: var(--jt-surface);
	font-size: 14px;
	font-weight: 600;
	transition: border-color var(--jt-ease), background var(--jt-ease);
}
.jt-social:hover { background: var(--jt-surface-2); border-color: var(--jt-line-2); }

.jt-foot__bottom { padding-top: 20px; }
.jt-foot__bottom p { margin: 0; color: var(--jt-muted-2); font-size: 13px; line-height: 1.6; }
.jt-foot__copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 14px;
	color: var(--jt-muted); font-size: 13px; font-weight: 500;
}
/* Age gate: the red-ringed disc players already read as "adults only",
   rather than a grey circle that disappears into the legal line. */
.jt-age {
	display: inline-grid;
	width: 40px;
	height: 40px;
	flex: none;
	place-items: center;
	border: 2px solid #e5484d;
	border-radius: 50%;
	background: rgba(229, 72, 77, .1);
	color: #ff7b7f;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -.2px;
	line-height: 1;
	white-space: nowrap;
}

/* --------------------------------------------------- mobile bar + support */

.jt-bar {
	position: fixed;
	z-index: 50;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	align-items: center;
	justify-content: space-around;
	height: calc(62px + env(safe-area-inset-bottom));
	padding-bottom: env(safe-area-inset-bottom);
	background: rgba(20, 21, 23, .96);
	border-top: 1px solid var(--jt-line);
	backdrop-filter: blur(14px);
}
.jt-bar__i {
	display: grid;
	flex: 1;
	justify-items: center;
	gap: 4px;
	padding: 6px 2px;
	color: var(--jt-muted);
	font-size: 11px;
	font-weight: 600;
}
.jt-bar__i.is-active { color: var(--jt-accent); }
.jt-bar__wheel {
	position: relative;
	display: grid;
	width: 58px;
	height: 58px;
	flex: none;
	place-items: center;
	margin-top: -26px;
	border: 4px solid var(--jt-bg);
	border-radius: 50%;
	background: linear-gradient(120deg, #1b2ea8, #4b1ea8);
}
.jt-bar__wheel .jt-wheel__disc { width: 38px; height: 38px; box-shadow: none; }
.jt-bar__wheel-n {
	position: absolute;
	top: -2px;
	right: -2px;
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 50%;
	background: #ff4d3d;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
}

.jt-fab {
	position: fixed;
	z-index: 45;
	right: 18px;
	bottom: 18px;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: var(--jt-r-lg);
	background: var(--jt-accent);
	color: #000;
	box-shadow: var(--jt-shadow);
	transition: transform var(--jt-ease);
}
.jt-fab:hover { transform: translateY(-2px); }

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

@media (max-width: 1280px) {
	.jt-col { margin-left: var(--jt-rail-icon-w); }
	.jt-rail { width: var(--jt-rail-icon-w); }
	.jt-rail__head { justify-content: center; padding: 0 8px; }
	.jt-rail__head .jt-mark { overflow: hidden; width: 30px; }
	.jt-rail__seg { grid-template-columns: 1fr; margin: 8px 6px; }
	.jt-seg { height: 36px; }
	.jt-rail__search { justify-content: center; margin: 0 6px 8px; padding: 0; }
	.jt-seg__l { display: none; }
	.jt-rail__grp { display: none; }
	.jt-rail__nav { padding: 0 6px 10px; }
	/* Icon strip: the labels go entirely, so a row is just its glyph. */
	.jt-nav__i { height: 40px; justify-content: center; gap: 0; padding: 0; }
	.jt-nav__l { display: none; }
	.jt-rail__foot { padding: 8px 6px calc(8px + env(safe-area-inset-bottom)); justify-items: center; }
	.jt-rail__help { justify-content: center; padding: 0; }
	.jt-foot__cols { grid-template-columns: repeat(2, minmax(0, 1fr)) 300px; }
}

/* Desktop collapse: the rail head's burger folds the rail down to the icon
 * strip, the same shape the 1280px breakpoint produces. */
@media (min-width: 1025px) {
	body.jt-slim .jt-col{ margin-left: var(--jt-rail-icon-w); }
	body.jt-slim .jt-rail{ width: var(--jt-rail-icon-w); }
	body.jt-slim .jt-rail__head{ justify-content: center; padding: 0 8px; }
	body.jt-slim .jt-rail__head .jt-mark{ overflow: hidden; width: 30px; }
	body.jt-slim .jt-rail__seg{ grid-template-columns: 1fr; margin: 8px 6px; }
	body.jt-slim .jt-seg{ height: 36px; }
	body.jt-slim .jt-rail__search{ justify-content: center; margin: 0 6px 8px; padding: 0; }
	body.jt-slim .jt-seg__l{ display: none; }
	body.jt-slim .jt-rail__grp{ display: none; }
	body.jt-slim .jt-rail__nav{ padding: 0 6px 10px; }
	body.jt-slim .jt-nav__i{ height: 40px; justify-content: center; gap: 0; padding: 0; }
	body.jt-slim .jt-nav__l{ display: none; }
	body.jt-slim .jt-rail__foot{ padding: 8px 6px calc(8px + env(safe-area-inset-bottom)); justify-items: center; }
	body.jt-slim .jt-rail__help{ justify-content: center; padding: 0; }
}

@media (max-width: 1024px) {
	.jt-rail {
		width: min(260px, 80vw);
		transform: translateX(-102%);
		box-shadow: var(--jt-shadow);
		transition: transform var(--jt-ease);
	}
	/* Off-canvas, the drawer must not be reachable by keyboard or screen
	   reader; visibility flips only after the slide-out has finished. */
	.jt-rail { visibility: hidden; transition: transform var(--jt-ease), visibility 0s linear .2s; }
	body.jt-drawer .jt-rail { transform: none; visibility: visible; transition: transform var(--jt-ease); }
	.jt-rail__head { justify-content: space-between; padding: 0 16px; }
	.jt-rail__head .jt-mark { width: auto; }
	.jt-rail__close { display: grid; }
	.jt-rail__seg { grid-template-columns: 1fr 1fr; margin: 10px; }
	.jt-seg__l { display: inline; }
	.jt-rail__search { justify-content: flex-start; margin: 0 10px 10px; padding: 0 10px; }
	.jt-rail__grp { display: block; }
	.jt-rail__nav { padding: 0 6px 10px; }
	.jt-nav__i { height: 34px; flex-direction: row; justify-content: flex-start; gap: 10px; padding: 0 9px; }
	.jt-nav__l { display: block; font-size: 14px; font-weight: 500; }
	.jt-rail__foot { justify-items: stretch; padding: 10px 8px; }
	.jt-rail__help { justify-content: flex-start; padding: 0 9px; }

	.jt-col { margin-left: 0; }
	.jt-burger { display: grid; }
	.jt-top__mark { display: inline-flex; }
	.jt-wheel { display: none; }
	.jt-bar { display: flex; }
	.jt-main { padding: 16px 16px calc(84px + env(safe-area-inset-bottom)); }
	.jt-top { padding: 0 16px; }
	.jt-foot { padding: 20px 16px calc(84px + env(safe-area-inset-bottom)); }
	.jt-rail-wrap { margin: 0 -16px; padding: 0 16px; }
	.jt-fab { bottom: calc(76px + env(safe-area-inset-bottom)); }
}

@media (max-width: 900px) {
	.jt-banners {
		display: flex;
		gap: 10px;
		margin: 0 -16px;
		padding: 0 16px;
		overflow-x: auto;
		/* Same reason as the game rails: snapping this banner track breaks the
		   LCP measurement on the phone layout, where the banner IS the LCP. */
		scrollbar-width: none;
	}
	.jt-banners::-webkit-scrollbar { display: none; }
	/* In the rail each banner sizes itself off its own artwork instead of
	   stretching to the tallest one, so the landscape slide keeps its shape. */
	.jt-banners { align-items: start; }
	.jt-banner { height: auto; flex: 0 0 min(88%, 520px); scroll-snap-align: center; aspect-ratio: 764 / 429; }
	.jt-banner:not(.jt-banner--wide) { flex-basis: min(52%, 300px); aspect-ratio: 384 / 438; }
	.jt-promos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jt-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jt-card--help { grid-column: 1 / -1; }
	.jt-foot__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jt-support { grid-column: 1 / -1; }
	.jt-random__art img:nth-child(3) { display: none; }
}

@media (max-width: 720px) {
	/* Title on one line, tab row scrolling on the next. */
	.jt-bets .jt-shead { flex-wrap: wrap; }
	.jt-tabs--bets { flex: 1 1 100%; }
	.jt-toolbar { flex-direction: column; align-items: stretch; }
	.jt-search { height: 44px; order: -1; }
	.jt-shead__t { font-size: 18px; }
	.jt-shead__ctl .jt-arrow { display: none; }
	.jt-random { flex-direction: column; align-items: flex-start; padding: 22px; }
	.jt-random__art { align-self: center; }
	.jt-aside { grid-template-columns: minmax(0, 1fr); }
	.jt-copy { padding: 20px 16px 22px; }
	.jt-content h2 { font-size: 21px; }
	.jt-content h3 { font-size: 18px; }
	.jt-foot__mid { flex-direction: column; align-items: flex-start; }
	.jt-top__auth .jt-btn--ghost { display: none; }
}

@media (max-width: 430px) {
	.jt-promos { grid-template-columns: minmax(0, 1fr); }
	.jt-foot__cols { grid-template-columns: minmax(0, 1fr); }
	.jt-random__art img { width: 78px; height: 104px; }
	.jt-btn { height: 40px; padding: 0 13px; font-size: 14px; }
}

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

@media (max-width: 1024px) {
	.jt-rail__toggle { display: none; }
	.jt-rail .jt-rail__mark { display: inline-flex; }
}

@media (min-width: 1025px) {
	/* Keep the age badge clear of the floating support button. */
	.jt-foot__copy { padding-right: 78px; }
}

/* ------------------------------------------ toplist / review / landing */

/* These page types open with their own block instead of the banner trio, so
   the first section hugs the top bar the way .jt-banners does. */
.jt-sec--first { margin-top: 0; }

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

.jt-tl { display: grid; gap: 10px; }

.jt-tl__i {
	display: grid;
	grid-template-columns: 36px 128px minmax(0, 1fr) 220px;
	align-items: center;
	gap: 18px;
	padding: 16px 18px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background: var(--jt-surface);
	transition: border-color var(--jt-ease), background var(--jt-ease);
}
.jt-tl__i:hover { border-color: var(--jt-line-2); background: var(--jt-surface-2); }
/* Rank one wears the accent the same way the source marks its top offer. */
.jt-tl__i--top {
	background:
		radial-gradient(90% 140% at 0 0, rgba(187, 235, 0, .14), transparent 62%),
		var(--jt-surface);
	border-color: rgba(187, 235, 0, .32);
}

.jt-tl__rank {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: var(--jt-r-md);
	background: var(--jt-surface-2);
	color: var(--jt-muted);
	font-size: 15px;
	font-weight: 800;
}
.jt-tl__i--top .jt-tl__rank { background: var(--jt-accent); color: #000; }

/* A text plate rather than an operator logo: the template ships no
   third-party brand artwork, a live site swaps in its own. */
.jt-tl__logo {
	display: grid;
	height: 72px;
	place-items: center;
	padding: 0 10px;
	overflow: hidden;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-md);
	background: var(--jt-surface-2);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -.3px;
	line-height: 1.2;
	text-align: center;
	/* Operator names come from per-site data and can be long, so the plate
	   wraps them instead of clipping mid-word. */
	overflow-wrap: anywhere;
}

.jt-tl__body { display: grid; min-width: 0; gap: 7px; }
.jt-tl__name { font-size: 17px; font-weight: 700; letter-spacing: -.2px; }
.jt-tl__bonus {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--jt-accent);
	font-size: 14px;
	font-weight: 700;
}
.jt-tl__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.jt-tl__tag {
	padding: 4px 9px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-sm);
	color: var(--jt-muted);
	font-size: 12px;
	font-weight: 600;
}

.jt-tl__side { display: grid; gap: 8px; justify-items: stretch; }
.jt-tl__side .jt-btn { height: 40px; font-size: 14px; }

.jt-rate { display: inline-flex; align-items: center; gap: 9px; justify-content: center; }
.jt-rate__n { font-size: 18px; font-weight: 800; letter-spacing: -.4px; }
.jt-stars { display: inline-flex; gap: 2px; }
.jt-stars i { display: inline-flex; color: var(--jt-muted-2); }
.jt-stars i.is-on { color: var(--jt-accent); }

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

.jt-rev {
	display: grid;
	grid-template-columns: 148px minmax(0, 1fr) 240px;
	align-items: center;
	gap: 22px;
	padding: 22px;
	border: 1px solid rgba(187, 235, 0, .3);
	border-radius: var(--jt-r-xl);
	background:
		radial-gradient(80% 160% at 0 0, rgba(187, 235, 0, .16), transparent 60%),
		var(--jt-surface);
}
.jt-rev__logo {
	display: grid;
	height: 96px;
	place-items: center;
	padding: 0 12px;
	overflow: hidden;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background: var(--jt-surface-2);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.4px;
	line-height: 1.2;
	text-align: center;
	/* The subject is the CMS page title — often a full sentence — so it wraps. */
	overflow-wrap: anywhere;
}
.jt-rev__body { display: grid; min-width: 0; gap: 10px; justify-items: start; }
.jt-rev__name { font-size: 24px; font-weight: 800; letter-spacing: -.6px; }
.jt-rev__side { display: grid; gap: 8px; }

.jt-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 10px;
}
.jt-fact {
	display: grid;
	align-content: start;
	gap: 5px;
	padding: 14px 16px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background: var(--jt-surface);
}
.jt-fact__k { color: var(--jt-muted); font-size: 12px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }
.jt-fact__v { font-size: 16px; font-weight: 700; }

.jt-pc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.jt-pc__b {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 20px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background: var(--jt-surface);
}
.jt-pc__t { display: inline-flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 700; }
.jt-pc__l { display: grid; gap: 10px; }
.jt-pc__l li { display: grid; grid-template-columns: 15px minmax(0, 1fr); align-items: start; gap: 10px; color: var(--jt-muted); font-size: 14px; font-weight: 500; line-height: 1.5; }
.jt-pc__l .jt-ico { margin-top: 4px; }
.jt-pc--plus .jt-pc__t,
.jt-pc--plus .jt-pc__l .jt-ico { color: var(--jt-accent); }
.jt-pc--minus .jt-pc__t,
.jt-pc--minus .jt-pc__l .jt-ico { color: #ff6b6b; }

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

.jt-lhero {
	display: grid;
	gap: 12px;
	justify-items: start;
	padding: 40px;
	border: 1px solid rgba(187, 235, 0, .28);
	border-radius: var(--jt-r-xl);
	background:
		radial-gradient(70% 130% at 0 0, rgba(187, 235, 0, .2), transparent 62%),
		var(--jt-surface);
}
.jt-lhero--end { padding: 32px; text-align: left; }
.jt-lhero__sum { font-size: 68px; font-weight: 800; line-height: 1; letter-spacing: -2.6px; }
.jt-lhero__t { font-size: 24px; font-weight: 700; letter-spacing: -.5px; }
.jt-lhero__n { max-width: 62ch; color: var(--jt-muted); font-size: 15px; font-weight: 500; line-height: 1.6; }
.jt-lhero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.jt-lhero__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 4px; }
.jt-lhero__meta span { display: inline-flex; align-items: center; gap: 8px; color: var(--jt-muted); font-size: 13px; font-weight: 600; }
.jt-lhero__meta .jt-ico { color: var(--jt-accent); }

.jt-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.jt-step {
	display: grid;
	align-content: start;
	gap: 8px;
	justify-items: start;
	padding: 20px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background: var(--jt-surface);
}
.jt-step__n {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border-radius: var(--jt-r-md);
	background: var(--jt-accent);
	color: #000;
	font-size: 15px;
	font-weight: 800;
}
.jt-step__t { font-size: 16px; font-weight: 700; }
.jt-step__d { color: var(--jt-muted); font-size: 14px; font-weight: 500; line-height: 1.5; }

.jt-perks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.jt-perk {
	display: grid;
	align-content: start;
	gap: 8px;
	justify-items: start;
	padding: 20px;
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-lg);
	background: var(--jt-surface);
}
.jt-perk__ico {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: var(--jt-r-md);
	background: rgba(187, 235, 0, .14);
	color: var(--jt-accent);
}
.jt-perk__t { font-size: 16px; font-weight: 700; }
.jt-perk__n { color: var(--jt-muted); font-size: 14px; font-weight: 500; line-height: 1.5; }

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

/* The plain page type drops every decorative block, so the copy panel is the
   whole page and gets a narrower measure than the article's full width. */
.jt-plain { width: min(880px, 100%); margin: 0 auto; }

@media (max-width: 1024px) {
	.jt-tl__i { grid-template-columns: 32px 104px minmax(0, 1fr); grid-template-areas: 'rank logo body' 'side side side'; }
	.jt-tl__rank { grid-area: rank; width: 32px; height: 32px; }
	.jt-tl__logo { grid-area: logo; height: 60px; }
	.jt-tl__body { grid-area: body; }
	.jt-tl__side { grid-area: side; grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
	.jt-rev { grid-template-columns: 120px minmax(0, 1fr); }
	.jt-rev__side { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jt-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jt-steps,
	.jt-perks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jt-lhero { padding: 28px; }
	.jt-lhero__sum { font-size: 54px; letter-spacing: -2px; }
}

@media (max-width: 720px) {
	/* The plate only repeats the name at this width, so the row drops it and
	   keeps rank + details + CTAs. */
	.jt-tl__i { grid-template-columns: 32px minmax(0, 1fr); grid-template-areas: 'rank body' 'side side'; gap: 12px; padding: 14px; }
	.jt-tl__logo { display: none; }
	.jt-rev { grid-template-columns: minmax(0, 1fr); padding: 18px; }
	/* The plate would sit directly above the same name in the body. */
	.jt-rev__logo { display: none; }
	.jt-rev__name { font-size: 21px; }
	.jt-pc { grid-template-columns: minmax(0, 1fr); }
	.jt-lhero { padding: 22px; }
	.jt-lhero__sum { font-size: 44px; letter-spacing: -1.6px; }
	.jt-lhero__t { font-size: 20px; }
	.jt-lhero__cta { width: 100%; }
	.jt-lhero__cta .jt-btn { flex: 1 1 160px; }
}

@media (max-width: 430px) {
	.jt-tl__side { grid-template-columns: minmax(0, 1fr); }
	.jt-facts { grid-template-columns: minmax(0, 1fr); }
	.jt-steps,
	.jt-perks { grid-template-columns: minmax(0, 1fr); }
	.jt-rev__side { grid-template-columns: minmax(0, 1fr); }
}
