/* :: Azure Fortune Palace Casino
   Colour is kept as HSL channels, so every tint is derived from one hue number. */

/* :: tokens */
:root {
	--ink-h: 230;
	--cob-h: 226;
	--cob-s: 100%;
	--cob-l: 56%;
	--sky-h: 214;
	--gold-h: 44;

	--void: hsl(var(--ink-h) 30% 3%);
	--night: hsl(var(--ink-h) 24% 6%);
	--slab: hsl(var(--ink-h) 20% 9%);
	--slab-up: hsl(var(--ink-h) 17% 13%);
	--seam: hsl(var(--ink-h) 9% 22%);
	--seam-soft: hsl(var(--ink-h) 12% 15%);

	--cobalt: hsl(var(--cob-h) var(--cob-s) var(--cob-l));
	--cobalt-up: hsl(var(--cob-h) var(--cob-s) calc(var(--cob-l) + 12%));
	--cobalt-down: hsl(var(--cob-h) 88% calc(var(--cob-l) - 20%));
	--cobalt-deep: hsl(var(--cob-h) 80% 16%);
	--cobalt-haze: hsl(var(--cob-h) var(--cob-s) var(--cob-l) / 0.16);
	--cobalt-glow: hsl(var(--cob-h) var(--cob-s) var(--cob-l) / 0.45);
	--sky: hsl(var(--sky-h) 100% 79%);
	--sky-line: hsl(var(--sky-h) 100% 79% / 0.4);
	--gold: hsl(var(--gold-h) 100% 57%);
	--gold-deep: hsl(calc(var(--gold-h) - 10) 92% 40%);

	--type: hsl(var(--ink-h) 35% 95%);
	--type-dim: hsl(var(--ink-h) 12% 67%);

	--chrome: linear-gradient(180deg, #ffffff 0%, hsl(var(--sky-h) 100% 88%) 40%, var(--cobalt-up) 56%, var(--cobalt) 78%, hsl(var(--sky-h) 100% 82%) 100%);
	--button-blue: linear-gradient(180deg, var(--cobalt-up) 0%, var(--cobalt) 52%, var(--cobalt-down) 100%);

	--display: 'Bungee', 'Kanit', 'Arial Black', sans-serif;
	--text: 'Kanit', system-ui, -apple-system, 'Segoe UI', sans-serif;

	--r-s: 9px;
	--r-m: 15px;
	--r-l: 22px;
	--pill: 999px;
	--lift: 0 16px 40px hsl(var(--ink-h) 60% 1% / 0.65);
}

/* :: ground */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Form controls (the envelope buttons included) drop browser chrome; components restyle them below. */
:enabled {
	font: inherit;
	color: inherit;
	letter-spacing: inherit;
	text-align: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

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

body {
	font-family: var(--text);
	font-size: 16px;
	line-height: 1.65;
	color: var(--type);
	background: var(--void);
	overflow-x: clip;
}

body.dock-on {
	padding-bottom: 88px;
}

[id] {
	scroll-margin-top: 96px;
}

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

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

h1,
h2,
h3,
h4 {
	line-height: 1.15;
	font-weight: 700;
}

ul[class],
ol[class] {
	list-style: none;
}

:focus-visible {
	outline: 3px solid var(--sky);
	outline-offset: 3px;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -80px;
	z-index: 2000;
	padding: 10px 18px;
	border-radius: var(--pill);
	background: var(--cobalt);
	color: #fff;
	font-weight: 600;
}

.skip-link:focus {
	top: 12px;
}

.box_5EPhB {
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 24px;
}

/* :: chrome wordmark */
.logo-mark {
	display: inline-grid;
	place-items: center;
	padding: 2px 9px 0;
	border-radius: 10px 4px 10px 4px;
	background: var(--button-blue);
	box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.5), 0 0 0 2px hsl(var(--sky-h) 100% 90% / 0.35);
	font-family: var(--display);
	font-weight: 400;
	font-size: 1.35rem;
	font-style: normal;
	line-height: 1.25;
	color: #fff;
	letter-spacing: -0.02em;
	transform: skewX(-8deg);
	text-shadow: 0 2px 0 var(--cobalt-down);
}

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

.logo .logo-mark {
	font-size: 1.9rem;
}

.logo-words {
	display: grid;
	line-height: 0.95;
	transform: skewX(-6deg);
}

.logo-words small {
	font-family: var(--display);
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--type);
}

.logo-words strong {
	font-family: var(--display);
	font-weight: 400;
	font-size: 2rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	background: var(--chrome);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 2px 0 var(--cobalt-down));
}

/* :: header */
.header_V5stk {
	position: sticky;
	top: 0;
	z-index: 900;
	container-type: scroll-state;
}

.header-deck {
	background: var(--void);
	border-bottom: 1px solid var(--seam-soft);
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.header-deck > .box_5EPhB {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	padding-block: 14px;
	transition: padding 0.3s ease;
}

@container scroll-state(stuck: top) {
	.header-deck {
		box-shadow: 0 10px 30px hsl(var(--ink-h) 60% 1% / 0.7);
		border-color: var(--cobalt-glow);
	}

	.header-deck > .box_5EPhB {
		padding-block: 8px;
	}
}

.burger {
	justify-self: start;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 10px 6px;
}

.burger span {
	width: 32px;
	height: 4px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--cobalt), var(--cobalt-up));
	box-shadow: 0 0 10px var(--cobalt-glow);
	transition: transform 0.3s ease, opacity 0.2s ease;
}

.burger span:nth-child(2) {
	width: 24px;
}

.burger.active span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.burger.active span:nth-child(2) {
	opacity: 0;
}

.burger.active span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

.burger-flag {
	position: absolute;
	top: -8px;
	left: 24px;
	padding: 1px 8px;
	border-radius: var(--pill);
	background: hsl(var(--sky-h) 90% 86%);
	color: var(--cobalt-deep);
	font-size: 0.68rem;
	font-weight: 600;
	font-style: normal;
	line-height: 1.5;
}

.header_V5stk .logo {
	justify-self: center;
}

.logo-mobile,
.mobile-cta {
	display: none;
}

.header_V5stk-actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 10px;
}

.licence-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px 5px 6px;
	border: 1.5px solid var(--gold);
	border-radius: 8px;
	background: linear-gradient(180deg, hsl(var(--gold-h) 40% 12%), hsl(var(--gold-h) 50% 5%));
	font-family: var(--display);
	font-size: 0.72rem;
	color: var(--gold);
	text-transform: uppercase;
}

.licence-chip b {
	padding: 1px 6px;
	border-radius: 5px;
	background: var(--gold);
	color: #1a1300;
	font-weight: 400;
}

/* :: menu drawer */
.nav-links_ma6xe {
	position: fixed;
	inset-block: 0;
	left: 0;
	z-index: 1000;
	width: min(88vw, 340px);
	display: flex;
	flex-direction: column;
	padding: 18px 22px 28px;
	overflow-y: auto;
	background: linear-gradient(180deg, var(--night), var(--void));
	border-right: 2px solid var(--cobalt);
	box-shadow: 0 0 0 100vmax hsl(var(--ink-h) 50% 2% / 0);
	transform: translateX(-104%);
	visibility: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease, visibility 0s linear 0.35s;
}

.nav-links_ma6xe.active {
	transform: none;
	visibility: visible;
	box-shadow: 0 0 0 100vmax hsl(var(--ink-h) 50% 2% / 0.62);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nav-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--cobalt);
}

.nav-title {
	font-family: var(--display);
	font-size: 0.9rem;
	color: var(--sky);
	text-transform: uppercase;
}

.nav-close {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1.5px solid var(--seam);
	font-size: 1.5rem;
	line-height: 1;
	color: var(--type);
}

.nav-links_ma6xe a {
	display: flex;
	align-items: baseline;
	gap: 14px;
	padding: 13px 10px;
	border-bottom: 1px solid var(--seam-soft);
	font-weight: 600;
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-left: 3px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-links_ma6xe a small {
	font-family: var(--display);
	font-size: 0.7rem;
	color: var(--cobalt-up);
}

.nav-links_ma6xe a:hover {
	background: var(--cobalt-haze);
	border-left-color: var(--cobalt-up);
}

/* :: announcement bar */
.notice-bar {
	background: linear-gradient(90deg, var(--cobalt-down) 0%, var(--cobalt) 45%, var(--cobalt-down) 100%);
	border-bottom: 1px solid var(--sky-line);
	box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.25);
}

