/*!
 * Stylesheet: Deep Violet
 * Fonts: Teko / Rubik
 * Date: 2026-08-17T10:33:33.834Z
 */

@import "https://fonts.googleapis.com/css2?family=Teko:wght@500;600;700&family=Rubik:wght@400;500&display=swap";

:root {
	/* Colors */
	--theme-secondary: #a78bfa;
	--theme-light: #f5f3ff;
	--theme-dark: #1e1033;
	--theme-primary: #8b5cf6;
	--theme-darker: #0f0819;
	--theme-accent: #c4b5fd;
	--theme-secondary-alpha: #a78bfa40;
	--theme-text: #ede9fe;
	--theme-primary-alpha: #8b5cf640;
	--theme-muted: #c4b5fd;

	/* Typography */
	--typo-body: 'Rubik', sans-serif;
	--typo-heading: 'Teko', sans-serif;

	/* Spacing */
	--sp-section: 70px;
	--sp-element: 30px;
	--sp-gap: 25px;

	/* Border Radius */
	--rad-md: 20px;
	--rad-full: 50px;
	--rad-lg: 28px;
	--rad-sm: 12px;

	/* Shadows */
	--sh-glow: 0 0 30px;
	--sh-elevated: 0 8px 30px rgba(0,0,0,0.35);
	--sh-card: 0 4px 20px rgba(0,0,0,0.25);
}


/* ===== Base ===== */

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

.jump-link {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12px;
	padding-right: 24px;
	padding-bottom: 12px;
	padding-left: 24px;
	background: var(--theme-primary);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--rad-md);
	z-index: 10000;
	transition: top .25s ease-in;
}

.jump-link:focus {
	top: 10px;
	outline: 3px solid var(--theme-accent);
	outline-offset: 2px;
}


a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--theme-accent);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* --- Animations --- */

@keyframes fadeIn-anim {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes slideUp-in {
	0% { opacity: 0; transform: translateY(30px); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes go-shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}


html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--typo-body);
	background: var(--theme-darker);
	color: var(--theme-text);
	line-height: 1.6em;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--typo-heading);
	font-weight: 700;
	line-height: 120%;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: all .25s ease-in;
}


/* Container */

.wrapper_F00Cx {
	max-width: 1280px;
	margin-inline: auto;
	padding-top: 0;
	padding-right: 24px;
	padding-bottom: 0;
	padding-left: 24px;
}

button[data-streak-action]{font:inherit;cursor:pointer}
button[data-streak-action="pick"]{display:block;width:100%;margin:0;padding:0;border:0;background:transparent;color:inherit;text-align:inherit}

/*
 * Header
 */

.header_rpTxt {
	position: fixed;
	top: 0;
	left: 0;
	right: 0px;
	z-index: 1000;
	padding: 16px 0px 16px 0;
	background: rgba(0, 0, 0, 0.85);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: all .25s ease-in;
}

