:root {
	--sc-bg: #000000;
	--sc-surface: #0e0e0e;
	--sc-surface-2: #161616;
	--sc-line: rgba(255, 255, 255, 0.10);
	--sc-gold: #fcad17;
	--sc-gold-soft: #f7ce4f;
	--sc-yellow: #ffce00;
	--sc-text: #ffffff;
	--sc-muted: rgba(255, 255, 255, 0.62);
	--sc-red: #ef4444;
	--sc-green: #22c55e;
	--sc-shell: 1240px;
	--sc-radius: 10px;
}

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

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

body {
	margin: 0;
	background: var(--sc-bg);
	color: var(--sc-text);
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.sc-locked {
	overflow: hidden;
}

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

a {
	color: var(--sc-gold);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.sc-shell {
	width: 100%;
	max-width: var(--sc-shell);
	margin: 0 auto;
	padding: 0 24px;
}

/* -- Buttons --------------------------------------------------------- */
.sc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	padding: 16px 28px;
	border-radius: 6px;
	border: 0;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.sc-btn:hover {
	text-decoration: none;
	transform: translateY(-2px);
}

.sc-btn--solid {
	background: linear-gradient(180deg, #ffd84a 0%, var(--sc-yellow) 55%, #f0a800 100%);
	color: #1a1300;
	box-shadow: 0 8px 22px rgba(255, 206, 0, 0.28);
}

.sc-btn--solid:hover {
	box-shadow: 0 12px 28px rgba(255, 206, 0, 0.42);
}

.sc-btn--ghost {
	background: #0b0b0b;
	color: var(--sc-text);
	border: 1px solid var(--sc-gold-soft);
	box-shadow: 0 0 14px rgba(247, 206, 79, 0.35), inset 0 0 10px rgba(247, 206, 79, 0.12);
}

.sc-btn--ghost:hover {
	box-shadow: 0 0 22px rgba(247, 206, 79, 0.6), inset 0 0 12px rgba(247, 206, 79, 0.2);
}

.sc-btn--sm {
	padding: 10px 22px;
	font-size: 14px;
	border-radius: 12px;
}

.sc-btn--lg {
	padding: 18px 38px;
	font-size: 17px;
}

/* -- Header ---------------------------------------------------------- */
.sc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #050505;
	border-bottom: 1px solid var(--sc-line);
}

.sc-header.is-stuck {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.sc-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 92px;
}

.sc-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1;
}

.sc-nav__link {
	color: var(--sc-text);
	font-size: 16px;
	font-weight: 500;
	padding: 10px 14px;
	border-radius: 6px;
	transition: color .15s ease, background .15s ease;
}

.sc-nav__link:hover {
	color: var(--sc-gold);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.04);
}

.sc-logo {
	flex-shrink: 0;
}

.sc-logo img {
	height: 56px;
	width: auto;
}

.sc-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1;
	justify-content: flex-end;
}

.sc-lang {
	color: var(--sc-text);
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 4px;
	border-bottom: 2px solid var(--sc-gold);
	white-space: nowrap;
}

/* burger */
.sc-burger {
	display: none;
	width: 46px;
	height: 46px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	background: #0b0b0b;
	border: 1px solid var(--sc-line);
	border-radius: 8px;
	cursor: pointer;
}

.sc-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--sc-text);
	transition: transform .2s ease, opacity .2s ease;
}

.sc-burger.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.sc-burger.is-open span:nth-child(2) {
	opacity: 0;
}

.sc-burger.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* mobile drawer */
.sc-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 300px;
	max-width: 84vw;
	background: #070707;
	border-left: 1px solid var(--sc-line);
	padding: 84px 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transform: translateX(105%);
	transition: transform .26s ease;
	z-index: 60;
	overflow-y: auto;
}

.sc-drawer.is-open {
	transform: translateX(0);
}

.sc-drawer .sc-nav__link {
	font-size: 17px;
	padding: 14px 12px;
	border-bottom: 1px solid var(--sc-line);
	border-radius: 0;
}

.sc-drawer__cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 18px;
}

.sc-drawer__cta .sc-btn {
	width: 100%;
}

.sc-scrim {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity .26s ease;
	z-index: 55;
}

.sc-scrim.is-visible {
	opacity: 1;
}

/* -- Layout ---------------------------------------------------------- */
.sc-main {
	display: block;
}

.sc-section {
	padding: 46px 0;
}

.sc-section--tight {
	padding: 26px 0;
}

/* -- Hero slider ----------------------------------------------------- */
.sc-hero {
	padding-top: 32px;
}

.sc-slider {
	position: relative;
}

.sc-slider__viewport {
	overflow: hidden;
	border-radius: var(--sc-radius);
}

.sc-slider__track {
	display: flex;
	transition: transform .5s ease;
}

