/* =========================================================================
   roobet_1 — template 42. Design cloned from the source at roobet.com.

   Palette sampled from the live page:
     base       #090c1d   app surface
     surface-1  #191939   toolbar, panels, footer
     surface-2  #2c2852   cards, tiles, table rows
     surface-3  #463e7a   raised chips and hovers
     gold       #ffce00 → #ffb800   the single primary CTA
     violet     #7841ee   secondary accent
     text       #ffffff / #d9d1f4 (soft) / #9789cd (muted) / #7b6cb9 (dim)
     win        #64e300   positive figures in the bets table
   Radii: 12px primary, 8px secondary, 4px on small chips.
   Metrics: 56px toolbar, 56px icon rail — both taken from the source.
   Type: Archivo for display (the source's Excon is not on Google Fonts;
   Archivo carries the same wide geometric grotesque feel), Roboto for body —
   Roboto is the source's own fallback face.

   Tile, hero and category artwork ships with the template under img/ — plates
   drawn for this theme, referenced stylesheet-relative so they resolve both in
   the dashboard preview and on a deployed site.
   ========================================================================= */

:root {
	--rb-bg: #090c1d;
	--rb-s1: #191939;
	--rb-s2: #2c2852;
	--rb-s3: #463e7a;
	--rb-gold: #ffce00;
	--rb-gold-2: #ffb800;
	--rb-violet: #7841ee;
	--rb-text: #fff;
	--rb-soft: #d9d1f4;
	--rb-muted: #9789cd;
	--rb-dim: #7b6cb9;
	--rb-win: #64e300;
	--rb-rail: 224px;
	--rb-top: 56px;
	--rb-inner: 1240px;
	--rb-media: 812px;
	--rb-display: 'Archivo', 'Roboto', -apple-system, 'Segoe UI', Arial, sans-serif;
	--rb-body: 'Roboto', -apple-system, 'Segoe UI', Arial, sans-serif;
}

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

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

body {
	margin: 0;
	background: var(--rb-bg);
	color: var(--rb-text);
	font: 400 15px/1.6 var(--rb-body);
	overflow-x: hidden;
}

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

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

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

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

.rb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 18px;
	border: 0;
	border-radius: 12px;
	background: var(--rb-s2);
	color: var(--rb-text);
	font-family: var(--rb-display);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .2px;
	cursor: pointer;
	transition: filter .2s, background-color .2s;
}

.rb-btn--gold {
	background: linear-gradient(160deg, var(--rb-gold) 0%, var(--rb-gold-2) 100%);
	color: #2a1f00;
}

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

.rb-btn--ghost {
	background: var(--rb-s2);
	color: var(--rb-soft);
}

.rb-btn--ghost:hover {
	background: var(--rb-s3);
	color: var(--rb-text);
}

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

.rb-btn--lg {
	min-height: 50px;
	padding: 14px 32px;
	font-size: 15px;
}

.rb-pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 8px;
	background: var(--rb-s2);
	color: var(--rb-soft);
	font-size: 12px;
	font-weight: 700;
	transition: background-color .2s, color .2s;
}

.rb-pill:hover {
	background: var(--rb-s3);
	color: var(--rb-text);
}

.rb-iconbtn,
.rb-arr {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: var(--rb-s2);
	color: var(--rb-muted);
	cursor: pointer;
	transition: background-color .2s, color .2s;
}

.rb-iconbtn:hover,
.rb-arr:hover {
	background: var(--rb-s3);
	color: var(--rb-text);
}

.rb-arr {
	border-radius: 8px;
	width: 32px;
	height: 32px;
}

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

.rb-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 40;
	height: var(--rb-top);
	padding: 0 16px 0 calc(var(--rb-rail) + 16px);
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--rb-s1);
}

.rb-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-right: auto;
}

