:root {
	--clr-bg:            #020202;
	--clr-surface:       #020202;
	--clr-surface-hover: rgba(255, 255, 255, 0.04);
	--clr-border:        rgba(255, 255, 255, 0.08);
	--clr-accent:        #7b2fb8;
	--clr-accent-light:  #9b4fd8;
	--clr-cta:           #f5a623;
	--clr-cta-gradient:  linear-gradient(180deg, #ffc14d 0%, #e8841a 100%);
	--clr-text:          #ffffff;
	--clr-text-muted:    #c0aed5;
	--clr-text-dim:      #6e5a88;
	--clr-live:          #2ecc71;
	--header-h:          54px;
	--sidebar-w:         200px;
	--dock-h:            58px;
	--drawer-w:          272px;
	--ff:                'Nunito Sans', sans-serif;
	--ease:              cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--ff);
	font-size: 14px;
	line-height: 1.55;
	color: var(--clr-text);
	background: var(--clr-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.screen-overlay {
	position: fixed;
	inset: 0;
	z-index: 900;
	background: rgba(4, 1, 12, 0.8);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.screen-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.nav-drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 950;
	width: var(--drawer-w);
	height: 100%;
	background: #020202;
	transform: translateX(-100%);
	transition: transform 0.35s var(--ease);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	display: flex;
	flex-direction: column;
}

.nav-drawer.is-open {
	transform: translateX(0);
}

.nav-drawer__head {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px 20px 24px;
}

.nav-drawer__logo img {
	height: 40px;
	width: auto;
}

.nav-drawer__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: var(--clr-text-muted);
	transition: color 0.2s;
}

.nav-drawer__close:hover {
	color: var(--clr-text);
}

.nav-drawer__body {
	flex: 1;
	padding: 0 0 24px;
}

.nav-drawer__body ul li a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 600;
	color: var(--clr-text-muted);
	transition: color 0.2s, background 0.2s;
}

.nav-drawer__body ul li a:hover,
.nav-drawer__body ul li a:active {
	color: var(--clr-text);
	background: var(--clr-surface-hover);
}

.nav-drawer__body ul li a svg {
	flex-shrink: 0;
	opacity: 0.75;
}

.nav-drawer__sep {
	height: 1px;
	background: var(--clr-border);
	margin: 6px 28px;
}

.nav-drawer__chevron {
	margin-left: auto;
	transition: transform 0.25s var(--ease);
}

@media (min-width: 1024px) {
	.nav-drawer,
	.screen-overlay {
		display: none !important;
	}
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 800;
	height: var(--header-h);
	background: var(--clr-surface);
	border-bottom: 1px solid var(--clr-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 12px;
	gap: 8px;
	position: relative;
}

.site-header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-header__logo img {
	height: 30px;
	width: auto;
}

@media (max-width: 1023px) {
	.site-header__logo {
		flex: 1;
		justify-content: center;
	}
}

.site-header__nav {
	display: none;
	align-items: center;
	gap: 4px;
	margin-left: 16px;
}

.site-header__search {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: var(--clr-text-muted);
	transition: color 0.2s, background 0.2s;
}

.site-header__search:hover {
	color: var(--clr-text);
	background: rgba(255, 255, 255, 0.1);
}

.site-header__link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 700;
	color: var(--clr-text);
	border-radius: 6px;
	transition: background 0.2s;
	white-space: nowrap;
}

.site-header__link:hover {
	background: rgba(255, 255, 255, 0.05);
}

.site-header__link--live {
	color: var(--clr-live);
}

.site-header__link--live:hover {
	color: #5dde9e;
}

.live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--clr-live);
	animation: pulse-dot 2s infinite;
	flex-shrink: 0;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0.4; }
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 24px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border-radius: 6px;
	transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
	white-space: nowrap;
	cursor: pointer;
}

.cta-btn:active {
	transform: scale(0.96);
}

.cta-btn--purple {
	background: var(--clr-accent);
	color: #fff;
	border: none;
}

.cta-btn--purple:hover {
	background: var(--clr-accent-light);
}

.cta-btn--accent {
	background: var(--clr-cta-gradient);
	color: #1a0a00;
	border: none;
	box-shadow: 0 2px 12px rgba(245, 166, 35, 0.3);
}

.cta-btn--accent:hover {
	box-shadow: 0 4px 20px rgba(245, 166, 35, 0.45);
}

.cta-btn--pill {
	padding: 7px 18px;
	font-size: 11px;
	border-radius: 20px;
}

.cta-btn--pill-lg {
	padding: 10px 28px;
	font-size: 13px;
	border-radius: 24px;
}

