/*
 * Theme: Arctic Blue
 * Typography: Clean Geometric
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
	/* Colors */
	--clr-muted: #93c5fd;
	--clr-dark: #0c1929;
	--clr-secondary: #60a5fa;
	--clr-secondary-alpha: #60a5fa40;
	--clr-accent: #93c5fd;
	--clr-primary: #3b82f6;
	--clr-darker: #060d14;
	--clr-text: #dbeafe;
	--clr-light: #eff6ff;
	--clr-primary-alpha: #3b82f640;

	/* Typography */
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Open Sans', sans-serif;

	/* Spacing */
	--element-space: 20px;
	--item-gap: 20px;
	--section-space: 50px;

	/* Border Radius */
	--radius-lg: 8px;
	--radius-full: 4px;
	--radius-md: 6px;
	--radius-sm: 4px;

	/* Shadows */
	--shadow-glow: 0 0 20px;
	--shadow-elevated: 0 4px 16px rgba(0,0,0,0.2);
	--shadow-card: 0 2px 8px rgba(0,0,0,0.15);
}



/*! Base */

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



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

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


a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--clr-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 go-fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

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



html {
	scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.2em;
}

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

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



/*! Container */

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



/* -- HEADER -- */

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

.top-bar_WeBaj.scrolled {
	background: rgb(0 0 0 / 90%);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	padding-top: 12px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.top-bar_WeBaj .content-wrap_xS7r8 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-bar_WeBaj .logo {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--clr-accent);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.main-nav_94xC3 {
	display: flex;
	gap: 32px;
}

.main-nav_94xC3 a {
	font-weight: 500;
	color: var(--clr-text);
	opacity: 0.8;
	transition: all .25s ease-in;
}

.main-nav_94xC3 a:hover {
	opacity: 1;
	color: var(--clr-accent);
}

.top-bar_WeBaj-actions {
	display: flex;
	gap: 12px;
}



/*! Buttons */

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

.action_Vfct0--primary {
	background: linear-gradient(125deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
	border: none;
	color: #FFF;
}

.action_Vfct0--primary:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-elevated);
}

.action_Vfct0--secondary {
	background: transparent;
	border-width: 2px;
	border-style: solid;
	border-color: var(--clr-text);
	color: var(--clr-text);
}

.action_Vfct0--secondary:hover {
	background: var(--clr-text);
	color: var(--clr-dark);
}

.action_Vfct0--large {
	padding-top: 18px;
	padding-right: 40px;
	padding-bottom: 18px;
	padding-left: 40px;
	font-size: 1.063rem;
}

.action_Vfct0--small {
	padding-block: 8px;
	padding-inline: 20px;
	font-size: 0.875rem;
}


/*
 * Hero
 */

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

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

.intro_bUosL .content-wrap_xS7r8 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.intro_bUosL-content {
	order: 2;
}

.intro_bUosL-badge {
	display: inline-block;
	padding-block: 8px;
	padding-inline: 20px;
	background: var(--clr-primary-alpha);
	border: 1px var(--clr-primary) solid;
	border-radius: var(--radius-full);
	font-size: 14px;
	font-weight: 600;
	color: var(--clr-accent);
	margin-bottom: 24px;
}

.intro_bUosL-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 20px;
	color: #FFFFFF;
	text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.intro_bUosL-subtitle {
	font-size: 20px;
	color: var(--clr-muted);
	margin-bottom: 32px;
	max-width: 540px;
}

.intro_bUosL-subtitle strong {
	color: var(--clr-accent);
}

.intro_bUosL-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

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

.intro_bUosL-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: var(--clr-muted);
}

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

.intro_bUosL-image {
	order: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

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


/* ==================== SECTIONS ==================== */

.zone_pQgyH {
	padding: var(--section-space) 0px;
}

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

.zone_pQgyH-subtitle {
	text-align: center;
	font-size: 17px;
	color: var(--clr-muted);
	margin-bottom: 48px;
	max-width: 560px;
	margin: 0 auto;
}


/* -- CARDS -- */

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

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

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

.item_848PC--bonus {
	text-align: center;
	padding: 40px 30px;
}

.item_848PC-icon {
	font-size: 3.5rem;
	margin-bottom: 1.25rem;
}

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

.item_848PC--bonus p {
	color: var(--clr-muted);
	margin-bottom: 24px;
	line-height: 1.7em;
}

.collection_8lbHr--games {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--item-gap);
}

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

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