/* Coin glyph beside the wordmark — a gold ring, drawn in CSS. */
.rb-logo__coin {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%, transparent 0 38%, var(--rb-gold) 38% 62%, transparent 62%),
		conic-gradient(from 210deg, var(--rb-gold-2), var(--rb-gold), var(--rb-gold-2));
	box-shadow: 0 0 0 1px rgba(255, 206, 0, .35) inset;
}

.rb-logo__txt {
	font-family: var(--rb-display);
	font-size: 19px;
	font-weight: 900;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--rb-gold);
}

.rb-logo--foot .rb-logo__txt {
	font-size: 16px;
}

/* Brand file, when a site ships one: height-locked so any aspect ratio fits
   the 56px toolbar without stretching. */
.rb-logo__img {
	display: block;
	height: 28px;
	width: auto;
	max-width: 210px;
	object-fit: contain;
}

.rb-logo--foot .rb-logo__img {
	height: 24px;
}

.rb-top__act {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* The rail owns its toggle; when it is away, a slim tab at the screen edge
   is the way back. Both stay out of the toolbar. */
.rb-railtab {
	position: fixed;
	top: calc(var(--rb-top) + 12px);
	left: 0;
	z-index: 46;
	display: none;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 0 10px 10px 0;
	background: var(--rb-s2);
	color: var(--rb-muted);
	cursor: pointer;
	transition: background-color .2s, color .2s;
}

.rb-railtab:hover {
	background: var(--rb-s3);
	color: var(--rb-text);
}

body.rb-collapsed .rb-railtab {
	display: flex;
}

/* --- left menu ---------------------------------------------------------- */

/* Sits below the toolbar rather than at y=0 — overlapping it punched a dark
   square through the header band. The column scrolls on its own once the menu
   is taller than the viewport, which it is on short laptop screens. */
.rb-rail {
	position: fixed;
	top: var(--rb-top);
	left: 0;
	bottom: 0;
	z-index: 45;
	width: var(--rb-rail);
	padding: 10px 12px 20px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2px;
	background:
		radial-gradient(120% 40% at 0% 0%, rgba(120, 65, 238, .18) 0%, rgba(120, 65, 238, 0) 60%),
		linear-gradient(180deg, #10132b 0%, var(--rb-bg) 42%);
	border-right: 1px solid rgba(70, 62, 122, .35);
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(120, 65, 238, .55) transparent;
	transition: transform .28s ease;
}

/* Flex children default to flex-shrink: 1, so a menu that does not fit gets
   crushed — the promo card collapsed from ~180px to ~46px on a 768px-tall
   screen — instead of overflowing. Pinning them at their natural height is
   what actually hands the overflow to the scroll container above. */
.rb-rail__toggle,
.rb-railgrp,
.rb-railpromo {
	flex-shrink: 0;
}

/* Thin themed scrollbar; the drawer below hides it again on narrow screens. */
.rb-rail::-webkit-scrollbar {
	width: 8px;
}

.rb-rail::-webkit-scrollbar-track {
	background: transparent;
}

.rb-rail::-webkit-scrollbar-thumb {
	border: 2px solid transparent;
	border-radius: 8px;
	background: rgba(120, 65, 238, .55);
	background-clip: content-box;
}

.rb-rail::-webkit-scrollbar-thumb:hover {
	background: rgba(120, 65, 238, .85);
	background-clip: content-box;
}

body.rb-collapsed .rb-rail {
	transform: translateX(-100%);
}

body.rb-collapsed .rb-main {
	margin-left: 0;
}

body.rb-collapsed .rb-top {
	padding-left: 16px;
}

.rb-rail__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: flex-end;
	width: 32px;
	height: 32px;
	margin-bottom: 6px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--rb-dim);
	cursor: pointer;
	transition: background-color .2s, color .2s;
}

.rb-rail__toggle:hover {
	background: var(--rb-s2);
	color: var(--rb-text);
}

/* Groups: a small caption, then its rows. */
.rb-railgrp {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-bottom: 10px;
	margin-bottom: 8px;
	border-bottom: 1px solid rgba(70, 62, 122, .22);
}