.header_rpTxt.wzScrolled {
	background: rgb(0 0 0 / 90%);
	backdrop-filter: blur(20px);
	padding-top: 12px;
	padding-right: 0;
	padding-bottom: 12px;
	padding-left: 0px;
	box-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.header_rpTxt .wrapper_F00Cx {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_rpTxt .logo {
	font-family: var(--typo-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--theme-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav-links_XL8XG {
	display: flex;
	gap: 32px;
}

.nav-links_XL8XG a {
	font-weight: 500;
	color: var(--theme-text);
	opacity: 0.8;
	transition: all .25s ease-in;
}

.nav-links_XL8XG a:hover {
	opacity: 1;
	color: var(--theme-accent);
}

.header_rpTxt-actions {
	display: flex;
	gap: 0.75rem;
}

/* ===== Buttons ===== */

.button_dd5UI {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-family: var(--typo-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--rad-md);
	cursor: pointer;
	transition: all .25s ease-in;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.button_dd5UI--primary {
	background: var(--theme-primary);
	border: none;
	box-shadow: 0 0 20px var(--theme-primary-alpha);
	color: rgb(255,255,255);
}

.button_dd5UI--primary:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-elevated);
}

.button_dd5UI--secondary {
	background: transparent;
	border: 2px solid var(--theme-text);
	color: var(--theme-text);
}

.button_dd5UI--secondary:hover {
	background: var(--theme-text);
	color: var(--theme-dark);
}

.button_dd5UI--large {
	padding: 18px 40px;
	font-size: 17px;
}

.button_dd5UI--small {
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
	font-size: 14px;
}


/* ==================== HERO ==================== */

.intro_PxKtn {
	min-height: 100dvh;
	display: flex;
	align-items: center;
	padding-top: 120px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
	background: linear-gradient(160deg, var(--theme-dark) 0%, var(--theme-darker) 50%, var(--theme-dark) 100%);
	position: relative;
	overflow: hidden;
}

.intro_PxKtn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 50%, var(--theme-primary-alpha) 0%, transparent 50%),
	            radial-gradient(circle at 70% 80%, var(--theme-secondary-alpha) 0%, transparent 40%);
	pointer-events: none;
}

.intro_PxKtn .wrapper_F00Cx {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.75rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.intro_PxKtn-content {
}

.intro_PxKtn-badge {
	display: inline-block;
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
	background: var(--theme-primary-alpha);
	border-width: 1px;
	border-style: solid;
	border-color: var(--theme-primary);
	border-radius: var(--rad-full);
	font-size: 14px;
	font-weight: 600;
	color: var(--theme-accent);
	margin-bottom: 1.5rem;
}

.intro_PxKtn-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 20px;
	color: rgb(255,255,255);
	text-shadow: 0 4px 30px rgb(0 0 0 / 30%);
}

.intro_PxKtn-subtitle {
	font-size: 20px;
	color: var(--theme-muted);
	margin-bottom: 32px;
	max-width: 520px;
}

.intro_PxKtn-subtitle strong {
	color: var(--theme-accent);
}

.intro_PxKtn-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.intro_PxKtn-features {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.intro_PxKtn-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 14px;
	color: var(--theme-muted);
}

.intro_PxKtn-feature span {
	font-size: 1.188rem;
}

.intro_PxKtn-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.intro_PxKtn-image img {
	width: 100%;
	max-width: 500px;
	max-height: 420px;
	object-fit: contain;
}


/* --- Sections --- */

.section_NLSpo {
	padding: var(--sp-section) 0;
}

.section_NLSpo-title {
	font-size: clamp(2rem, 4vw, 3rem);
	text-align: center;
	margin-bottom: 1rem;
	color: rgb(255, 255, 255);
}

.section_NLSpo-subtitle {
	text-align: center;
	font-size: 1.063rem;
	color: var(--theme-muted);
	margin-bottom: 48px;
	max-width: 680px;
	margin: 0 auto;
}


/* --- Cards --- */

.tile_kdvPY {
	background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgb(255 255 255 / 2%) 100%);
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--rad-lg);
	padding: var(--sp-element);
	transition: all .25s ease-in;
}

.tile_kdvPY:hover {
	transform: translate(0, -6px);
	box-shadow: var(--sh-elevated);
	border-color: var(--theme-primary);
}

.grid_3073p--bonuses {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-gap);
}

.tile_kdvPY--bonus {
	text-align: center;
	padding-top: 40px;
	padding-right: 30px;
	padding-bottom: 40px;
	padding-left: 30px;
}

.tile_kdvPY-icon {
	font-size: 56px;
	margin-bottom: 1.25rem;
}

.tile_kdvPY--bonus h3 {
	font-size: 24px;
	margin-bottom: 1rem;
	color: var(--theme-accent);
}

.tile_kdvPY--bonus p {
	color: var(--theme-muted);
	margin-bottom: 1.5rem;
	line-height: 170%;
}

.grid_3073p--games {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-gap);
}

.tile_kdvPY--game {
	position: relative;
	padding: 0;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.tile_kdvPY--game img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease-out;
}

.tile_kdvPY--game:hover img {
	transform: scale(1.03) rotate(1deg);
}

.tile_kdvPY-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.8);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity .25s ease-in;
}

.tile_kdvPY--game:hover .tile_kdvPY-overlay {
	opacity: 1;
}

.tile_kdvPY-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0px;
	padding-top: 16px;
	padding-right: 16px;
	padding-bottom: 16px;
	padding-left: 16px;
	background: linear-gradient(transparent, rgb(0 0 0 / 90%));
}

.tile_kdvPY-name {
	font-weight: 600;
	color: #fff;
}

.grid_3073p--providers {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: var(--sp-gap);
}

.tile_kdvPY--provider {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px;
	overflow: hidden;
	aspect-ratio: 2.5 / 1;
	position: relative;
}

.tile_kdvPY--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all .25s ease-in;
}

.tile_kdvPY--provider:hover img {
	filter: brightness(1) contrast(1);
	transform: scale(1.07);
}