.cta-btn--lg {
	padding: 12px 40px;
	font-size: 15px;
	font-weight: 900;
	border-radius: 30px;
	letter-spacing: 0.04em;
}

.site-header__cta {
	display: none;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.site-header__cta-mob {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	z-index: 1;
}

.site-header__login-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--clr-text-muted);
	transition: color 0.2s;
}

.site-header__login-icon:hover {
	color: var(--clr-text);
}

@media (min-width: 1024px) {
	.site-header__cta     { display: flex; }
	.site-header__cta-mob { display: none; }
	.site-header__nav     { display: flex; }
	.site-header__inner   { padding: 0 20px; }
	.site-header__logo    { position: static; transform: none; }
	.site-header__logo img { height: 34px; }
}

.toggle-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	z-index: 1;
}

.toggle-btn__line {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--clr-text);
	border-radius: 1px;
	transition: transform 0.3s var(--ease), opacity 0.2s;
}

@media (min-width: 1024px) {
	.toggle-btn { display: none; }
}

.page-shell {
	display: flex;
	min-height: calc(100vh - var(--header-h));
}

.desk-nav {
	display: none;
	flex-shrink: 0;
	width: var(--sidebar-w);
	background: var(--clr-surface);
	border-right: 1px solid var(--clr-border);
	padding: 14px 0;
	position: sticky;
	top: var(--header-h);
	height: calc(100vh - var(--header-h));
	overflow-y: auto;
}

.desk-nav ul li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	color: var(--clr-text-muted);
	transition: color 0.2s, background 0.2s;
}

.desk-nav ul li a:hover {
	color: var(--clr-text);
	background: var(--clr-surface-hover);
}

.desk-nav ul li a svg {
	flex-shrink: 0;
	opacity: 0.7;
}

.desk-nav__sep {
	height: 1px;
	background: var(--clr-border);
	margin: 6px 20px;
}

.desk-nav__chevron {
	margin-left: auto;
	transition: transform 0.25s var(--ease);
}

@media (min-width: 1024px) {
	.desk-nav { display: block; }
}

.main-area {
	flex: 1;
	min-width: 0;
	padding-bottom: calc(var(--dock-h) + 8px);
}

@media (min-width: 1024px) {
	.main-area { padding-bottom: 0; }
}

.hero-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 5;
}

@media (max-width: 767px) {
	.hero-slider {
		aspect-ratio: 16 / 9;
	}
}

.hero-slider__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.5s var(--ease);
}

.hero-slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-slide--1 { background-image: url('/assets/img/slide-1.webp'); }
.hero-slide--2 { background-image: url('/assets/img/slide-2.webp'); }
.hero-slide--3 { background-image: url('/assets/img/slide-3.webp'); }

.hero-slide__overlay {
	position: absolute;
	inset: 0;
	background: rgba(2, 2, 2, 0.45);
}

@media (min-width: 768px) {
	.hero-slide__overlay {
		background: linear-gradient(90deg, rgba(2, 2, 2, 0.7) 0%, rgba(2, 2, 2, 0.2) 60%, transparent 100%);
	}
}

.hero-slide__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
	padding: 20px 24px;
}

@media (min-width: 768px) {
	.hero-slide__content {
		align-items: flex-start;
		text-align: left;
		padding: 32px 48px;
	}
}

.hero-slide__title {
	font-size: clamp(16px, 3.2vw, 34px);
	font-weight: 800;
	line-height: 1.2;
	color: var(--clr-text);
	margin-bottom: 16px;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-slide__title em {
	font-style: normal;
	color: var(--clr-cta);
}

.hero-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s;
}

.hero-slider__arrow:hover {
	color: #fff;
}

.hero-slider__arrow--prev { left: 4px; }
.hero-slider__arrow--next { right: 4px; }

@media (min-width: 768px) {
	.hero-slider__arrow--prev { left: 12px; }
	.hero-slider__arrow--next { right: 12px; }
}

.winners-ticker {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	background: var(--clr-surface);
	border-bottom: 1px solid var(--clr-border);
	overflow: hidden;
	white-space: nowrap;
}

.winners-ticker__label {
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--clr-cta);
}

.winners-ticker__track {
	flex: 1;
	overflow: hidden;
}

.winners-ticker__scroll {
	display: inline-flex;
	gap: 24px;
	animation: ticker-scroll 30s linear infinite;
}

.winners-ticker__item {
	flex-shrink: 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--clr-text-muted);
}

.winners-ticker__item em {
	font-style: normal;
	color: var(--clr-text);
	font-weight: 800;
}