.rb-railgrp:last-of-type {
	border-bottom: 0;
}

.rb-railgrp__cap {
	padding: 6px 12px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--rb-dim);
}

.rb-rail__item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
	height: 40px;
	padding: 0 12px;
	border-radius: 10px;
	color: var(--rb-soft);
	font-size: 14px;
	font-weight: 700;
	transition: background-color .2s, color .2s, transform .2s;
}

/* Gold rod on the leading edge, grown from nothing on hover and pinned open
   on the active row. */
.rb-rail__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 3px;
	height: 0;
	border-radius: 0 3px 3px 0;
	background: linear-gradient(180deg, var(--rb-gold), var(--rb-gold-2));
	transform: translateY(-50%);
	transition: height .2s;
}

.rb-rail__item:hover {
	background: var(--rb-s2);
	color: var(--rb-text);
	transform: translateX(2px);
}

.rb-rail__item:hover::before {
	height: 18px;
}

.rb-rail__item.is-active {
	background: linear-gradient(90deg, rgba(120, 65, 238, .38) 0%, rgba(120, 65, 238, .06) 100%);
	color: var(--rb-text);
}

.rb-rail__item.is-active::before {
	height: 24px;
}

.rb-rail__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	border-radius: 9px;
	background: var(--rb-s2);
	color: var(--rb-muted);
	transition: background-color .2s, color .2s;
}

.rb-rail__item:hover .rb-rail__ico,
.rb-rail__item.is-active .rb-rail__ico {
	background: var(--rb-s3);
	color: var(--rb-gold);
}

/* Labels are part of the menu now, not a hover affordance. */
.rb-rail__lbl {
	flex: 1 1 auto;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rb-rail__badge {
	flex: 0 0 auto;
	padding: 2px 7px;
	border-radius: 6px;
	background: var(--rb-violet);
	color: #fff;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .4px;
}

.rb-rail__badge--hot {
	background: linear-gradient(160deg, var(--rb-gold), var(--rb-gold-2));
	color: #2a1f00;
}

/* Promo card closes the menu: a violet plate with a gold coin, the offer in
   display type and a countdown, so it reads as an offer rather than a link. */
.rb-railpromo {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: auto;
	padding: 16px 14px 14px;
	border: 1px solid rgba(255, 206, 0, .28);
	border-radius: 14px;
	overflow: hidden;
	background: linear-gradient(155deg, #2a0f6e 0%, #5a1fc4 55%, #8a52ff 100%);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .45);
	transition: transform .2s, box-shadow .2s;
}

.rb-railpromo:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, .55);
}

/* Gold bloom behind the copy. */
.rb-railpromo__glow {
	position: absolute;
	right: -30px;
	top: -40px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 50%, rgba(255, 206, 0, .38) 0%, rgba(255, 206, 0, 0) 66%);
}

/* Coin: a gold disc with a rim and a struck ring, drawn in CSS. */
.rb-railpromo__coin {
	position: absolute;
	right: 12px;
	top: 14px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%, transparent 0 30%, rgba(255, 255, 255, .5) 30% 33%, transparent 33%),
		conic-gradient(from 210deg, #ffb800, #ffe580, #ffb800, #d99400, #ffce00);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .45), inset 0 0 0 2px rgba(255, 255, 255, .35);
}

.rb-railpromo__kick {
	position: relative;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .78);
}

.rb-railpromo__sum {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-top: 4px;
	font-family: var(--rb-display);
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
	color: var(--rb-gold);
	text-shadow: 0 2px 10px rgba(255, 184, 0, .45);
}

.rb-railpromo__sum i {
	font-style: normal;
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	text-shadow: none;
}

.rb-railpromo__note {
	position: relative;
	margin-top: 6px;
	font-size: 12px;
	color: rgba(255, 255, 255, .8);
}