.notice-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 40px;
}

.notice-horn {
	flex: none;
	width: 22px;
	height: 22px;
	fill: #fff;
	stroke: #fff;
	stroke-width: 1.6;
	stroke-linecap: round;
}

.notice-horn path + path {
	fill: none;
}

.notice-window {
	height: 40px;
	overflow: hidden;
	flex: 1;
	min-width: 0;
}

.notice-roll li {
	height: 40px;
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 0.98rem;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-shadow: 0 1px 0 var(--cobalt-down);
}

.notice-roll {
	animation: notice-flip 20s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

@keyframes notice-flip {
	0%, 21% { transform: translateY(0); }
	25%, 46% { transform: translateY(-40px); }
	50%, 71% { transform: translateY(-80px); }
	75%, 96% { transform: translateY(-120px); }
	100% { transform: translateY(-160px); }
}

/* :: buttons */
.action_fM8Cl {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0.72em 1.7em;
	border-radius: var(--pill);
	font-family: var(--text);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: center;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.action_fM8Cl--primary {
	color: #fff;
	background: var(--button-blue);
	border: 2px solid hsl(var(--sky-h) 100% 88% / 0.75);
	box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.5), 0 6px 20px var(--cobalt-glow);
	text-shadow: 0 1px 0 var(--cobalt-down);
}

.action_fM8Cl--primary:hover {
	transform: translateY(-2px);
	box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.5), 0 10px 28px var(--cobalt-glow);
}

.action_fM8Cl--secondary {
	color: var(--type);
	border: 2px solid var(--seam);
	background: hsl(var(--ink-h) 20% 12% / 0.6);
}

.action_fM8Cl--secondary:hover {
	border-color: var(--cobalt-up);
	color: #fff;
}

.action_fM8Cl--large {
	padding: 0.95em 2.2em;
	font-size: 1.05rem;
}

.action_fM8Cl--small {
	padding: 0.45em 1.1em;
	font-size: 0.8rem;
	color: var(--sky);
	border: 1.5px solid var(--cobalt);
	background: var(--cobalt-haze);
}

.action_fM8Cl--small:hover {
	color: #fff;
	background: var(--cobalt);
}

/* :: lobby (first screen, three columns like the palace floor) */
.lobby {
	padding-block: 26px 44px;
	background:
		radial-gradient(60% 50% at 50% 0%, hsl(var(--cob-h) 100% 40% / 0.14), transparent 70%),
		var(--void);
	border-bottom: 1px solid var(--seam-soft);
}

.lobby-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.05fr) minmax(0, 0.85fr);
}

.lobby-col {
	min-width: 0;
	padding-inline: 24px;
	border-left: 1px solid var(--seam);
}

.lobby-col:first-child {
	padding-left: 0;
	border-left: 0;
}

.lobby-col:last-child {
	padding-right: 0;
}

.lobby-rule {
	height: 2px;
	margin-block: 22px;
	border: 0;
	background: linear-gradient(90deg, transparent, var(--cobalt) 12%, var(--cobalt-up) 50%, var(--cobalt) 88%, transparent);
	box-shadow: 0 0 12px var(--cobalt-glow);
}

/* hero banner */
.hero_p5UId {
	position: relative;
	overflow: hidden;
	padding: 24px 24px 0;
	border-radius: var(--r-l);
	border: 1px solid var(--sky-line);
	background:
		radial-gradient(70% 70% at 85% 25%, hsl(var(--cob-h) 100% 55% / 0.55), transparent 65%),
		radial-gradient(50% 60% at 0% 100%, hsl(var(--cob-h) 100% 45% / 0.35), transparent 70%),
		linear-gradient(140deg, var(--cobalt-deep) 0%, var(--night) 70%);
	box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.18), var(--lift);
}

.hero_p5UId::after {
	content: '';
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--cobalt-up), var(--sky), var(--cobalt));
}

.hero_p5UId-content {
	position: relative;
	z-index: 1;
	max-width: 62%;
	padding-bottom: 26px;
}

.hero_p5UId-badge {
	display: inline-block;
	margin-bottom: 12px;
	padding: 3px 12px;
	border-radius: var(--pill);
	background: hsl(var(--ink-h) 40% 4% / 0.55);
	border: 1px solid var(--sky-line);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sky);
}

.hero-figure {
	display: grid;
	margin-bottom: 8px;
}

.hero-figure b {
	font-family: var(--display);
	font-weight: 400;
	font-size: clamp(3.4rem, 6vw, 4.8rem);
	line-height: 0.95;
	background: var(--chrome);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 3px 0 var(--cobalt-down));
}

.hero-figure small {
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--gold);
}

.hero_p5UId-content h1 {
	margin-bottom: 10px;
	font-size: clamp(1.3rem, 1.9vw, 1.6rem);
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: #fff;
	text-wrap: balance;
}

.hero_p5UId-subtitle {
	margin-bottom: 18px;
	font-size: 0.93rem;
	line-height: 1.55;
	color: var(--type-dim);
}

.hero_p5UId-subtitle strong {
	font-weight: 400;
	color: hsl(var(--sky-h) 60% 86%);
}

.hero_p5UId-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.hero_p5UId-ctas .action_fM8Cl--large {
	padding: 0.85em 1.6em;
	font-size: 0.95rem;
}

.hero_p5UId-ctas .action_fM8Cl--secondary {
	padding: 0.72em 1.3em;
}

.hero_p5UId-features {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
}

.hero_p5UId-feature {
	font-size: 0.82rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--type-dim);
}

.hero_p5UId-feature span {
	color: var(--cobalt-up);
}

.hero_p5UId-image {
	position: absolute;
	right: -6px;
	bottom: 4px;
	width: 46%;
}

.hero_p5UId-image img {
	width: 100%;
	max-height: 420px;
	object-fit: contain;
	object-position: bottom;
	filter: drop-shadow(-12px 0 30px hsl(var(--ink-h) 60% 2% / 0.6));
}

/* payment panel */
.pay-panel {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	margin-top: 18px;
	padding: 18px;
	border-radius: var(--r-l);
	border: 1px solid var(--sky-line);
	background:
		radial-gradient(60% 90% at 100% 0%, hsl(var(--cob-h) 100% 60% / 0.4), transparent 70%),
		linear-gradient(120deg, var(--cobalt-down), var(--cobalt-deep));
}

.pay-ring {
	display: grid;
	place-content: center;
	text-align: center;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 7px solid var(--cobalt-up);
	background: radial-gradient(circle, var(--cobalt-deep) 55%, hsl(var(--cob-h) 90% 30%));
	box-shadow: 0 0 0 3px hsl(0 0% 100% / 0.85), 0 0 24px var(--cobalt-glow);
}

.pay-ring b {
	font-family: var(--display);
	font-weight: 400;
	font-size: 1.7rem;
	line-height: 1;
	background: var(--chrome);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.pay-ring small {
	font-family: var(--display);
	font-size: 0.5rem;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--gold);
}

.pay-panel-kicker {
	display: inline-block;
	margin-bottom: 4px;
	padding: 1px 10px;
	border-radius: var(--pill);
	background: var(--cobalt);
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.pay-panel-title {
	margin-bottom: 10px;
	font-size: 1.15rem;
	text-transform: uppercase;
	color: #fff;
}

.pay-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 10px;
}

.pay-chips li {
	padding: 2px 8px;
	border-radius: 6px;
	background: #fff;
	color: hsl(var(--ink-h) 40% 10%);
	font-size: 0.72rem;
	font-weight: 600;
}

.pay-coins {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	font-size: 0.72rem;
}

.pay-coins span {
	font-family: var(--display);
	margin-right: 4px;
	text-transform: uppercase;
}

.pay-coins b {
	padding: 1px 7px;
	border-radius: var(--pill);
	border: 1px solid var(--sky-line);
	font-weight: 600;
	color: var(--sky);
}