.tile_kdvPY--provider span {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--theme-muted);
	text-align: center;
	background: linear-gradient(transparent, rgba(0,0,0,0.6));
	opacity: 0;
	transition: opacity .25s ease-in;
}

.tile_kdvPY--provider:hover span {
	opacity: 1;
}

.grid_3073p--reviews {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-gap);
}

.tile_kdvPY--review {
	padding: 28px;
}

.tile_kdvPY-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.wzReviewerAvatar {
	width: 48px;
	height: 54px;
	border-radius: 50%;
	background: linear-gradient(170deg, var(--theme-primary), var(--theme-secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #ffffff;
}

.wzReviewerInfo strong {
	display: block;
	color: #FFF;
}

.wzStars {
	color: var(--theme-accent);
	font-size: 0.875rem;
}

.tile_kdvPY--review p {
	color: var(--theme-muted);
	font-style: italic;
	line-height: 1.7em;
}


/* ===== About / Content Layout ===== */

.wzTwoCol {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.wzTwoColRow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.wzTwoColRow--swap {
	direction: rtl;
}

.wzTwoColRow--swap > * {
	direction: ltr;
}

.wzTwoColText h3 {
	font-size: 2rem;
	margin-bottom: 1.25rem;
	color: var(--theme-accent);
}

.wzTwoColText p {
	color: var(--theme-muted);
	margin-bottom: 1rem;
	line-height: 180%;
}

.wzTwoColImg {
	display: flex;
	align-items: center;
	justify-content: center;
}

.wzTwoColImg img {
	width: 100%;
	max-width: 400px;
	max-height: 340px;
	object-fit: contain;
}

/* CTA Blocks */

.section_NLSpo--cta {
	text-align: center;
	padding-block: 80px;
	padding-inline: 0;
	background: linear-gradient(45deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
	position: relative;
	overflow: hidden;
}

.section_NLSpo--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.2;
}

.section_NLSpo--cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: #ffffff;
	margin-bottom: 16px;
	position: relative;
}

.section_NLSpo--cta p {
	font-size: 1.188rem;
	color: rgb(255 255 255 / 90%);
	margin-bottom: 32px;
	position: relative;
}

.section_NLSpo--cta .button_dd5UI {
	position: relative;
	background: #FFFFFF;
	color: var(--theme-primary);
}

.section_NLSpo--cta .button_dd5UI:hover {
	background: var(--theme-dark);
	color: #ffffff;
}


/*! Payments Table */

.wzPaymentsTableWrap {
	overflow-x: auto;
	margin-bottom: 40px;
}

.wzPaymentsTable {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--rad-lg);
	overflow: hidden;
}

.wzPaymentsTable th,
.wzPaymentsTable td {
	padding-top: 20px;
	padding-right: 24px;
	padding-bottom: 20px;
	padding-left: 24px;
	text-align: left;
}

.wzPaymentsTable thead {
	background: rgba(255,255,255,0.05);
}

.wzPaymentsTable th {
	font-weight: 600;
	color: var(--theme-accent);
	text-transform: uppercase;
	font-size: 0.813rem;
	letter-spacing: 0.3px;
}

.wzPaymentsTable tbody tr {
	border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
	transition: background .25s ease-in;
}

.wzPaymentsTable tbody tr:hover {
	background: rgb(255 255 255 / 3%);
}

.wzPaymentMethod {
	display: flex;
	align-items: center;
	gap: 16px;
}

.wzPaymentMethod img {
	height: 32px;
	width: auto;
}

.wzTimeBadge {
	display: inline-block;
	padding-top: 4px;
	padding-right: 12px;
	padding-bottom: 4px;
	padding-left: 12px;
	background: var(--theme-primary-alpha);
	border-radius: var(--rad-full);
	font-size: 13px;
	color: var(--theme-accent);
}


/* SEO TEXT */

.wzInfoBlock {
	margin-top: 48px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--rad-lg);
	border: rgba(255, 255, 255, 0.05) 1px solid;
}

.wzInfoBlock h3 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: var(--theme-accent);
}

.wzInfoBlock p {
	color: var(--theme-muted);
	margin-bottom: 1rem;
	line-height: 1.8;
}

.wzInfoBlock p:last-child {
	margin-bottom: 0px;
}

.section_NLSpo--seo-text {
	background: var(--theme-dark);
}

.seo-content {
	max-width: 960px;
	margin-inline: auto;
}