.sc-slide {
	position: relative;
	flex: 0 0 100%;
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 40px 54px;
	background:
		radial-gradient(420px 320px at 82% 50%, rgba(252, 173, 23, 0.22), transparent 70%),
		linear-gradient(115deg, #1c1407 0%, #0a0a0a 52%, #000000 100%);
	overflow: hidden;
}

.sc-slide__body {
	position: relative;
	z-index: 2;
	max-width: 560px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}

.sc-slide__kicker {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--sc-muted);
}

.sc-slide__title {
	margin: 0;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.12;
}

.sc-slide__title b {
	color: var(--sc-gold);
}

.sc-slide__img {
	position: relative;
	z-index: 2;
	width: 320px;
	height: 320px;
	object-fit: contain;
	flex-shrink: 0;
	filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.sc-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	line-height: 1;
	color: #1a1300;
	background: var(--sc-yellow);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	z-index: 4;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.sc-slider__arrow--prev {
	left: 14px;
}

.sc-slider__arrow--next {
	right: 14px;
}

.sc-slider__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 16px;
}

.sc-slider__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	transition: background .15s ease, transform .15s ease;
}

.sc-slider__dot.is-active {
	background: var(--sc-yellow);
	transform: scale(1.2);
}

/* -- CTA banner ------------------------------------------------------ */
.sc-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 220px;
	padding: 44px 54px;
	background:
		radial-gradient(360px 300px at 88% 50%, rgba(252, 173, 23, 0.2), transparent 72%),
		linear-gradient(100deg, #141008 0%, #0a0a0a 60%, #000000 100%);
	border: 1px solid var(--sc-line);
	border-radius: var(--sc-radius);
	overflow: hidden;
}

.sc-banner__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	max-width: 620px;
	z-index: 2;
}

.sc-banner__title {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
}

.sc-banner__title b {
	display: block;
	font-size: 34px;
	font-weight: 800;
	color: var(--sc-gold);
}

.sc-banner__img {
	width: 230px;
	height: 230px;
	object-fit: contain;
	flex-shrink: 0;
	z-index: 2;
}

/* -- Slots grid ------------------------------------------------------ */
.sc-games__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 26px;
}

.sc-eyebrow {
	display: block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--sc-gold);
	margin-bottom: 6px;
}

.sc-h2 {
	margin: 0;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.2;
}

.sc-games__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}

.sc-game {
	display: flex;
	flex-direction: column;
	background: var(--sc-surface);
	border: 1px solid var(--sc-line);
	border-radius: var(--sc-radius);
	overflow: hidden;
	transition: transform .15s ease, border-color .15s ease;
}

.sc-game:hover {
	transform: translateY(-4px);
	border-color: rgba(247, 206, 79, 0.5);
	text-decoration: none;
}

.sc-game__media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #545454;
	overflow: hidden;
}

.sc-game__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sc-game__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 8px;
	color: #fff;
	background: var(--sc-red);
}

.sc-game__badge--top {
	background: var(--sc-gold);
	color: #1a1300;
}

.sc-game__badge--new {
	background: var(--sc-green);
}

.sc-game__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity .18s ease;
}

.sc-game:hover .sc-game__overlay {
	opacity: 1;
}

.sc-game__play {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #1a1300;
	background: var(--sc-yellow);
	border-radius: 50%;
}

.sc-game__label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.sc-game__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 12px;
}

.sc-game__name {
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sc-game__prov {
	font-size: 12px;
	color: var(--sc-muted);
}

.sc-game__stat {
	margin-top: 6px;
	padding-top: 8px;
	border-top: 1px solid var(--sc-line);
	font-size: 12px;
	color: var(--sc-muted);
}

.sc-game__stat b {
	color: var(--sc-green);
	font-weight: 700;
}

.sc-games__more {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

/* -- Content typography --------------------------------------------- */
.sc-content-sec {
	padding: 46px 0;
}

.sc-article {
	max-width: 1000px;
	margin: 0 auto;
}

.sc-h1 {
	margin: 0 0 22px;
	font-size: 44px;
	font-weight: 800;
	line-height: 1.15;
}

.sc-content {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.86);
}

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

.sc-content h2 {
	font-size: 30px;
	font-weight: 800;
	margin: 36px 0 14px;
	color: var(--sc-text);
}

.sc-content h3 {
	font-size: 22px;
	font-weight: 700;
	margin: 28px 0 12px;
	color: var(--sc-text);
}

.sc-content h4 {
	font-size: 18px;
	font-weight: 700;
	margin: 22px 0 10px;
	color: var(--sc-text);
}

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

.sc-content a {
	color: var(--sc-gold);
	text-decoration: underline;
}

.sc-content ul,
.sc-content ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

.sc-content li {
	margin-bottom: 8px;
}

.sc-content img {
	border-radius: var(--sc-radius);
	/* centered block; height:auto keeps ratio when max-width caps it on mobile */
	display: block;
	height: auto;
	margin: 16px auto;
}

.sc-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14px;
	border-radius: var(--sc-radius);
	overflow: hidden;
}