/* category tiles */
.cat-tiles {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.cat-tile {
	display: grid;
	justify-items: center;
	gap: 5px;
	text-align: center;
}

.cat-icon {
	display: grid;
	place-items: center;
	width: 100%;
	max-width: 76px;
	aspect-ratio: 1;
	border-radius: 18px;
	background: linear-gradient(180deg, hsl(var(--ink-h) 6% 64%) 0%, hsl(var(--ink-h) 8% 40%) 48%, hsl(var(--ink-h) 10% 26%) 100%);
	box-shadow: inset 0 2px 0 hsl(0 0% 100% / 0.45), inset 0 -3px 0 hsl(0 0% 0% / 0.35), 0 6px 14px hsl(0 0% 0% / 0.5);
	transition: transform 0.2s ease, background 0.2s ease;
}

@supports (corner-shape: squircle) {
	.cat-icon {
		corner-shape: squircle;
		border-radius: 34%;
	}
}

.cat-icon svg {
	width: 58%;
	fill: none;
	stroke: #fff;
	stroke-width: 2.2;
	stroke-linejoin: round;
	stroke-linecap: round;
	filter: drop-shadow(0 2px 0 hsl(0 0% 0% / 0.35));
}

.cat-tile.is-lit .cat-icon,
.cat-tile:hover .cat-icon {
	background: linear-gradient(180deg, hsl(var(--sky-h) 100% 72%) 0%, var(--cobalt) 50%, var(--cobalt-down) 100%);
	transform: translateY(-3px);
}

.cat-tile b {
	font-family: var(--display);
	font-weight: 400;
	font-size: 0.8rem;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 2px 0 hsl(0 0% 0% / 0.6);
}

.cat-tile small {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--type-dim);
	line-height: 1;
}

.cat-tile.is-lit small {
	color: var(--gold);
}

/* hot strip */
.hot-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.hot-strip-title {
	grid-column: 1 / -1;
	font-weight: 500;
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hot-tile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 12px;
	border: 1px solid var(--seam);
	background: var(--slab);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.hot-tile img {
	aspect-ratio: 1;
	object-fit: cover;
	width: 100%;
}

.hot-tile span {
	position: absolute;
	left: 50%;
	bottom: 8px;
	translate: -50% 0;
	padding: 2px 10px;
	border-radius: var(--pill);
	background: var(--button-blue);
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
	color: #fff;
}

.hot-tile:hover {
	transform: translateY(-3px);
	border-color: var(--cobalt-up);
}

/* licence board */
.licence-board {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.licence-cell h2 {
	margin-bottom: 10px;
	font-size: 1.15rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
}

.licence-marks {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.licence-marks img {
	border-radius: 6px;
	background: #fff;
	padding: 2px;
}

.licence-seal {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: conic-gradient(from 20deg, var(--cobalt), var(--sky), var(--cobalt-down), var(--cobalt));
	box-shadow: 0 0 0 2px hsl(0 0% 100% / 0.8);
	font-family: var(--display);
	font-size: 0.6rem;
	color: #fff;
}

.licence-seal--lock {
	background: conic-gradient(from 200deg, var(--gold-deep), var(--gold), var(--gold-deep));
	color: #1a1300;
}

.licence-cell p {
	font-size: 0.76rem;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--type-dim);
}

/* bonus rail */
.lobby-col--rail .section_RUu9g {
	padding: 0;
}

.lobby-col--rail .section_RUu9g-title {
	margin-bottom: 4px;
	font-size: 1.2rem;
	text-align: left;
}

.lobby-col--rail .section_RUu9g-title::after {
	display: none;
}

.lobby-col--rail .section_RUu9g-subtitle {
	margin: 0 0 14px;
	text-align: left;
	font-size: 0.85rem;
}

.grid_K2Vrz--bonuses {
	display: grid;
	gap: 14px;
}

.card_1eWk5--bonus {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	grid-template-areas: 'icon title' 'icon text' 'icon cta';
	column-gap: 14px;
	align-items: start;
	padding: 18px 18px 18px 14px;
	border-radius: var(--r-l);
	border: 1px solid var(--sky-line);
	background:
		radial-gradient(80% 120% at 0% 50%, hsl(var(--cob-h) 100% 55% / 0.5), transparent 60%),
		linear-gradient(150deg, var(--cobalt-deep), var(--night) 75%);
	box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.14);
}

.card_1eWk5--bonus-lead {
	background:
		radial-gradient(90% 130% at 0% 40%, hsl(var(--sky-h) 100% 60% / 0.55), transparent 60%),
		linear-gradient(150deg, hsl(var(--cob-h) 90% 30%), var(--cobalt-deep) 80%);
}

.card_1eWk5-icon {
	grid-area: icon;
	align-self: center;
	font-family: var(--display);
	font-size: 1.65rem;
	line-height: 1;
	text-align: center;
	background: var(--chrome);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 2px 0 var(--cobalt-down));
}

.card_1eWk5--bonus h3 {
	grid-area: title;
	margin-bottom: 4px;
	font-size: 1.02rem;
	text-transform: uppercase;
	color: #fff;
}

.card_1eWk5--bonus p {
	grid-area: text;
	margin-bottom: 10px;
	font-size: 0.84rem;
	line-height: 1.5;
	color: hsl(var(--sky-h) 30% 80%);
}

.card_1eWk5--bonus .action_fM8Cl {
	grid-area: cta;
	justify-self: start;
	padding: 0.5em 1.4em;
	font-size: 0.82rem;
	border-color: #fff;
}

/* :: sections */
.section_RUu9g {
	padding-block: 68px;
}

.section_RUu9g-title {
	font-size: clamp(1.6rem, 3vw, 2.35rem);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	text-wrap: balance;
}

.section_RUu9g-title::after {
	content: '';
	display: block;
	width: 72px;
	height: 3px;
	margin: 14px auto 0;
	border-radius: 3px;
	background: var(--cobalt-up);
	box-shadow: 0 0 14px var(--cobalt-glow);
}

.section_RUu9g-subtitle {
	max-width: 600px;
	margin: 14px auto 36px;
	text-align: center;
	color: var(--type-dim);
}

.section_RUu9g--info,
.section_RUu9g--faq,
.section_RUu9g--providers,
.section_RUu9g--seo-text {
	background: var(--night);
	border-block: 1px solid var(--seam-soft);
}

/* fact table with grouped rows */
.info-table-wrap {
	max-width: 880px;
	margin-inline: auto;
	overflow-x: auto;
	border-radius: var(--r-l);
	border: 1px solid var(--seam);
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--slab);
}

.info-table th,
.info-table td {
	padding: 12px 20px;
	text-align: left;
	vertical-align: top;
}

.info-table th[scope='rowgroup'] {
	padding-block: 9px;
	font-family: var(--display);
	font-weight: 400;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	background: var(--button-blue);
}

.info-table th[scope='row'] {
	width: 38%;
	font-weight: 500;
	color: var(--type-dim);
}

.info-table td {
	font-weight: 500;
	color: #fff;
}

.info-table tr + tr {
	border-top: 1px solid var(--seam-soft);
}

/* player timeline */
.tenure-line {
	position: relative;
	max-width: 900px;
	margin-inline: auto;
}

.tenure-line::before {
	content: '';
	position: absolute;
	top: 12px;
	bottom: 12px;
	left: 132px;
	width: 2px;
	background: linear-gradient(180deg, var(--sky), var(--cobalt) 40%, var(--cobalt-down));
	box-shadow: 0 0 10px var(--cobalt-glow);
}

.tenure-stop {
	position: relative;
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	column-gap: 46px;
	margin-bottom: 18px;
}

.tenure-stop::before {
	content: '';
	position: absolute;
	top: 22px;
	left: 125px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--void);
	border: 3px solid var(--cobalt-up);
	box-shadow: 0 0 12px var(--cobalt-glow);
}

.tenure-stop:last-child::before {
	background: var(--gold);
	border-color: var(--gold);
}

.tenure-mark {
	padding-top: 18px;
	text-align: right;
	font-family: var(--display);
	font-size: 0.74rem;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--sky);
}

.tenure-card {
	padding: 18px 22px;
	border-radius: var(--r-m);
	border: 1px solid var(--seam-soft);
	background: var(--slab);
}