@keyframes ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.cat-bar {
	position: relative;
	padding: 12px 16px;
	border-bottom: 1px solid var(--clr-border);
}

.cat-bar__scroll {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.cat-bar__scroll::-webkit-scrollbar {
	display: none;
}

.cat-pill {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 1 0 0;
	min-width: 130px;
	padding: 12px 16px;
	font-size: 13px;
	font-weight: 700;
	color: var(--clr-text-muted);
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	transition: color 0.2s, background 0.2s, border-color 0.2s;
	white-space: nowrap;
	text-align: center;
}

.cat-pill:hover {
	color: var(--clr-text);
	border-color: rgba(255, 255, 255, 0.2);
}

.cat-pill--active {
	background: var(--clr-accent);
	border-color: var(--clr-accent);
	color: var(--clr-text);
}

.cat-pill--active:hover {
	background: var(--clr-accent-light);
	border-color: var(--clr-accent-light);
}

.cat-pill svg {
	flex-shrink: 0;
	opacity: 0.8;
}

.cat-bar__arrow {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, transparent, var(--clr-bg) 60%);
	color: var(--clr-text-muted);
	z-index: 2;
	pointer-events: none;
}

.cat-bar__arrow svg {
	pointer-events: auto;
	cursor: pointer;
}

.games-block {
	padding: 20px 16px;
}

.games-block__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.games-block__title {
	font-size: 18px;
	font-weight: 800;
	color: var(--clr-text);
}

.games-block__all {
	font-size: 13px;
	font-weight: 700;
	color: var(--clr-text-muted);
	transition: color 0.2s;
}

.games-block__all:hover {
	color: var(--clr-text);
}

.games-block__scroll {
	position: relative;
}

.games-grid {
	display: grid;
	grid-template-rows: repeat(2, auto);
	grid-auto-flow: column;
	grid-auto-columns: 140px;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 18px;
	scroll-snap-type: x proximity;
	scrollbar-width: auto;
	scrollbar-color: var(--clr-accent) rgba(255, 255, 255, 0.1);
}

.games-grid::-webkit-scrollbar {
	height: 10px;
}

.games-grid::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
}

.games-grid::-webkit-scrollbar-thumb {
	background: var(--clr-accent);
	border-radius: 5px;
	min-width: 60px;
}

.games-grid::-webkit-scrollbar-thumb:hover {
	background: var(--clr-accent-light);
}

@media (min-width: 480px) {
	.games-grid {
		grid-auto-columns: 160px;
		gap: 12px;
	}
}

@media (min-width: 768px) {
	.games-grid {
		grid-auto-columns: 180px;
		gap: 14px;
	}
}

@media (min-width: 1200px) {
	.games-grid {
		grid-auto-columns: 190px;
	}
}

.games-block__scroll::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40px;
	background: linear-gradient(90deg, transparent, var(--clr-bg));
	pointer-events: none;
	z-index: 2;
}

.slot-card {
	display: flex;
	flex-direction: column;
	scroll-snap-align: start;
}

.slot-card__wrap {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--clr-surface);
}

.slot-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s var(--ease);
}

.slot-card__hover {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(12, 5, 21, 0.6);
	opacity: 0;
	transition: opacity 0.25s var(--ease);
}

.slot-card__wrap:hover .slot-card__hover {
	opacity: 1;
}

.slot-card__wrap:hover .slot-card__img {
	transform: scale(1.06);
}

.slot-card__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 28px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	color: #1a0a00;
	background: var(--clr-cta-gradient);
	border-radius: 6px;
	letter-spacing: 0.03em;
	transition: transform 0.15s;
}

.slot-card__play:hover {
	transform: scale(1.04);
}

.slot-card__name {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--clr-text-muted);
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bottom-dock {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 800;
	height: var(--dock-h);
	display: flex;
	align-items: stretch;
	justify-content: space-around;
	background: #120e1a;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-dock__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	flex: 1;
	font-size: 10px;
	font-weight: 700;
	color: var(--clr-text-dim);
	transition: color 0.2s;
	-webkit-tap-highlight-color: transparent;
}

.bottom-dock__item svg {
	flex-shrink: 0;
}

.bottom-dock__item span {
	max-width: 72px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
}

.bottom-dock__item--active {
	color: var(--clr-accent);
}

.bottom-dock__item:active {
	color: var(--clr-text);
}

@media (min-width: 1024px) {
	.bottom-dock { display: none; }
}

.seo-content {
	padding: 32px 16px 60px;
	line-height: 1.7;
	color: var(--clr-text-muted);
}

@media (min-width: 768px) {
	.seo-content {
		padding: 40px 24px 80px;
	}
}