.rb-railpromo__cta {
	position: relative;
	margin-top: 12px;
	padding: 9px 10px;
	border-radius: 9px;
	background: linear-gradient(160deg, var(--rb-gold) 0%, var(--rb-gold-2) 100%);
	color: #2a1f00;
	text-align: center;
	font-family: var(--rb-display);
	font-size: 12px;
	font-weight: 900;
	transition: filter .2s;
}

.rb-railpromo:hover .rb-railpromo__cta {
	filter: brightness(1.1);
}

.rb-railpromo__timer {
	position: relative;
	margin-top: 9px;
	text-align: center;
	font-size: 10px;
	letter-spacing: .4px;
	color: rgba(255, 255, 255, .62);
}

.rb-railpromo__timer b {
	color: #fff;
	font-weight: 800;
}

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

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

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

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

.rb-inner {
	max-width: var(--rb-inner);
	margin: 0 auto;
}

.rb-sec {
	margin-bottom: 30px;
}

.rb-stitle {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.rb-stitle__lbl {
	font-family: var(--rb-display);
	font-size: 20px;
	font-weight: 900;
}

.rb-stitle__act {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 8px;
}

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

.rb-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 16px;
	margin-bottom: 22px;
}

/* Promo art sits under a left-to-right scrim so the headline stays readable
   over it; the gradient underneath shows through if the file is swapped out. */
.rb-hero__promo {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 236px;
	padding: 30px 34px;
	border-radius: 12px;
	overflow: hidden;
	background:
		linear-gradient(95deg, rgba(9, 12, 29, .92) 0%, rgba(9, 12, 29, .58) 46%, rgba(9, 12, 29, .12) 100%),
		url('../img/hero.jpg') center / cover no-repeat,
		linear-gradient(115deg, #17143a 0%, #2c2852 55%, #463e7a 100%);
}

.rb-hero__kick {
	position: relative;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--rb-muted);
}

.rb-hero__sum {
	position: relative;
	margin: 8px 0 6px;
	font-family: var(--rb-display);
	font-size: 52px;
	font-weight: 900;
	line-height: 1;
	color: var(--rb-gold);
}

.rb-hero__note {
	position: relative;
	font-size: 15px;
	color: var(--rb-soft);
}

.rb-hero__cta {
	position: relative;
	align-self: flex-start;
	margin-top: 22px;
}

/* Corner motif for the promo panel — concentric rings behind a soft bloom. */
.rb-hero__deco,
.rb-lhero__deco {
	position: absolute;
	right: -70px;
	bottom: -90px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background:
		repeating-radial-gradient(circle at 50% 50%, rgba(255, 206, 0, .16) 0 1px, rgba(255, 206, 0, 0) 1px 24px),
		radial-gradient(circle at 50% 50%, rgba(255, 206, 0, .14) 0%, rgba(255, 206, 0, 0) 62%);
	pointer-events: none;
}

.rb-hero__join {
	display: flex;
	flex-direction: column;
	padding: 26px 24px;
	border-radius: 12px;
	background: var(--rb-s1);
	text-align: center;
}

.rb-hero__jointl {
	font-family: var(--rb-display);
	font-size: 24px;
	font-weight: 900;
}

.rb-hero__joinsub {
	margin: 6px 0 20px;
	font-size: 14px;
	color: var(--rb-muted);
}

.rb-hero__or {
	margin: 18px 0 12px;
	font-size: 12px;
	color: var(--rb-dim);
}