.tenure-stop:nth-child(3n + 2) .tenure-card {
	background: linear-gradient(120deg, hsl(var(--cob-h) 70% 14%), var(--slab) 70%);
	border-color: var(--cobalt-haze);
}

.tenure-card blockquote p {
	color: hsl(var(--ink-h) 20% 86%);
}

.tenure-card figcaption {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed var(--seam);
}

.tenure-card figcaption strong {
	font-weight: 600;
	color: #fff;
}

.tenure-stars {
	color: var(--gold);
	letter-spacing: 0.12em;
}

/* games */
.grid_K2Vrz--games {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.card_1eWk5 {
	border-radius: var(--r-m);
	border: 1px solid var(--seam-soft);
	background: var(--slab);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card_1eWk5--game {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 1;
}

.card_1eWk5--game img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.card_1eWk5--game:hover {
	transform: translateY(-4px);
	border-color: var(--cobalt-up);
	box-shadow: 0 12px 30px var(--cobalt-haze);
}

.card_1eWk5--game:hover img {
	transform: scale(1.06);
}

.card_1eWk5-overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: hsl(var(--ink-h) 50% 3% / 0.66);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.card_1eWk5-overlay .action_fM8Cl {
	color: #fff;
	background: var(--button-blue);
	border: 2px solid #fff;
	padding: 0.5em 1.3em;
	font-size: 0.8rem;
}

.card_1eWk5--game:hover .card_1eWk5-overlay,
.card_1eWk5--game:focus-visible .card_1eWk5-overlay {
	opacity: 1;
}

.card_1eWk5-info {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	padding: 26px 12px 10px;
	background: linear-gradient(transparent, hsl(var(--ink-h) 50% 3% / 0.92));
	text-align: left;
}

.card_1eWk5-name {
	display: block;
	font-weight: 600;
	font-size: 0.88rem;
	line-height: 1.25;
	color: #fff;
}

.info-block {
	margin-top: 44px;
	padding: 30px 34px;
	border-radius: var(--r-l);
	border: 1px solid var(--seam-soft);
	border-top: 3px solid var(--cobalt);
	background: var(--slab);
}

.info-block h3 {
	margin-bottom: 14px;
	font-size: 1.3rem;
	text-transform: uppercase;
	color: var(--sky);
}

.info-block p {
	color: var(--type-dim);
}

.info-block p + p {
	margin-top: 12px;
}

/* :: promo banners between sections */
.section_RUu9g--cta {
	padding-block: 30px;
}

.section_RUu9g--cta > .box_5EPhB {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	max-width: calc(80rem - 48px);
	padding: 38px 44px;
	border-radius: var(--r-l);
	border: 1px solid var(--sky-line);
	background:
		repeating-linear-gradient(115deg, transparent 0 46px, hsl(0 0% 100% / 0.035) 46px 48px),
		radial-gradient(60% 140% at 100% 50%, hsl(var(--cob-h) 100% 58% / 0.6), transparent 65%),
		linear-gradient(100deg, var(--night) 0%, var(--cobalt-deep) 100%);
	box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.15), var(--lift);
}

.cta-2 > .box_5EPhB {
	background:
		repeating-linear-gradient(65deg, transparent 0 46px, hsl(0 0% 100% / 0.035) 46px 48px),
		radial-gradient(60% 140% at 0% 50%, hsl(var(--sky-h) 100% 60% / 0.45), transparent 65%),
		linear-gradient(260deg, var(--night) 0%, var(--cobalt-deep) 100%);
}

.section_RUu9g--cta h2 {
	margin-bottom: 8px;
	font-size: clamp(1.5rem, 2.8vw, 2.2rem);
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 3px 0 var(--cobalt-down);
}

.section_RUu9g--cta p {
	font-size: 1.05rem;
	color: hsl(var(--sky-h) 40% 86%);
}

/* :: faq */
.faq-list {
	max-width: 860px;
	margin-inline: auto;
}

.faq-item {
	margin-bottom: 10px;
	border-radius: var(--r-m);
	border: 1px solid var(--seam-soft);
	background: var(--slab);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active {
	border-color: var(--cobalt);
	box-shadow: inset 4px 0 0 var(--cobalt-up);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 17px 20px;
	text-align: left;
	font-weight: 500;
	font-size: 1.04rem;
	color: #fff;
}

.faq-icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--button-blue);
	font-size: 1.3rem;
	line-height: 1;
	color: #fff;
	transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer p {
	padding: 0 20px 18px;
	color: var(--type-dim);
}

/* :: long read */
.seo-content {
	max-width: 900px;
	margin-inline: auto;
}

.seo-content h2 {
	margin: 44px 0 14px;
	padding-left: 16px;
	border-left: 4px solid var(--cobalt-up);
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	color: #fff;
}

.seo-content h2:first-child {
	margin-top: 0;
}

.seo-content h3 {
	margin: 22px 0 10px;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--sky);
}

.seo-content p {
	margin-bottom: 14px;
	color: var(--type-dim);
}

.seo-content strong {
	color: #fff;
	font-weight: 600;
}

.seo-content ul {
	margin: 0 0 16px;
	list-style: none;
}

.seo-content li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 7px;
	color: var(--type-dim);
}

.seo-content li::before {
	content: '';
	position: absolute;
	left: 2px;
	top: 0.62em;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--cobalt-up);
	transform: rotate(45deg);
}

/* :: studios */
.grid_K2Vrz--providers {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 12px;
}

.card_1eWk5--provider {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 16px 10px 12px;
	border-radius: 18px;
	background: linear-gradient(180deg, hsl(var(--ink-h) 10% 18%), hsl(var(--ink-h) 14% 9%));
	box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.14);
}

.card_1eWk5--provider img {
	width: 86%;
	filter: grayscale(1) brightness(1.7) contrast(0.9);
	transition: filter 0.25s ease;
}

.card_1eWk5--provider span {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-transform: uppercase;
	text-align: center;
	color: var(--type-dim);
}

.card_1eWk5--provider:hover {
	transform: translateY(-3px);
	border-color: var(--cobalt-up);
	background: linear-gradient(180deg, hsl(var(--sky-h) 90% 40%), var(--cobalt-deep));
}

.card_1eWk5--provider:hover img {
	filter: none;
}

.card_1eWk5--provider:hover span {
	color: #fff;
}

/* :: cashier */
.payments-table-wrap {
	overflow-x: auto;
	border-radius: var(--r-l);
	border: 1px solid var(--seam);
}

.payments-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--slab);
}

.payments-table th,
.payments-table td {
	padding: 13px 18px;
	text-align: left;
	white-space: nowrap;
}

.payments-table thead th {
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: var(--button-blue);
}

.payments-table thead th:first-child {
	color: hsl(var(--ink-h) 40% 8%);
	background: #f3f5fb;
}

.payments-table tbody tr {
	border-top: 1px solid var(--seam-soft);
}

.payments-table tbody tr:nth-child(odd) {
	background: hsl(var(--ink-h) 20% 11%);
}

.payments-table tbody tr:hover {
	background: var(--cobalt-haze);
}

.payment-method {
	font-weight: 600;
	color: #fff;
}

.payments-table td:nth-child(2) {
	color: var(--sky);
	font-weight: 500;
}

.payments-table td:nth-child(3) {
	color: var(--gold);
	font-weight: 500;
}

.time-badge {
	display: inline-block;
	padding: 2px 11px;
	border-radius: var(--pill);
	background: var(--cobalt-haze);
	border: 1px solid var(--cobalt-glow);
	font-size: 0.78rem;
	color: var(--sky);
}

/* :: app bay */
.app-bay {
	background:
		radial-gradient(40% 60% at 25% 50%, hsl(var(--cob-h) 100% 50% / 0.25), transparent 70%),
		var(--void);
}

.app-bay-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: center;
	gap: 56px;
}

.phone {
	justify-self: center;
	width: 270px;
	aspect-ratio: 9 / 17.5;
	padding: 10px;
	border-radius: 42px;
	background: linear-gradient(160deg, #3a3f4d, #13151c 40%, #2a2e39);
	box-shadow: 0 0 0 2px #0b0c10, 0 30px 60px hsl(0 0% 0% / 0.6), 0 0 80px var(--cobalt-haze);
	transform: rotate(-4deg);
}

.phone-screen {
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
	overflow: hidden;
	padding: 12px 12px 10px;
	border-radius: 33px;
	background: var(--void);
}

.phone-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-inline: 4px;
}