.seo-content h1 {
	font-size: clamp(22px, 4vw, 32px);
	font-weight: 900;
	line-height: 1.25;
	color: var(--clr-text);
	margin-bottom: 16px;
}

.seo-content h2 {
	font-size: clamp(18px, 3vw, 24px);
	font-weight: 800;
	line-height: 1.3;
	color: var(--clr-text);
	margin-top: 40px;
	margin-bottom: 14px;
	padding-top: 20px;
	border-top: 1px solid var(--clr-border);
}

.seo-content h2[id] {
	scroll-margin-top: calc(var(--header-h) + 16px);
}

.seo-content h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--clr-text);
	margin-top: 24px;
	margin-bottom: 10px;
}

.seo-content p {
	margin-bottom: 14px;
}

.seo-content p strong {
	color: var(--clr-text);
	font-weight: 700;
}

.seo-content a {
	color: var(--clr-accent-light);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.2s;
}

.seo-content a:hover {
	color: var(--clr-cta);
}

.seo-content img {
	max-width: 100%;
	display: block;
	border-radius: 10px;
	margin: 20px auto 0;
	border: 1px solid var(--clr-border);
}

.seo-content ul {
	margin: 14px 0;
	padding-left: 0;
	list-style: none;
}

.seo-content ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
}

.seo-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--clr-accent);
}

.seo-content ol {
	margin: 14px 0;
	padding-left: 0;
	counter-reset: step-counter;
	list-style: none;
}

.seo-content ol li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 10px;
	counter-increment: step-counter;
}

.seo-content ol li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	color: var(--clr-text);
	background: var(--clr-accent);
	border-radius: 50%;
}

.seo-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 13px;
}

.seo-content thead th {
	text-align: left;
	padding: 12px 14px;
	font-weight: 700;
	color: var(--clr-text);
	background: rgba(123, 47, 184, 0.15);
	border-bottom: 2px solid var(--clr-accent);
}

.seo-content tbody td {
	padding: 10px 14px;
	border-bottom: 1px solid var(--clr-border);
	vertical-align: top;
}

.seo-content tbody tr:hover td {
	background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 600px) {
	.seo-content table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
	}
}

.seo-content blockquote {
	position: relative;
	margin: 30px 0;
	padding: 18px 20px 18px 24px;
	background: rgba(123, 47, 184, 0.08);
	border-left: 4px solid var(--clr-accent);
	border-radius: 0 8px 8px 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--clr-text-muted);
	font-style: italic;
}

.site-footer {
	border-top: 1px solid var(--clr-border);
	padding: 40px 16px 100px;
	color: var(--clr-text-muted);
	font-size: 13px;
	line-height: 1.6;
    text-align: center;
}

@media (min-width: 768px) {
	.site-footer {
		padding: 48px 24px 60px;
        text-align: center;
	}
}

.site-footer__columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-bottom: 36px;
}

@media (min-width: 600px) {
	.site-footer__columns {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
}

.site-footer__heading {
	display: block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--clr-text);
	margin-bottom: 14px;
}

.site-footer__col ul li {
	margin-bottom: 8px;
}

.site-footer__col ul li a {
	color: var(--clr-text-muted);
	transition: color 0.2s;
}

.site-footer__col ul li a:hover {
	color: var(--clr-text);
}

.site-footer__payments {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
	padding: 20px 0;
	border-top: 1px solid var(--clr-border);
}

.site-footer__pay-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 700;
	color: var(--clr-text-muted);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--clr-border);
	border-radius: 6px;
	white-space: nowrap;
}

.site-footer__badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-bottom: 28px;
}

.site-footer__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--clr-text-muted);
	border: 1px solid var(--clr-border);
	border-radius: 20px;
}

.site-footer__badge svg {
	opacity: 0.6;
}

.site-footer__legal {
	text-align: center;
	margin-bottom: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.site-footer__legal p {
	margin-bottom: 12px;
	font-size: 12px;
	color: var(--clr-text-dim);
	line-height: 1.7;
}

.site-footer__disclaimer {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding-top: 20px;
	border-top: 1px solid var(--clr-border);
}

.site-footer__disclaimer p {
	font-size: 12px;
	color: var(--clr-text-dim);
	line-height: 1.7;
	font-style: italic;
}

.hero-slider__track {
	will-change: transform;
}

.winners-ticker__scroll {
	will-change: transform;
}

.nav-drawer {
	will-change: transform;
}

.site-header {
	contain: layout style;
}

.bottom-dock {
	contain: layout style;
}

.slot-card__wrap {
	contain: layout style paint;
}