.rb-hero__alt {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

/* --- raffle strip ------------------------------------------------------- */

.rb-raffle {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	padding: 16px 22px;
	margin-bottom: 22px;
	border-radius: 12px;
	background:
		radial-gradient(70% 200% at 88% 50%, rgba(255, 206, 0, .16) 0%, rgba(255, 206, 0, 0) 62%),
		var(--rb-s1);
}

.rb-raffle__tl {
	font-family: var(--rb-display);
	font-size: 17px;
	font-weight: 900;
}

.rb-raffle__tl b {
	color: var(--rb-gold);
}

.rb-raffle__note {
	font-size: 13px;
	color: var(--rb-muted);
}

.rb-raffle__clock {
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.rb-raffle__clock i {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 52px;
	padding: 6px 8px;
	border-radius: 8px;
	background: var(--rb-s2);
	font-style: normal;
	font-size: 10px;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: var(--rb-dim);
}

.rb-raffle__clock b {
	font-family: var(--rb-display);
	font-size: 17px;
	color: var(--rb-text);
}

/* --- sportsbook categories ---------------------------------------------- */

.rb-sports {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
}

.rb-sport {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 12px;
	background: var(--rb-s1);
	font-size: 14px;
	font-weight: 700;
	transition: background-color .2s, transform .2s;
}

.rb-sport:hover {
	background: var(--rb-s2);
	transform: translateY(-2px);
}

.rb-sport__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex: 0 0 auto;
	border-radius: 10px;
	background: var(--rb-s2);
	color: var(--rb-gold);
}

.rb-sport:hover .rb-sport__ico {
	background: var(--rb-s3);
}

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

/* Game rails carry their own class — .rb-rail is the fixed left navigation. */
.rb-grail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 6 * 12px) / 7);
	gap: 12px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	padding-bottom: 4px;
	scrollbar-width: none;
}

.rb-grail::-webkit-scrollbar {
	display: none;
}

.rb-tile {
	position: relative;
	scroll-snap-align: start;
	display: flex;
	align-items: flex-end;
	aspect-ratio: 3 / 4;
	padding: 14px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--rb-s2);
	transition: transform .2s, box-shadow .2s;
}

.rb-grail--wide .rb-tile {
	aspect-ratio: 1 / 1;
}

.rb-tile:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .5);
}

.rb-tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s;
}

.rb-tile:hover img {
	transform: scale(1.05);
}

/* Scrim under the title — the plates already darken towards the bottom, this
   keeps the name legible on the lighter ones too. */
.rb-tile::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(9, 12, 29, .8) 0%, rgba(9, 12, 29, 0) 52%);
}

.rb-tile__name {
	position: relative;
	font-family: var(--rb-display);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .4px;
}

.rb-tile__tag {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 3px 8px;
	border-radius: 4px;
	background: var(--rb-gold);
	color: #2a1f00;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .6px;
}

.rb-tile__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(9, 12, 29, .55);
	color: var(--rb-gold);
	opacity: 0;
	transition: opacity .2s;
}

.rb-tile:hover .rb-tile__play {
	opacity: 1;
}

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

.rb-tscroll {
	overflow-x: auto;
	border-radius: 12px;
	-webkit-overflow-scrolling: touch;
}

.rb-bets {
	width: 100%;
	border-collapse: collapse;
	background: var(--rb-s1);
	font-size: 13px;
	white-space: nowrap;
}

.rb-bets th {
	padding: 12px 16px;
	background: var(--rb-s2);
	color: var(--rb-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	text-align: left;
}

.rb-bets td {
	padding: 11px 16px;
	border-top: 1px solid rgba(70, 62, 122, .28);
	color: var(--rb-soft);
}

.rb-bets tbody tr:hover td {
	background: rgba(44, 40, 82, .5);
}

.rb-bets__game {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--rb-text);
	font-weight: 700;
}

.rb-bets__chip {
	width: 26px;
	height: 26px;
	flex: 0 0 auto;
	border-radius: 6px;
	object-fit: cover;
	background: var(--rb-s2);
}

.rb-bets .is-win {
	color: var(--rb-win);
	font-weight: 700;
}

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

.rb-ranks {
	display: grid;
	gap: 12px;
}

.rb-rank {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto 140px;
	align-items: center;
	gap: 20px;
	padding: 16px 20px;
	border-radius: 12px;
	background: var(--rb-s1);
	transition: background-color .2s;
}

.rb-rank:hover {
	background: var(--rb-s2);
}