.phone-top i {
	width: 18px;
	height: 3px;
	border-radius: 2px;
	background: var(--cobalt-up);
	box-shadow: 0 5px 0 var(--cobalt-up), 0 -5px 0 var(--cobalt-up);
}

.phone-top .phone-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: none;
}

.phone-top .logo-mark {
	font-size: 0.95rem;
}

.phone-notice {
	margin-inline: -12px;
	padding: 3px 12px;
	background: var(--cobalt);
	font-size: 0.62rem;
	font-weight: 600;
	white-space: nowrap;
}

.phone-banner {
	display: grid;
	padding: 12px;
	border-radius: 14px;
	border: 1px solid var(--sky-line);
	background: radial-gradient(90% 90% at 90% 10%, hsl(var(--cob-h) 100% 55% / 0.6), transparent), var(--cobalt-deep);
}

.phone-banner b {
	font-family: var(--display);
	font-weight: 400;
	font-size: 2rem;
	line-height: 1;
	background: var(--chrome);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.phone-banner small {
	font-size: 0.6rem;
	font-weight: 600;
	color: var(--gold);
	text-transform: uppercase;
}

.phone-tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}

.phone-tiles span {
	display: grid;
	place-items: center;
	height: 38px;
	border-radius: 10px;
	background: linear-gradient(180deg, hsl(var(--ink-h) 6% 55%), hsl(var(--ink-h) 10% 26%));
	font-family: var(--display);
	font-size: 0.52rem;
	text-transform: uppercase;
}

.phone-tiles .is-lit {
	background: linear-gradient(180deg, hsl(var(--sky-h) 100% 70%), var(--cobalt-down));
}

.phone-games {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}

.phone-games img {
	border-radius: 8px;
	aspect-ratio: 1;
	object-fit: cover;
}

.phone-vip {
	display: grid;
	gap: 6px;
	padding: 9px 10px;
	border-radius: 12px;
	background: var(--slab-up);
	font-size: 0.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.phone-vip i {
	display: block;
	height: 6px;
	border-radius: 6px;
	background: linear-gradient(90deg, var(--gold) 50%, var(--seam) 50%);
}

.phone-vip b {
	color: var(--gold);
}

.phone-nav {
	display: flex;
	justify-content: space-around;
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px solid var(--seam);
}

.phone-nav i {
	width: 20px;
	height: 20px;
	border-radius: 6px;
	background: var(--seam);
}

.phone-nav .is-lit {
	background: var(--cobalt-up);
}

.app-kicker {
	display: inline-block;
	margin-bottom: 12px;
	padding: 3px 14px;
	border-radius: var(--pill);
	border: 1px solid var(--gold);
	font-family: var(--display);
	font-size: 0.72rem;
	color: var(--gold);
	text-transform: uppercase;
}

.app-copy .section_RUu9g-title {
	text-align: left;
}

.app-copy .section_RUu9g-title::after {
	margin-left: 0;
}

.app-lede {
	margin-block: 18px 22px;
	font-size: 1.08rem;
	color: var(--type-dim);
}

.app-points {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 24px;
}

.app-points li {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: var(--r-m);
	border: 1px solid var(--seam-soft);
	background: var(--slab);
}

.app-points b {
	font-family: var(--display);
	font-weight: 400;
	font-size: 1.25rem;
	color: var(--sky);
}

.app-points span {
	font-size: 0.88rem;
	line-height: 1.35;
	color: var(--type-dim);
}

.app-stores {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 14px;
}

.store-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 20px 9px 14px;
	border-radius: 12px;
	border: 1.5px solid hsl(0 0% 100% / 0.7);
	background: #050608;
	color: #fff;
	text-align: left;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-btn svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: #fff;
	stroke-width: 1.8;
	stroke-linejoin: round;
}

.store-btn span {
	display: grid;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.15;
}

.store-btn small {
	font-size: 0.66rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--type-dim);
}

.store-btn:hover {
	border-color: var(--cobalt-up);
	box-shadow: 0 0 20px var(--cobalt-glow);
}

.app-note {
	font-size: 0.85rem;
	color: var(--type-dim);
}

.app-note a,
.info-more a {
	color: var(--sky);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* :: about */
.info-layout {
	display: grid;
	gap: 56px;
}

.info-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 56px;
}

.info-row--reverse {
	direction: rtl;
}

.info-row--reverse > * {
	direction: ltr;
}

.info-text h3 {
	margin-bottom: 14px;
	font-size: 1.55rem;
	text-transform: uppercase;
	color: var(--sky);
}

.info-text p {
	margin-bottom: 12px;
	color: var(--type-dim);
}

.info-visual img {
	width: 100%;
	max-width: 420px;
	margin-inline: auto;
	border-radius: var(--r-l);
	border: 1px solid var(--sky-line);
	background: radial-gradient(circle at 50% 40%, var(--cobalt-deep), var(--night));
	box-shadow: 0 0 60px var(--cobalt-haze);
}

/* :: footer */
.site-footer_YQK8F {
	padding-top: 56px;
	background: var(--void);
	border-top: 2px solid var(--cobalt);
}

.site-footer_YQK8F-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 44px;
}

.site-footer_YQK8F-col h4 {
	margin-bottom: 14px;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sky);
}

.site-footer_YQK8F-col p {
	font-size: 0.92rem;
	color: var(--type-dim);
}

.site-footer_YQK8F-nav {
	display: grid;
	grid-template-columns: repeat(2, max-content);
	gap: 8px 28px;
}

.site-footer_YQK8F-nav a {
	color: var(--type-dim);
}

.site-footer_YQK8F-nav a:hover {
	color: #fff;
}

.badge-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.badge-strip img {
	padding: 3px;
	border-radius: 8px;
	background: #fff;
}

.policy-tiles {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
	margin-top: 40px;
}

.policy-tiles a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 12px;
	border-radius: 14px;
	border: 1px solid var(--seam-soft);
	background: linear-gradient(180deg, hsl(var(--ink-h) 10% 14%), hsl(var(--ink-h) 14% 8%));
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.policy-tiles svg {
	flex: none;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: var(--cobalt-up);
	stroke-width: 1.8;
	stroke-linejoin: round;
	stroke-linecap: round;
}

.policy-tiles a:hover,
.policy-tiles a[aria-current='page'] {
	border-color: var(--cobalt-up);
	background: linear-gradient(180deg, hsl(var(--cob-h) 80% 34%), var(--cobalt-deep));
}

.policy-tiles a[aria-current='page'] svg,
.policy-tiles a:hover svg {
	stroke: #fff;
}

.responsible-gaming {
	margin-top: 36px;
	padding-block: 28px;
	text-align: center;
	border-block: 1px solid var(--seam-soft);
}

.responsible-gaming h4 {
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--type);
}

.responsible-text {
	margin-bottom: 16px;
	font-size: 0.88rem;
	color: var(--type-dim);
}

.safe-play {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.safe-play img {
	padding: 3px;
	border-radius: 8px;
	background: #fff;
	opacity: 0.72;
	transition: opacity 0.2s ease;
}

.safe-play a:hover img {
	opacity: 1;
}

.site-footer_YQK8F-bottom {
	padding-block: 24px;
	text-align: center;
	font-size: 0.85rem;
	color: var(--type-dim);
}

.site-footer_YQK8F-bottom p + p {
	margin-top: 6px;
}

.footer-legal {
	font-weight: 500;
}

.footer-legal a,
.footer-updated time {
	color: var(--sky);
}

.footer-disclaimer {
	max-width: 720px;
	margin-inline: auto;
	opacity: 0.75;
}

/* :: app dock */
.app-dock {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 800;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 8px 10px 8px 8px;
	border-radius: var(--pill);
	border: 1.5px solid var(--sky-line);
	background: linear-gradient(90deg, var(--cobalt-down), var(--cobalt) 55%, var(--cobalt-down));
	box-shadow: 0 12px 34px hsl(0 0% 0% / 0.55), 0 0 30px var(--cobalt-haze);
}

.app-dock[hidden] {
	display: none;
}

.dock-cta {
	padding: 9px 20px;
	border-radius: var(--pill);
	border: 2px solid #fff;
	background: linear-gradient(180deg, hsl(var(--sky-h) 100% 72%), var(--cobalt) 60%);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	white-space: nowrap;
}

.dock-mark {
	font-size: 1.05rem;
}

.dock-copy {
	display: grid;
	line-height: 1.1;
}

.dock-copy strong {
	font-family: var(--display);
	font-weight: 400;
	font-size: 1rem;
	text-transform: uppercase;
	color: #fff;
}

.dock-copy small {
	font-size: 0.7rem;
	color: hsl(var(--sky-h) 60% 88%);
}

.dock-close {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: hsl(var(--ink-h) 40% 4% / 0.5);
	font-size: 1.2rem;
	line-height: 1;
	color: #fff;
}

/* :: paperwork pages (.hall) — banner top, clause column, promo rail behind a hairline */
.hall {
	padding-block: 22px 60px;
	background:
		radial-gradient(50% 30% at 70% 0%, hsl(var(--cob-h) 100% 45% / 0.16), transparent 70%),
		var(--void);
}

.hall-crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--type-dim);
}