.item_848PC--game:hover img {
	transform: scale(1.07);
}

.item_848PC-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(0 0 0 / 80%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .25s ease-in;
}

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

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

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

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

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

.item_848PC--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%) brightness(2) contrast(0.9);
	transition: all .25s ease-in;
}

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

.item_848PC--provider span {
	position: absolute;
	bottom: 0;
	left: 0px;
	right: 0;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--clr-muted);
	text-align: center;
	background: linear-gradient(transparent, rgb(0 0 0 / 60%));
	opacity: 0;
	transition: opacity .25s ease-in;
}

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

.collection_8lbHr--reviews {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--item-gap);
}

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

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

.reviewer-avatar {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #FFFFFF;
}

.reviewer-info strong {
	display: block;
	color: #fff;
}

.stars {
	color: var(--clr-accent);
	font-size: 14px;
}

.item_848PC--review p {
	color: var(--clr-muted);
	font-style: italic;
	line-height: 170%;
}



/* ABOUT / CONTENT LAYOUT */

.split-layout {
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
}

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

.split-row--flipped {
	direction: rtl;
}

.split-row--flipped > * {
	direction: ltr;
}

.split-text h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: var(--clr-accent);
}

.split-text p {
	color: var(--clr-muted);
	margin-bottom: 16px;
	line-height: 1.8em;
}

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

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



/* --- CTA Blocks --- */

.zone_pQgyH--cta {
	text-align: center;
	padding: 80px 0;
	background: linear-gradient(to bottom right, var(--clr-primary) 0%, var(--clr-secondary) 100%);
	position: relative;
	overflow: hidden;
}

.zone_pQgyH--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.15;
}

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

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

.zone_pQgyH--cta .action_Vfct0 {
	position: relative;
	background: #FFF;
	color: var(--clr-primary);
}

.zone_pQgyH--cta .action_Vfct0:hover {
	background: var(--clr-dark);
	color: #ffffff;
}


/* Payments Table */

.payments-table-wrap {
	overflow-x: auto;
	margin-bottom: 40px;
}

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

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

.payments-table thead {
	background: rgba(255, 255, 255, 0.05);
}

.payments-table th {
	font-weight: 600;
	color: var(--clr-accent);
	text-transform: uppercase;
	font-size: 0.813rem;
	letter-spacing: 0.05em;
}

.payments-table tbody tr {
	border: 0 0 1px 0 rgba(255, 255, 255, 0.05) solid;
	transition: background .25s ease-in;
}

.payments-table tbody tr:hover {
	background: rgba(255,255,255,0.03);
}

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

.payment-method img {
	height: 32px;
	width: auto;
}

.time-badge {
	display: inline-block;
	padding-block: 4px;
	padding-inline: 12px;
	background: var(--clr-primary-alpha);
	border-radius: var(--radius-full);
	font-size: 0.813rem;
	color: var(--clr-accent);
}




.description-text {
	margin-top: 3rem;
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--radius-lg);
	border-width: 1px;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
}

.description-text h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--clr-accent);
}

.description-text p {
	color: var(--clr-muted);
	margin-bottom: 16px;
	line-height: 1.8em;
}

.description-text p:last-child {
	margin-bottom: 0;
}

.zone_pQgyH--seo-text {
	background: var(--clr-dark);
}

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

.seo-content h2 {
	font-size: 40px;
	margin-bottom: 24px;
	color: rgb(255,255,255);
}

.seo-content h3 {
	font-size: 28px;
	margin-top: 32px;
	margin-right: 0;
	margin-bottom: 16px;
	margin-left: 0;
	color: var(--clr-accent);
}

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


/* --- FAQ --- */

.faq-list {
	max-width: 820px;
	margin-inline: auto;
}

.faq-item {
	border: rgba(255, 255, 255, 0.08) solid 1px;
	border-radius: var(--radius-md);
	margin-bottom: 12px;
	background: rgba(255,255,255,0.02);
}

.faq-question {
	width: 100%;
	padding-top: 24px;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 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;
}

.faq-question:hover {
	color: var(--clr-accent);
}

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

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

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

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding-top: 0;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 24px;
	color: var(--clr-muted);
	line-height: 1.8;
}