.seo-content h2 {
	font-size: 40px;
	margin-bottom: 24px;
	color: #fff;
}

.seo-content h3 {
	font-size: 1.75rem;
	margin: 32px 0 16px;
	color: var(--theme-accent);
}

.seo-content p {
	color: var(--theme-muted);
	margin-bottom: 20px;
	line-height: 190%;
}

/* FAQ */

.wzFaqList {
	max-width: 860px;
	margin: 0px auto;
}

.wzFaqItem {
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.08);
	border-radius: var(--rad-md);
	margin-bottom: 12px;
	background: rgba(255,255,255,0.02);
}

.wzFaqQuestion {
	width: 100%;
	padding: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 17px;
	font-weight: 600;
	color: rgb(255,255,255);
	text-align: left;
	transition: color .25s ease-in;
}

.wzFaqQuestion:hover {
	color: var(--theme-accent);
}

.wzFaqIcon {
	font-size: 24px;
	font-weight: 300;
	color: var(--theme-primary);
	transition: transform .25s ease-in;
}

.wzFaqItem.active .wzFaqIcon {
	transform: rotate(180deg);
}

.wzFaqAnswer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease-in;
}

.wzFaqItem.active .wzFaqAnswer {
	max-height: 500px;
}

.wzFaqAnswer p {
	padding-top: 0;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 24px;
	color: var(--theme-muted);
	line-height: 1.8em;
}



.wzInfoTable {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--rad-lg);
	overflow: hidden;
}

.wzInfoTable tr {
	border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
}

.wzInfoTable tr:last-child {
	border-bottom: none;
}

.wzInfoTable th,
.wzInfoTable td {
	padding-top: 20px;
	padding-right: 24px;
	padding-bottom: 20px;
	padding-left: 24px;
	text-align: left;
}

.wzInfoTable th {
	width: 40%;
	font-weight: 600;
	color: var(--theme-accent);
	background: rgba(255, 255, 255, 0.02);
}

.wzInfoTable td {
	color: var(--theme-muted);
}


/* FOOTER */

.end-section_SXVEC {
	background: var(--theme-darker);
	padding: 80px 0 0;
	border: 1px 0 0 0 solid rgb(255 255 255 / 5%);
}

.end-section_SXVEC-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.end-section_SXVEC-col h4 {
	font-size: 1.25rem;
	margin-bottom: 20px;
	color: var(--theme-accent);
}

.end-section_SXVEC-col p {
	color: var(--theme-muted);
	line-height: 1.8;
}