.hall-crumbs a {
	color: var(--sky);
}

.hall-top {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	align-items: end;
	overflow: hidden;
	padding: 34px 0 0 36px;
	border-radius: var(--r-l);
	border: 1px solid var(--sky-line);
	background:
		repeating-linear-gradient(115deg, transparent 0 60px, hsl(0 0% 100% / 0.03) 60px 62px),
		radial-gradient(55% 90% at 88% 30%, hsl(var(--cob-h) 100% 55% / 0.55), transparent 70%),
		linear-gradient(135deg, var(--cobalt-deep), var(--night) 72%);
	box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.16), var(--lift);
}

.hall-top::after {
	content: '';
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--cobalt-up), var(--sky), var(--cobalt));
}

.hall-top-copy {
	padding-bottom: 34px;
}

.hall-kicker {
	display: inline-block;
	margin-bottom: 12px;
	padding: 3px 14px;
	border-radius: var(--pill);
	border: 1px solid var(--gold);
	font-family: var(--display);
	font-size: 0.72rem;
	text-transform: uppercase;
	color: var(--gold);
}

.hall-top h1 {
	margin-bottom: 12px;
	font-size: clamp(2rem, 4.4vw, 3.3rem);
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: #fff;
	text-shadow: 0 3px 0 var(--cobalt-down);
	text-wrap: balance;
}

.hall-lede {
	max-width: 62ch;
	margin-bottom: 14px;
	font-size: 1.08rem;
	color: hsl(var(--sky-h) 35% 86%);
}

.hall-stamp {
	margin-bottom: 20px;
	font-size: 0.84rem;
	color: var(--type-dim);
}

.hall-stamp time {
	color: var(--sky);
}

.hall-top-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hall-top-art {
	align-self: end;
	width: 100%;
	max-height: 330px;
	object-fit: contain;
	object-position: bottom;
	filter: drop-shadow(-10px 0 30px hsl(var(--ink-h) 60% 2% / 0.6));
}

.hall-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-block: 20px 34px;
}

.hall-facts li {
	display: grid;
	gap: 4px;
	padding: 16px 18px;
	border-radius: 18px;
	background: linear-gradient(180deg, hsl(var(--ink-h) 10% 17%), hsl(var(--ink-h) 14% 9%));
	box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.12);
	border: 1px solid var(--seam-soft);
}

.hall-facts li:first-child {
	background: linear-gradient(180deg, hsl(var(--sky-h) 100% 62%), var(--cobalt) 45%, var(--cobalt-down));
	border-color: var(--sky-line);
}

.hall-facts b {
	font-family: var(--display);
	font-weight: 400;
	font-size: 1.45rem;
	line-height: 1.05;
	color: #fff;
}

.hall-facts span {
	font-size: 0.86rem;
	line-height: 1.35;
	color: var(--type-dim);
}

.hall-facts li:first-child span {
	color: hsl(var(--sky-h) 60% 92%);
}

.hall-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	align-items: start;
}

.hall-main {
	min-width: 0;
	padding-right: 30px;
}

.hall-rail {
	display: grid;
	gap: 16px;
	padding-left: 30px;
	border-left: 1px solid var(--seam);
	align-self: stretch;
	align-content: start;
}

/* in-page finder */
.hall-find {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 6px 14px;
	margin-bottom: 20px;
	padding: 12px 14px;
	border-radius: var(--pill);
	border: 1px solid var(--seam);
	background: var(--slab);
}

.hall-find[hidden] {
	display: none;
}

.hall-find label {
	padding: 4px 14px;
	border-radius: var(--pill);
	background: var(--button-blue);
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.hall-find input {
	width: 100%;
	min-width: 0;
	padding: 6px 4px;
	font-size: 1rem;
	color: #fff;
	cursor: text;
	outline-offset: 6px;
}

.hall-find input::placeholder {
	color: var(--type-dim);
}

.hall-find-status {
	grid-column: 1 / -1;
	padding-left: 6px;
	font-size: 0.78rem;
	color: var(--type-dim);
}

.hall mark {
	padding: 0 2px;
	border-radius: 3px;
	background: var(--gold);
	color: #140f00;
}

.hall-empty {
	padding: 24px;
	border-radius: var(--r-m);
	border: 1px dashed var(--seam);
	color: var(--type-dim);
}

.hall-empty a {
	color: var(--sky);
	text-decoration: underline;
}

/* clauses */
.hall-clause {
	margin-bottom: 18px;
	border-radius: var(--r-l);
	border: 1px solid var(--seam-soft);
	background: var(--slab);
	overflow: hidden;
}

.hall-clause-head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 22px;
	border-bottom: 2px solid var(--cobalt);
	background: linear-gradient(90deg, hsl(var(--cob-h) 70% 14%), var(--slab) 70%);
}

.hall-num {
	flex: none;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: linear-gradient(180deg, hsl(var(--sky-h) 100% 70%), var(--cobalt) 50%, var(--cobalt-down));
	box-shadow: inset 0 2px 0 hsl(0 0% 100% / 0.4), 0 4px 12px var(--cobalt-glow);
	font-family: var(--display);
	font-size: 0.95rem;
	color: #fff;
}

@supports (corner-shape: squircle) {
	.hall-num {
		corner-shape: squircle;
		border-radius: 34%;
	}
}

.hall-clause-head h2 {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
}

.hall-clause-body {
	padding: 20px 24px 22px;
}

.hall-clause-body > * + * {
	margin-top: 14px;
}

.hall-clause-body p,
.hall-clause-body li {
	color: hsl(var(--ink-h) 14% 78%);
}

.hall-clause-body a,
.hall-contact p {
	overflow-wrap: anywhere;
}

.hall-clause-body strong {
	color: #fff;
	font-weight: 600;
}

.hall-clause-body a:not(.action_fM8Cl) {
	color: var(--sky);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hall-clause-body h3 {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--sky);
}

.hall-list li {
	position: relative;
	padding-left: 24px;
}

.hall-list li + li {
	margin-top: 8px;
}

.hall-list li::before {
	content: '';
	position: absolute;
	left: 3px;
	top: 0.6em;
	width: 9px;
	height: 9px;
	border-radius: 2px;
	background: var(--cobalt-up);
	box-shadow: 0 0 8px var(--cobalt-glow);
	transform: rotate(45deg);
}

.hall-note {
	padding: 14px 18px 14px 54px;
	position: relative;
	border-radius: var(--r-m);
	border: 1px solid var(--cobalt-glow);
	background: var(--cobalt-haze);
}

.hall-note::before {
	content: 'i';
	position: absolute;
	left: 16px;
	top: 14px;
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--cobalt);
	font-family: var(--display);
	font-size: 0.8rem;
	color: #fff;
}

.hall-note--alert {
	border-color: hsl(var(--gold-h) 100% 57% / 0.55);
	background: hsl(var(--gold-h) 100% 57% / 0.09);
}

.hall-note--alert::before {
	content: '!';
	background: var(--gold);
	color: #1a1300;
}

.hall-table-wrap {
	overflow-x: auto;
	border-radius: var(--r-m);
	border: 1px solid var(--seam);
}