.rb-rank__num {
	font-family: var(--rb-display);
	font-size: 26px;
	font-weight: 900;
	color: var(--rb-gold);
}

.rb-rank__name {
	display: block;
	font-family: var(--rb-display);
	font-size: 17px;
	font-weight: 900;
}

.rb-rank__offer {
	display: block;
	margin-top: 3px;
	font-size: 14px;
	color: var(--rb-muted);
}

/* Fixed tracks so the three figures line up down the whole ranking rather
   than shifting with each row's text width. */
.rb-rank__specs {
	display: grid;
	grid-template-columns: repeat(3, 110px);
	gap: 16px;
}

.rb-rank__specs span {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.rb-rank__specs i {
	font-style: normal;
	font-size: 11px;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: var(--rb-dim);
}

.rb-rank__specs b {
	font-size: 14px;
}

/* --- review hero, facts, scores ----------------------------------------- */

.rb-rhero {
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 24px 26px;
	margin-bottom: 26px;
	border-radius: 12px;
	background:
		radial-gradient(80% 150% at 88% 10%, rgba(120, 65, 238, .4) 0%, rgba(120, 65, 238, 0) 62%),
		var(--rb-s1);
}

.rb-rhero__logo {
	flex: 0 0 auto;
	width: 156px;
	height: 118px;
	border-radius: 12px;
	background:
		url('../img/review-brand.jpg') center / cover no-repeat,
		linear-gradient(150deg, #2c2852, #12122c);
}

.rb-rhero__body {
	flex: 1 1 auto;
}

.rb-rhero__rate {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 10px;
	color: var(--rb-muted);
	font-size: 13px;
}

.rb-rhero__rate .rb-i {
	color: var(--rb-gold);
}

.rb-rhero__rate b {
	font-family: var(--rb-display);
	font-size: 22px;
	color: var(--rb-text);
}

.rb-rhero__act {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.rb-cols {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.rb-facts {
	padding: 4px 18px;
	border-radius: 12px;
	background: var(--rb-s1);
}

.rb-fact {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(70, 62, 122, .28);
	font-size: 14px;
}

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

.rb-fact__k {
	color: var(--rb-muted);
}

.rb-fact__v {
	font-weight: 700;
	text-align: right;
}

.rb-scores {
	padding: 20px 22px;
	border-radius: 12px;
	background: var(--rb-s1);
}

.rb-scores__total {
	display: block;
	margin-bottom: 16px;
	color: var(--rb-muted);
	font-size: 14px;
}

.rb-scores__total b {
	font-family: var(--rb-display);
	font-size: 38px;
	line-height: 1;
	color: var(--rb-gold);
}

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

.rb-score__k {
	color: var(--rb-soft);
}

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

.rb-score__bar i {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--rb-gold-2), var(--rb-gold));
}

.rb-score__v {
	font-weight: 700;
	text-align: right;
}

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

.rb-lhero {
	position: relative;
	display: flex;
	align-items: center;
	padding: 46px 40px;
	margin-bottom: 26px;
	border-radius: 12px;
	overflow: hidden;
	background:
		radial-gradient(90% 150% at 86% 16%, rgba(120, 65, 238, .5) 0%, rgba(120, 65, 238, 0) 60%),
		linear-gradient(115deg, #15122f 0%, #2c2852 55%, #463e7a 100%);
}

.rb-lhero__kick {
	display: block;
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--rb-muted);
}

.rb-lhero__h {
	display: block;
	max-width: 640px;
	font-family: var(--rb-display);
	font-size: 42px;
	font-weight: 900;
	line-height: 1.12;
}

.rb-lhero__sub {
	margin: 14px 0 0;
	max-width: 560px;
	font-size: 16px;
	color: var(--rb-soft);
}

.rb-lhero .rb-btn {
	margin-top: 24px;
}

.rb-promises {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.rb-promise {
	padding: 22px;
	border-radius: 12px;
	background: var(--rb-s1);
}

.rb-promise__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 14px;
	border-radius: 12px;
	background: var(--rb-s2);
	color: var(--rb-gold);
}

.rb-promise__tl {
	display: block;
	font-family: var(--rb-display);
	font-size: 17px;
	font-weight: 900;
}

.rb-promise__txt {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	color: var(--rb-muted);
}

.rb-cta {
	padding: 40px 30px;
	margin-bottom: 30px;
	border-radius: 12px;
	text-align: center;
	background:
		radial-gradient(80% 160% at 50% 0%, rgba(120, 65, 238, .45) 0%, rgba(120, 65, 238, 0) 65%),
		var(--rb-s1);
}

.rb-cta__h {
	display: block;
	font-family: var(--rb-display);
	font-size: 28px;
	font-weight: 900;
}

.rb-cta p {
	margin: 12px auto 22px;
	max-width: 560px;
	font-size: 15px;
	color: var(--rb-muted);
}

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

.rb-copy {
	max-width: 100%;
}

.rb-phead h1 {
	margin: 0;
	font-family: var(--rb-display);
	font-size: 32px;
	font-weight: 900;
	line-height: 1.18;
}

.rb-phead p {
	margin: 10px 0 0;
	font-size: 15px;
	color: var(--rb-muted);
}

.rb-phead--top {
	margin-bottom: 22px;
}

.rb-content {
	margin-top: 20px;
	font-size: 15px;
	line-height: 1.75;
	color: var(--rb-soft);
}

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

.rb-content h1,
.rb-content h2,
.rb-content h3,
.rb-content h4 {
	color: var(--rb-text);
	font-family: var(--rb-display);
	font-weight: 900;
	line-height: 1.22;
}

.rb-content h1 {
	margin: 0 0 16px;
	font-size: 30px;
}

.rb-content h2 {
	margin: 32px 0 12px;
	font-size: 23px;
}

.rb-content h3 {
	margin: 24px 0 10px;
	font-size: 18px;
}

.rb-content h4 {
	margin: 20px 0 10px;
	font-size: 16px;
}

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

.rb-content a {
	color: var(--rb-gold);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.rb-content a:hover {
	color: var(--rb-gold-2);
}

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

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

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

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

.rb-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	background: var(--rb-gold);
}

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

.rb-content ol li::marker {
	color: var(--rb-gold);
	font-weight: 700;
}

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

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

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

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

.rb-content figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: var(--rb-dim);
}

.rb-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	background: var(--rb-s1);
	white-space: normal;
}