.end-section_SXVEC-nav {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.end-section_SXVEC-nav a {
	color: var(--theme-muted);
}

.end-section_SXVEC-nav a:hover {
	color: var(--theme-accent);
}

.badge-strip {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.badge-strip img {
	height: 50px;
	opacity: 0.4;
	transition: all .25s ease-in;
}

.badge-strip img:hover {
	filter: none;
	opacity: 1;
}

.wzResponsibleGaming {
	text-align: center;
	padding-block: 40px;
	padding-inline: 0;
	border-width: 1px 0;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.05);
}

.wzResponsibleGaming h4 {
	font-size: 16px;
	margin-bottom: 12px;
	color: var(--theme-muted);
}

.wzResponsibleText {
	font-size: 14px;
	color: var(--theme-muted);
	opacity: 0.8;
	margin-bottom: 20px;
}

.wzResponsibleLogos {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.wzResponsibleLogos a {
	display: block;
	transition: all .25s ease-in;
}

.wzResponsibleLogos a:hover {
	transform: translateY(-4px);
}

.wzResponsibleLogos img {
	height: 40px;
	opacity: 0.4;
	transition: all .25s ease-in;
}

.wzResponsibleLogos a:hover img {
	filter: none;
	opacity: 1;
}

.end-section_SXVEC-bottom {
	padding-block: 24px;
	padding-inline: 0;
	text-align: center;
}

.end-section_SXVEC-bottom p {
	font-size: 14px;
	color: var(--theme-muted);
	opacity: 0.7;
	margin-bottom: 8px;
}

.end-section_SXVEC-bottom p:last-child {
	margin-bottom: 0px;
}

.wzFooterUpdate {
	margin-top: 1rem;
	opacity: 0.6;
}

.wzFooterLegal {
	font-weight: 500;
}

.wzFooterDisclaimer {
	max-width: 700px;
	margin-top: 12px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	opacity: 0.5;
	line-height: 1.6em;
}

/* ==================== HAMBURGER & MOBILE ==================== */

.wzHamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
	z-index: 1002;
}

.wzHamburger span {
	width: 24px;
	height: 2px;
	background: var(--theme-accent);
	transition: all .25s ease-in;
	border-radius: 2px;
}

.wzHamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

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

.wzHamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.wzLogoMobile,
.wzMobileCta {
	display: none;
}


/* ===== Responsive - Tablet ===== */

@media (max-width: 63.9375em) {
	.intro_PxKtn .wrapper_F00Cx {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.intro_PxKtn-content { order: 1; }
	.intro_PxKtn-image { order: 2; }
	.intro_PxKtn-subtitle { margin-left: auto; margin-right: auto; }
	.intro_PxKtn-ctas { justify-content: center; }
	.intro_PxKtn-features { justify-content: center; }

	.grid_3073p--bonuses,
	.grid_3073p--games,
	.grid_3073p--providers { grid-template-columns: repeat(2, 1fr); }

	.grid_3073p--reviews { grid-template-columns: 1fr 1fr; }

	.wzTwoColRow { grid-template-columns: 1fr; }
	.wzTwoColRow--swap { direction: ltr; }

	.end-section_SXVEC-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.end-section_SXVEC-nav {
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
	}

	.badge-strip { justify-content: center; }
}

/* --- Responsive - Mobile --- */

@media (max-width: 47.9375em) {
	.header_rpTxt {
		padding: 0px;
	}

	.header_rpTxt .wrapper_F00Cx {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 16px;
		gap: 12px;
	}

	.logo {
		display: none;
	}

	.wzLogoMobile {
		display: block;
		font-family: var(--typo-heading);
		font-size: 17px;
		font-weight: 700;
		color: var(--theme-accent);
		text-transform: uppercase;
		text-decoration: none;
		white-space: nowrap;
	}

	.wzMobileCta {
		display: block;
		flex: 1;
		max-width: 180px;
		padding: 10px 16px;
		background: linear-gradient(160deg, var(--theme-primary), var(--theme-secondary));
		color: white;
		font-size: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-transform: none;
		text-decoration: none;
		letter-spacing: 0.3px;
		border-radius: var(--rad-md);
		box-shadow: 0 4px 15px var(--theme-primary-alpha);
	}

	.header_rpTxt-actions {
		display: none;
	}

	.wzHamburger {
		display: flex;
	}

	.nav-links_XL8XG {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 420px;
		height: 100vh;
		background: var(--theme-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right .25s ease-in;
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.7);
		border-left: 2px solid var(--theme-primary);
		z-index: 1001;
		gap: 0px;
	}

	.nav-links_XL8XG.active {
		right: 0;
	}

	.nav-links_XL8XG a {
		font-size: 1.188rem;
		padding: 1rem 0px;
		border-bottom: 1px solid rgb(255 255 255 / 10%);
	}

	.grid_3073p--bonuses,
	.grid_3073p--games,
	.grid_3073p--reviews {
		grid-template-columns: 1fr;
	}

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

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

	.section_NLSpo-title { font-size: 2rem; }
	.intro_PxKtn-content h1 { font-size: 2.5rem; }
	.intro_PxKtn { padding-top: 100px; }
}

@media (max-width: 480px) {
	.wrapper_F00Cx { padding: 0 16px; }
	.section_NLSpo { padding: 60px 0; }
	.intro_PxKtn-ctas { flex-direction: column; }
	.intro_PxKtn-ctas .button_dd5UI { width: 100%; }

	.wzLogoMobile { font-size: 0.938rem; }
	.wzMobileCta {
		padding: 8px 12px;
		font-size: 12px;
		max-width: 140px;
	}
}

/* ==================== NEW BLOCKS (2026-09-16 pass) ==================== */

/* --- Fact ticker (hero) --- */

.wz9-fact-ticker {
	height: 1.4em;
	overflow: hidden;
	margin-bottom: 28px;
	font-weight: 600;
	font-size: 15px;
	color: var(--theme-accent);
}

.wz9-fact-ticker ul {
	list-style: none;
	animation: wz9-ticker-cycle 16s steps(1) infinite;
}

.wz9-fact-ticker li {
	height: 1.4em;
	line-height: 1.4em;
}

@keyframes wz9-ticker-cycle {
	0%, 18% { transform: translateY(0); }
	20%, 38% { transform: translateY(-1.4em); }
	40%, 58% { transform: translateY(-2.8em); }
	60%, 78% { transform: translateY(-4.2em); }
	80%, 98% { transform: translateY(-5.6em); }
	100% { transform: translateY(0); }
}

@media (max-width: 63.9375em) {
	.wz9-fact-ticker { margin-inline: auto; max-width: 320px; }
}

/* --- Scroll reveal (DYN-E2) --- */

.wz9-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s ease-out, transform .6s ease-out;
}

.wz9-reveal.wz9-in-view {
	opacity: 1;
	transform: none;
}

/* --- Comparison table --- */

.wz9-versus {
	overflow-x: auto;
}

.wz9-versus-table {
	width: 100%;
	min-width: 640px;
	border-collapse: separate;
	border-spacing: 0px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--rad-lg);
	overflow: hidden;
}