.hall-table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	font-size: 0.93rem;
}

.hall-table th,
.hall-table td {
	padding: 11px 14px;
	text-align: left;
	vertical-align: top;
}

.hall-table thead th {
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: var(--button-blue);
}

.hall-table thead th:first-child {
	color: hsl(var(--ink-h) 40% 8%);
	background: #f3f5fb;
}

.hall-table tbody tr + tr {
	border-top: 1px solid var(--seam-soft);
}

.hall-table tbody tr:nth-child(even) {
	background: hsl(var(--ink-h) 20% 11%);
}

.hall-table tbody th {
	font-weight: 600;
	color: #fff;
}

.hall-table td {
	color: hsl(var(--ink-h) 14% 78%);
}

.hall-steps {
	counter-reset: hall-step;
	display: grid;
	gap: 12px;
}

.hall-steps li {
	counter-increment: hall-step;
	position: relative;
	min-height: 40px;
	padding: 2px 0 0 56px;
}

.hall-steps li::before {
	content: counter(hall-step);
	position: absolute;
	left: 0;
	top: 0;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: var(--button-blue);
	font-family: var(--display);
	font-size: 0.95rem;
	color: #fff;
}

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

.hall-tile {
	padding: 16px 18px;
	border-radius: var(--r-m);
	border: 1px solid var(--seam-soft);
	background: linear-gradient(180deg, hsl(var(--ink-h) 12% 14%), hsl(var(--ink-h) 16% 10%));
}

.hall-tile h3 {
	margin-bottom: 6px;
}

.hall-tile p {
	font-size: 0.92rem;
}

.hall-tile em {
	display: inline-block;
	margin-top: 8px;
	padding: 1px 10px;
	border-radius: var(--pill);
	background: var(--cobalt-haze);
	border: 1px solid var(--cobalt-glow);
	font-style: normal;
	font-size: 0.75rem;
	color: var(--sky);
}

.hall-duo {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.hall-duo > div {
	padding: 16px 18px;
	border-radius: var(--r-m);
	border: 1px solid var(--seam-soft);
}

.hall-duo > div:first-child {
	background: hsl(var(--cob-h) 80% 50% / 0.08);
	border-color: var(--cobalt-glow);
}

.hall-duo > div:last-child {
	background: hsl(var(--gold-h) 100% 57% / 0.06);
	border-color: hsl(var(--gold-h) 100% 57% / 0.4);
}

.hall-duo h3 {
	margin-bottom: 10px;
}

.hall-duo > div:last-child h3 {
	color: var(--gold);
}

.hall-lines {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.hall-line {
	display: grid;
	gap: 4px;
	padding: 16px 18px;
	border-radius: var(--r-m);
	border: 1px solid var(--seam-soft);
	background: var(--slab-up);
}

.hall-line b {
	font-weight: 600;
	color: #fff;
}

.hall-line a[href^='tel'],
.hall-line .hall-line-number {
	font-family: var(--display);
	font-size: 1.25rem;
	color: var(--sky);
	text-decoration: none;
}

.hall-line .hall-line-number {
	font-family: var(--text);
	font-weight: 600;
}

.hall-line small {
	font-size: 0.84rem;
	color: var(--type-dim);
}

.hall-line.is-first {
	grid-column: 1 / -1;
	border-color: var(--sky-line);
	background:
		radial-gradient(60% 120% at 100% 50%, hsl(var(--cob-h) 100% 55% / 0.45), transparent 70%),
		var(--cobalt-deep);
}

.hall-line.is-first a[href^='tel'] {
	font-size: 2rem;
	color: #fff;
}

.hall-figures {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.hall-figures div {
	padding: 14px 16px;
	border-radius: var(--r-m);
	background: var(--slab-up);
	border: 1px solid var(--seam-soft);
}

.hall-figures dt {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--type-dim);
}

.hall-figures dd {
	font-family: var(--display);
	font-size: 1.5rem;
	color: #fff;
}

.hall-contact {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.hall-contact > div {
	display: grid;
	align-content: start;
	gap: 6px;
	padding: 18px;
	border-radius: var(--r-m);
	border: 1px solid var(--seam-soft);
	background: var(--slab-up);
}

.hall-contact > div:first-child {
	border-color: var(--sky-line);
	background: linear-gradient(160deg, hsl(var(--cob-h) 80% 26%), var(--cobalt-deep));
}

.hall-contact h3 {
	color: #fff;
}

.hall-contact em {
	justify-self: start;
	padding: 1px 10px;
	border-radius: var(--pill);
	background: var(--gold);
	color: #1a1300;
	font-style: normal;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
}

.hall-figure {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr);
	align-items: center;
	gap: 20px;
	padding: 14px;
	border-radius: var(--r-m);
	background: var(--slab-up);
}

.hall-figure img {
	border-radius: 12px;
	border: 1px solid var(--sky-line);
}

.hall-figure figcaption {
	font-size: 0.92rem;
	color: var(--type-dim);
}

/* cookie choices panel */
.cookie-deck {
	margin-bottom: 30px;
	padding: 22px 24px;
	border-radius: var(--r-l);
	border: 1px solid var(--sky-line);
	background: radial-gradient(60% 120% at 100% 0%, hsl(var(--cob-h) 100% 55% / 0.3), transparent 70%), var(--slab);
}

.cookie-deck[hidden] {
	display: none;
}

.cookie-deck h2 {
	margin-bottom: 4px;
	font-size: 1.3rem;
	text-transform: uppercase;
	color: #fff;
}

.cookie-deck > p {
	margin-bottom: 16px;
	color: var(--type-dim);
}

.cookie-groups {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 16px;
}

.cookie-toggle {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 4px 10px;
	padding: 14px;
	border-radius: var(--r-m);
	border: 1px solid var(--seam);
	background: var(--slab-up);
	cursor: pointer;
}

.cookie-toggle b {
	font-weight: 600;
	color: #fff;
}

.cookie-toggle small {
	grid-column: 1 / -1;
	font-size: 0.8rem;
	line-height: 1.35;
	color: var(--type-dim);
}

.cookie-toggle input {
	appearance: none;
	width: 42px;
	height: 24px;
	border-radius: var(--pill);
	background: var(--seam);
	position: relative;
	transition: background 0.2s ease;
}

.cookie-toggle input::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	transition: transform 0.2s ease;
}

.cookie-toggle input:checked {
	background: var(--cobalt);
}

.cookie-toggle input:checked::after {
	transform: translateX(18px);
}

.cookie-toggle input:disabled {
	background: var(--cobalt-down);
	cursor: not-allowed;
}

.cookie-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.cookie-deck-status {
	font-size: 0.85rem;
	color: var(--sky);
}

/* rail */
.rail-banner {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: 8px;
	padding: 20px;
	border-radius: var(--r-l);
	border: 1px solid var(--sky-line);
	background:
		radial-gradient(90% 70% at 100% 0%, hsl(var(--cob-h) 100% 55% / 0.55), transparent 70%),
		linear-gradient(160deg, var(--cobalt-deep), var(--night));
}

.rail-banner b {
	font-family: var(--display);
	font-weight: 400;
	font-size: 2.6rem;
	line-height: 1;
	background: var(--chrome);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 2px 0 var(--cobalt-down));
}

.rail-banner h2 {
	font-size: 1.05rem;
	text-transform: uppercase;
	color: #fff;
}

.rail-banner p {
	font-size: 0.88rem;
	line-height: 1.5;
	color: hsl(var(--sky-h) 30% 82%);
}

.rail-banner .action_fM8Cl {
	justify-self: start;
	margin-top: 4px;
	border-color: #fff;
}

.rail-banner--help {
	border-color: hsl(var(--gold-h) 100% 57% / 0.5);
	background: linear-gradient(160deg, hsl(var(--gold-h) 50% 12%), var(--night));
}

.rail-banner--help a[href^='tel'] {
	font-family: var(--display);
	font-size: 1.55rem;
	color: var(--gold);
}

.rail-links {
	display: grid;
	gap: 6px;
}

.rail-links p {
	margin-bottom: 4px;
	font-family: var(--display);
	font-size: 0.78rem;
	text-transform: uppercase;
	color: var(--sky);
}