.info-table {
	width: 100%;
	max-width: 850px;
	margin: 0px auto;
	border-collapse: separate;
	border-spacing: 0;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.info-table tr {
	border: 0 0 1px 0 solid rgba(255,255,255,0.05);
}

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

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

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

.info-table td {
	color: var(--clr-muted);
}



/*! Footer */

.footer_vKXPH {
	background: var(--clr-darker);
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	border: rgba(255,255,255,0.05) solid 1px 0 0 0;
}

.footer_vKXPH-grid {
	display: grid;
	grid-template-columns: 3fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 3.75rem;
}

.footer_vKXPH-col h4 {
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--clr-accent);
}

.footer_vKXPH-col p {
	color: var(--clr-muted);
	line-height: 1.8;
}

.footer_vKXPH-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer_vKXPH-nav a {
	color: var(--clr-muted);
}

.footer_vKXPH-nav a:hover {
	color: var(--clr-accent);
}

.cert-logos {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.cert-logos img {
	height: 50px;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all .25s ease-in;
}

.cert-logos img:hover {
	filter: none;
	opacity: 1;
}

.responsible-gaming {
	text-align: center;
	padding-top: 40px;
	padding-right: 0px;
	padding-bottom: 40px;
	padding-left: 0;
	border: 1px 0 rgba(255, 255, 255, 0.05) solid;
}

.responsible-gaming h4 {
	font-size: 16px;
	margin-bottom: 12px;
	color: var(--clr-muted);
}

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

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

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

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

.safe-play img {
	height: 40px;
	filter: grayscale(100%);
	transition: all .25s ease-in;
}

.safe-play a:hover img {
	filter: grayscale(0%) brightness(1);
	opacity: 1;
}

.footer_vKXPH-bottom {
	padding-top: 24px;
	padding-right: 0;
	padding-bottom: 24px;
	padding-left: 0;
	text-align: center;
}

.footer_vKXPH-bottom p {
	font-size: 0.875rem;
	color: var(--clr-muted);
	opacity: 0.7;
	margin-bottom: 0.5rem;
}

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

.footer-update {
	margin-top: 16px;
	opacity: 0.6;
}

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

.footer-disclaimer {
	max-width: 650px;
	margin: 12px auto 0;
	opacity: 0.5;
	line-height: 160%;
}




.hamburger {
	display: none;
	flex-direction: column;
	gap: 0.38rem;
	cursor: pointer;
	padding-top: 0.5rem;
	padding-right: 0.5rem;
	padding-bottom: 0.5rem;
	padding-left: 0.5rem;
	background: none;
	border: none;
	z-index: 1002;
}

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

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

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

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

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


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

@media (max-width: 1025px) {
	.intro_bUosL .content-wrap_xS7r8 {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.split-row { grid-template-columns: 1fr; }
	.split-row--flipped { direction: ltr; }

	.footer_vKXPH-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		text-align: center;
	}

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

	.cert-logos { justify-content: center; }
}



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

@media (max-width: 48rem) {
	.top-bar_WeBaj {
		padding: 0px;
	}

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

	.logo {
		display: none;
	}

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

	.mobile-cta {
		display: block;
		flex: 1;
		max-width: 180px;
		padding: 10px 16px;
		background: linear-gradient(170deg, var(--clr-primary), var(--clr-secondary));
		color: white;
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.5px;
		border-radius: var(--radius-md);
		box-shadow: 0 4px 15px var(--clr-primary-alpha);
	}

	.top-bar_WeBaj-actions {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.main-nav_94xC3 {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 400px;
		height: 100vh;
		background: var(--clr-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(--clr-primary);
		z-index: 1001;
		gap: 0px;
	}

	.main-nav_94xC3.active {
		right: 0;
	}

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

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

	.collection_8lbHr--providers {
		grid-template-columns: repeat(2, 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;
	}

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

@media (max-width: 29.9375rem) {
	.content-wrap_xS7r8 { padding: 0 16px; }
	.zone_pQgyH { padding: 60px 0; }
	.intro_bUosL-ctas { flex-direction: column; }
	.intro_bUosL-ctas .action_Vfct0 { width: 100%; }

	.logo-mobile { font-size: 15px; }
	.mobile-cta {
		padding: 8px 12px;
		font-size: 12px;
		max-width: 140px;
	}
}