.sc-content th {
	background: #1d1606;
	color: var(--sc-gold);
	font-weight: 700;
	text-align: left;
	padding: 13px 15px;
}

.sc-content td {
	padding: 13px 15px;
	border-top: 1px solid var(--sc-line);
}

.sc-content tbody tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.03);
}

.sc-content blockquote {
	margin: 18px 0;
	padding: 14px 20px;
	border-left: 3px solid var(--sc-gold);
	background: rgba(252, 173, 23, 0.07);
	color: var(--sc-muted);
}

/* closing CTA block (landing) */
.sc-cta-block {
	margin-top: 36px;
	display: flex;
	justify-content: center;
}

/* -- Footer ---------------------------------------------------------- */
.sc-footer {
	border-top: 1px solid var(--sc-line);
	background: #050505;
	padding: 46px 0 30px;
}

.sc-footer__logo img {
	height: 58px;
	width: auto;
}

.sc-footer__rule {
	height: 1px;
	background: var(--sc-line);
	margin: 28px 0;
}

.sc-footer__cols {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px;
}

.sc-footer__title {
	margin: 0 0 16px;
	font-size: 17px;
	font-weight: 700;
	color: var(--sc-text);
}

.sc-footer__col a {
	display: block;
	color: var(--sc-muted);
	font-size: 15px;
	margin-bottom: 12px;
}

.sc-footer__col a:hover {
	color: var(--sc-gold);
	text-decoration: none;
}

.sc-apps {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sc-apps a {
	margin: 0;
}

.sc-apps img {
	height: 40px;
	width: auto;
}

.sc-footer__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 8px 0;
}

.sc-footer__badges img {
	height: 44px;
	width: auto;
	opacity: .9;
}

.sc-footer__warn {
	text-align: center;
	font-size: 14px;
	color: var(--sc-muted);
	max-width: 880px;
	margin: 18px auto 0;
}

.sc-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.sc-footer__copy {
	margin: 0;
	font-size: 14px;
	color: var(--sc-muted);
}

.sc-footer__lang {
	font-size: 14px;
	font-weight: 600;
	color: var(--sc-text);
}

/* -- Mobile sticky CTA ---------------------------------------------- */
.sc-mobicta {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 45;
	background: #0a0a0a;
	border-top: 1px solid var(--sc-gold-soft);
	padding: 8px;
	gap: 8px;
}

.sc-mobicta a {
	flex: 1;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	padding: 11px 4px;
	border-radius: 8px;
	color: #1a1300;
	background: var(--sc-yellow);
}

.sc-mobicta a:hover {
	text-decoration: none;
}

/* -- Scroll to top --------------------------------------------------- */
.sc-totop {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #1a1300;
	background: var(--sc-yellow);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	z-index: 44;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* -- Responsive ------------------------------------------------------ */
@media (max-width: 1100px) {
	.sc-games__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.sc-footer__cols {
		grid-template-columns: repeat(3, 1fr);
	}

	.sc-slide__title {
		font-size: 32px;
	}
}

@media (max-width: 900px) {
	.sc-nav {
		display: none;
	}

	.sc-burger {
		display: flex;
	}

	.sc-header__actions .sc-btn,
	.sc-header__actions .sc-lang {
		display: none;
	}

	.sc-header__row {
		height: 76px;
	}

	.sc-logo img {
		height: 46px;
	}

	.sc-h1 {
		font-size: 32px;
	}

	.sc-h2,
	.sc-banner__title b {
		font-size: 26px;
	}

	.sc-slide,
	.sc-banner {
		flex-direction: column;
		text-align: center;
		padding: 32px 24px;
	}

	.sc-slide__body,
	.sc-banner__body {
		align-items: center;
		text-align: center;
	}

	.sc-slide__img {
		width: 220px;
		height: 220px;
	}

	.sc-banner__img {
		width: 170px;
		height: 170px;
	}

	.sc-footer__cols {
		grid-template-columns: repeat(2, 1fr);
	}

	.sc-games__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.sc-mobicta {
		display: flex;
	}

	body {
		padding-bottom: 64px;
	}

	.sc-totop {
		bottom: 76px;
	}
}

@media (max-width: 620px) {
	.sc-games__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sc-shell {
		padding: 0 16px;
	}

	.sc-slide__title {
		font-size: 26px;
	}

	.sc-content table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.sc-footer__badges {
		gap: 18px;
	}

	.sc-footer__badges img {
		height: 34px;
	}
}