.rail-links a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border-radius: 12px;
	border: 1px solid var(--seam-soft);
	background: var(--slab);
	font-size: 0.9rem;
	font-weight: 500;
}

.rail-links svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: var(--cobalt-up);
	stroke-width: 1.8;
	stroke-linejoin: round;
	stroke-linecap: round;
}

.rail-links a:hover,
.rail-links a[aria-current='page'] {
	border-color: var(--cobalt-up);
	background: var(--cobalt-haze);
}

.hall-close {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 40px;
	padding: 34px 40px;
	border-radius: var(--r-l);
	border: 1px solid var(--sky-line);
	background:
		repeating-linear-gradient(65deg, transparent 0 46px, hsl(0 0% 100% / 0.035) 46px 48px),
		radial-gradient(60% 140% at 100% 50%, hsl(var(--cob-h) 100% 58% / 0.55), transparent 65%),
		linear-gradient(100deg, var(--night), var(--cobalt-deep));
}

.hall-close h2 {
	margin-bottom: 6px;
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 3px 0 var(--cobalt-down);
}

.hall-close p {
	color: hsl(var(--sky-h) 40% 86%);
}

@media (max-width: 73.75em) {
	.hall-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.hall-main {
		padding-right: 0;
	}

	.hall-rail {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		margin-top: 24px;
		padding: 24px 0 0;
		border-left: 0;
		border-top: 1px solid var(--seam);
	}

	.cookie-groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 53.75em) {
	.hall-top {
		grid-template-columns: minmax(0, 1fr) 190px;
		padding: 26px 0 0 24px;
	}

	.hall-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.hall-tiles,
	.hall-duo,
	.hall-lines,
	.hall-contact {
		grid-template-columns: minmax(0, 1fr);
	}

	.hall-figures {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hall-close {
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 22px;
	}
}

@media (max-width: 35em) {
	.hall-top {
		grid-template-columns: minmax(0, 1fr);
		padding: 22px 18px 0;
	}

	.hall-top-art {
		max-width: 190px;
		margin-inline: auto;
	}

	.hall-top-copy {
		padding-bottom: 8px;
	}

	.hall-clause-head {
		padding: 12px 16px;
	}

	.hall-clause-body {
		padding: 16px 16px 18px;
	}

	.hall-num {
		width: 38px;
		height: 38px;
		font-size: 0.82rem;
	}

	.hall-find {
		grid-template-columns: minmax(0, 1fr);
		border-radius: var(--r-m);
	}

	.hall-find label {
		justify-self: start;
	}

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

	.cookie-groups,
	.hall-facts {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* :: motion preferences */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
	}

	.notice-roll {
		animation: none;
	}

	.notice-window,
	.notice-roll li {
		height: auto;
	}

	.notice-roll li:not(:first-child) {
		display: none;
	}
}

/* :: up to 1180px */
@media (max-width: 73.75em) {
	.lobby-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lobby-col:nth-child(2) {
		padding-right: 0;
	}

	.lobby-col--rail {
		grid-column: 1 / -1;
		margin-top: 28px;
		padding: 28px 0 0;
		border-left: 0;
		border-top: 1px solid var(--seam);
	}

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

	.card_1eWk5--bonus {
		grid-template-columns: 1fr;
		grid-template-areas: 'icon' 'title' 'text' 'cta';
		padding: 20px;
	}

	.card_1eWk5-icon {
		justify-self: start;
		margin-bottom: 10px;
		font-size: 2rem;
	}

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

	.grid_K2Vrz--games {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.grid_K2Vrz--providers {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

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

/* :: up to 860px */
@media (max-width: 53.75em) {
	[id] {
		scroll-margin-top: 76px;
	}

	.header-deck > .box_5EPhB {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
		padding-block: 10px;
	}

	.header_V5stk .logo,
	.header_V5stk-actions {
		display: none;
	}

	.logo-mobile {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		justify-self: start;
		font-family: var(--display);
		font-size: 1.15rem;
		text-transform: uppercase;
		background: var(--chrome);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}

	.logo-mobile .logo-mark {
		font-size: 1.05rem;
		-webkit-background-clip: border-box;
		background-clip: border-box;
		color: #fff;
	}

	.mobile-cta {
		display: inline-flex;
		justify-self: end;
		padding: 9px 18px;
		border-radius: var(--pill);
		border: 2px solid hsl(0 0% 100% / 0.8);
		background: var(--button-blue);
		box-shadow: 0 4px 16px var(--cobalt-glow);
		font-weight: 600;
		font-size: 0.85rem;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		color: #fff;
		white-space: nowrap;
	}

	.notice-inner,
	.notice-window,
	.notice-roll li {
		height: 36px;
	}

	.notice-roll li {
		font-size: 0.86rem;
	}

	@keyframes notice-flip {
		0%, 21% { transform: translateY(0); }
		25%, 46% { transform: translateY(-36px); }
		50%, 71% { transform: translateY(-72px); }
		75%, 96% { transform: translateY(-108px); }
		100% { transform: translateY(-144px); }
	}

	.lobby {
		padding-top: 18px;
	}

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

	.lobby-col,
	.lobby-col:nth-child(2) {
		padding: 24px 0 0;
		margin-top: 24px;
		border-left: 0;
		border-top: 1px solid var(--seam);
	}

	.lobby-col:first-child {
		padding-top: 0;
		margin-top: 0;
		border-top: 0;
	}

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

	.card_1eWk5--bonus {
		grid-template-columns: 84px minmax(0, 1fr);
		grid-template-areas: 'icon title' 'icon text' 'icon cta';
	}

	.card_1eWk5-icon {
		justify-self: center;
		margin-bottom: 0;
		font-size: 1.45rem;
	}

	.section_RUu9g {
		padding-block: 52px;
	}

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

	.payments-table th:nth-child(2),
	.payments-table th:nth-child(3),
	.payments-table td:nth-child(2),
	.payments-table td:nth-child(3) {
		display: none;
	}

	.section_RUu9g--cta > .box_5EPhB {
		flex-direction: column;
		align-items: flex-start;
		max-width: calc(100% - 32px);
		padding: 30px 24px;
	}

	.tenure-line::before {
		left: 7px;
	}

	.tenure-stop {
		grid-template-columns: minmax(0, 1fr);
		padding-left: 32px;
	}

	.tenure-stop::before {
		left: 0;
		top: 2px;
	}

	.tenure-mark {
		padding: 0 0 8px;
		text-align: left;
	}

	.app-bay-grid,
	.info-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 36px;
	}

	.info-row--reverse {
		direction: ltr;
	}

	.phone {
		width: 230px;
	}

	.site-footer_YQK8F-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.app-dock {
		left: 10px;
		right: 10px;
		bottom: 10px;
		justify-content: space-between;
	}
}

/* :: up to 560px */
@media (max-width: 35em) {
	.box_5EPhB {
		padding-inline: 16px;
	}

	.hero_p5UId {
		padding: 20px 18px 0;
	}

	.hero_p5UId-content {
		max-width: none;
		padding-bottom: 0;
	}

	.hero_p5UId-image {
		position: static;
		width: auto;
		max-width: 230px;
		margin: 6px auto 0;
	}

	.hero_p5UId-ctas .action_fM8Cl {
		flex: 1 1 100%;
	}

	.pay-panel {
		grid-template-columns: 84px minmax(0, 1fr);
		gap: 12px;
		padding: 14px;
	}

	.pay-ring b {
		font-size: 1.25rem;
	}

	.cat-icon {
		max-width: 62px;
	}

	.licence-board,
	.app-points {
		grid-template-columns: minmax(0, 1fr);
	}

	.grid_K2Vrz--games,
	.grid_K2Vrz--providers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.policy-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.info-block {
		padding: 24px 20px;
	}

	.info-table th,
	.info-table td {
		padding: 10px 14px;
	}

	.payments-table th,
	.payments-table td {
		padding: 11px 12px;
	}

	.logo-mobile {
		font-size: 0.95rem;
	}

	.mobile-cta {
		padding: 8px 14px;
		font-size: 0.78rem;
	}

	.dock-copy small {
		display: none;
	}

	.dock-cta {
		padding: 8px 14px;
		font-size: 0.8rem;
	}
}