.rb-content th,
.rb-content td {
	padding: 12px 14px;
	border-bottom: 1px solid rgba(70, 62, 122, .28);
	text-align: left;
}

.rb-content thead th {
	background: var(--rb-s2);
	color: var(--rb-text);
	font-weight: 700;
}

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

.rb-foot {
	margin: 40px -20px 0;
	padding: 34px 20px 40px;
	background: var(--rb-s1);
}

.rb-foot__cols,
.rb-foot__row,
.rb-foot__legal {
	max-width: var(--rb-inner);
	margin-left: auto;
	margin-right: auto;
}

.rb-foot__cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	padding-bottom: 28px;
}

.rb-foot__coltl {
	display: block;
	margin-bottom: 14px;
	font-family: var(--rb-display);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: var(--rb-text);
}

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

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

.rb-foot__row {
	padding: 22px 0;
	border-top: 1px solid rgba(70, 62, 122, .28);
}

.rb-foot__row--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.rb-foot__rowtl {
	display: block;
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--rb-dim);
}

.rb-coins {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rb-coin {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	border-radius: 8px;
	background: var(--rb-s2);
	font-size: 12px;
}

/* Marks come in mixed styles — some are dark artwork on transparency, which
   vanishes on this surface. A light disc behind every one keeps the row even. */
.rb-coin__mark {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	padding: 3px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .94);
	object-fit: contain;
}

.rb-coin b {
	font-weight: 700;
}

.rb-coin i {
	font-style: normal;
	color: var(--rb-dim);
}