.wz9-versus-table th,
.wz9-versus-table td {
	padding: 16px 20px;
	text-align: left;
	font-size: 0.938rem;
}

.wz9-versus-table thead th {
	background: rgba(255,255,255,0.05);
	color: var(--theme-accent);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.3px;
}

.wz9-versus-table tbody th,
.wz9-versus-table tbody td {
	color: var(--theme-muted);
	border-top: 1px solid rgb(255 255 255 / 6%);
}

.wz9-versus-table tbody td:first-child {
	color: rgb(255,255,255);
	font-weight: 600;
}

.wz9-versus-table tbody td:nth-child(2) {
	color: var(--theme-accent);
	font-weight: 600;
}

/* --- Player safety / extended responsible gaming --- */

.wz9-safeguard-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-gap);
	margin-bottom: 40px;
}

.wz9-safeguard-card {
	padding: 28px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--rad-lg);
}

.wz9-safeguard-card h3 {
	font-size: 1.375rem;
	margin-bottom: 0.75rem;
	color: var(--theme-accent);
}

.wz9-safeguard-card p {
	color: var(--theme-muted);
	line-height: 1.7;
}

.wz9-safeguard-help {
	max-width: 720px;
	margin-inline: auto;
	padding: 32px;
	text-align: center;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--rad-lg);
	border: rgba(255, 255, 255, 0.05) 1px solid;
}

.wz9-safeguard-help h3 {
	color: var(--theme-accent);
	margin-bottom: 0.75rem;
}

.wz9-safeguard-help p {
	color: var(--theme-muted);
	margin-bottom: 1rem;
}

.wz9-safeguard-list {
	list-style: none;
	color: var(--theme-text);
	line-height: 1.9;
}

/* --- Player guides teaser --- */

.wz9-bulletin {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-gap);
}

.wz9-bulletin-card {
	display: block;
	padding: 28px;
	background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgb(255 255 255 / 2%) 100%);
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--rad-lg);
	transition: all .25s ease-in;
}

.wz9-bulletin-card:hover {
	transform: translate(0, -6px);
	border-color: var(--theme-primary);
	box-shadow: var(--sh-elevated);
}

.wz9-bulletin-tag {
	display: inline-block;
	padding: 4px 12px;
	margin-bottom: 14px;
	background: var(--theme-primary-alpha);
	border-radius: var(--rad-full);
	font-size: 12px;
	font-weight: 600;
	color: var(--theme-accent);
	text-transform: uppercase;
}

.wz9-bulletin-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: rgb(255,255,255);
}

.wz9-bulletin-card p {
	color: var(--theme-muted);
	line-height: 1.6;
}

@media (max-width: 63.9375em) {
	.wz9-safeguard-grid,
	.wz9-bulletin { grid-template-columns: 1fr; }
}

/* --- Nav underline-from-center (DYN-F4) --- */

.nav-links_XL8XG a {
	position: relative;
}

.nav-links_XL8XG a::after {
	content: '';
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: -4px;
	height: 2px;
	background: var(--theme-accent);
	transition: left .25s ease-out, right .25s ease-out;
}

.nav-links_XL8XG a:hover::after {
	left: 0;
	right: 0;
}

/* --- Game/provider tile hover variation (DYN-F1) --- */

.tile_kdvPY--game:hover,
.tile_kdvPY--provider:hover {
	transform: translate(0, -8px) scale(1.015);
	transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

/* --- Footer link hover (DYN-G6) --- */

.end-section_SXVEC-nav a {
	display: inline-block;
	transition: color .2s ease-out, letter-spacing .2s ease-out, transform .2s ease-out;
}

.end-section_SXVEC-nav a:hover {
	letter-spacing: 0.3px;
	transform: translateX(3px);
}