.rb-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rb-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border: 1px solid rgba(70, 62, 122, .55);
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--rb-soft);
	transition: border-color .2s, color .2s;
}

a.rb-badge:hover {
	border-color: var(--rb-gold);
	color: var(--rb-gold);
}

.rb-badge--age {
	border-color: var(--rb-gold);
	color: var(--rb-gold);
}

.rb-foot__legal {
	padding-top: 24px;
	border-top: 1px solid rgba(70, 62, 122, .28);
}

.rb-foot__legal p {
	margin: 12px 0 0;
	font-size: 12px;
	line-height: 1.7;
	color: var(--rb-dim);
}

.rb-foot__copy {
	display: block;
	margin-top: 16px;
	font-size: 12px;
	color: var(--rb-dim);
}

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

@media screen and (max-width: 1180px) {
	.rb-grail {
		grid-auto-columns: calc((100% - 4 * 12px) / 5);
	}

	.rb-rank {
		grid-template-columns: 40px minmax(0, 1fr) 130px;
		row-gap: 14px;
	}

	.rb-rank__specs {
		grid-column: 2 / -1;
	}
}

@media screen and (max-width: 1000px) {
	.rb-railtab {
		display: flex;
		top: calc(var(--rb-top) + 20px);
		width: 40px;
		height: 88px;
		border-radius: 0 14px 14px 0;
		box-shadow: 0 6px 18px rgba(0, 0, 0, .45);
	}

	body.rb-drawer .rb-railtab {
		display: none;
	}

	/* As a drawer it covers the full height and its labels sit inline, so the
	   column can scroll again without clipping anything. */
	.rb-rail {
		top: 0;
		transform: translateX(-100%);
		transition: transform .28s ease;
		width: 260px;
		overflow-y: auto;
		scrollbar-width: none;
	}

	.rb-rail::-webkit-scrollbar {
		display: none;
	}

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

	.rb-top {
		padding-left: 16px;
	}

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

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

@media screen and (max-width: 760px) {
	.rb-top {
		padding: 0 12px;
		gap: 8px;
	}

	.rb-logo__txt {
		font-size: 16px;
		letter-spacing: 2px;
	}

	.rb-logo__img {
		height: 24px;
		max-width: 150px;
	}

	.rb-top__act .rb-btn {
		padding: 8px 12px;
		font-size: 12px;
	}

	.rb-iconbtn--chat,
	.rb-iconbtn--search {
		display: none;
	}

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

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

	.rb-grail {
		grid-auto-columns: calc((100% - 2 * 12px) / 3);
	}

	.rb-cols,
	.rb-promises,
	.rb-foot__row--split {
		grid-template-columns: minmax(0, 1fr);
	}

	.rb-raffle {
		padding: 14px 16px;
	}

	.rb-raffle__clock {
		margin-left: 0;
		width: 100%;
	}

	.rb-raffle__clock i {
		flex: 1 1 0;
	}

	.rb-sports {
		grid-template-columns: 1fr 1fr;
	}

	.rb-foot__cols {
		grid-template-columns: 1fr 1fr;
	}

	.rb-hero__promo {
		padding: 24px 20px;
	}

	.rb-hero__sum {
		font-size: 38px;
	}

	.rb-rhero {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
	}

	.rb-rhero__logo {
		width: 100%;
		height: 92px;
	}

	.rb-phead h1 {
		font-size: 25px;
	}

	.rb-lhero {
		padding: 30px 20px;
	}

	.rb-lhero__h {
		font-size: 30px;
	}

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

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

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

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

@media screen and (max-width: 460px) {
	.rb-grail {
		grid-auto-columns: calc((100% - 12px) / 2);
	}

	.rb-foot__cols {
		grid-template-columns: 1fr;
	}

	.rb-rank {
		grid-template-columns: 36px minmax(0, 1fr);
	}

	.rb-rank .rb-btn {
		grid-column: 2;
		justify-self: start;
	}
}
