

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

:root {
	/* Colors */
	--c-text: #fef08a;
	--c-secondary: #eab308;
	--c-darker: #0d0b02;
	--c-primary-alpha: #ca8a0440;
	--c-dark: #1a1505;
	--c-secondary-alpha: #eab30840;
	--c-accent: #fde047;
	--c-primary: #ca8a04;
	--c-muted: #facc15;
	--c-light: #fefce8;

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

	/* Spacing */
	--sp-section: 40px;
	--sp-gap: 12px;
	--sp-element: 16px;

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

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


/*! Base */

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


.skip-to-main {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12px;
	padding-right: 24px;
	padding-bottom: 12px;
	padding-left: 24px;
	background: var(--c-primary);
	color: #FFFFFF;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--r-md);
	z-index: 10000;
	transition: top 250ms ease-in-out;
}

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


a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--c-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-motion {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes slideUp-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.02); }
}



html {
	scroll-behavior: smooth;
}

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

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 250ms ease-in-out;
}


/** Container **/

.wrapper_vnEHG {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}




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

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

.masthead_42qW9 .wrapper_vnEHG {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.masthead_42qW9 .logo {
	font-family: var(--typo-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--c-accent);
	text-transform: none;
	letter-spacing: 0.5px;
}

.menu_wq1Y4 {
	display: flex;
	gap: 2rem;
}

.menu_wq1Y4 a {
	font-weight: 500;
	color: var(--c-text);
	opacity: 0.8;
	transition: all 250ms ease-in-out;
}

.menu_wq1Y4 a:hover {
	opacity: 1;
	color: var(--c-accent);
}

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



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

.action_QuKXc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top: 12px;
	padding-right: 28px;
	padding-bottom: 12px;
	padding-left: 28px;
	font-family: var(--typo-body);
	font-size: 0.938rem;
	font-weight: 600;
	border-radius: var(--r-md);
	cursor: pointer;
	transition: all 250ms ease-in-out;
	text-transform: none;
	letter-spacing: 0.3px;
}

.action_QuKXc--primary {
	background: var(--c-primary);
	border: none;
	box-shadow: 0 0 20px var(--c-primary-alpha);
	color: #FFFFFF;
}

.action_QuKXc--primary:hover {
	transform: scale(1.02);
	box-shadow: var(--elevated-shadow);
}

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

.action_QuKXc--secondary:hover {
	background: var(--c-text);
	color: var(--c-dark);
}

.action_QuKXc--large {
	padding-block: 18px;
	padding-inline: 40px;
	font-size: 1.063rem;
}

.action_QuKXc--small {
	padding: 8px 20px;
	font-size: 0.875rem;
}


/** Hero **/

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

.hero_Dcj7E::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, var(--c-primary-alpha) 0%, transparent 50%),
	            radial-gradient(circle at 70% 80%, var(--c-secondary-alpha) 0%, transparent 40%);
	pointer-events: none;
}

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

.hero_Dcj7E-content {
	order: 2;
}

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

.hero_Dcj7E-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);
}

.hero_Dcj7E-subtitle {
	font-size: 20px;
	color: var(--c-muted);
	margin-bottom: 2rem;
	max-width: 500px;
}

.hero_Dcj7E-subtitle strong {
	color: var(--c-accent);
}

.hero_Dcj7E-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

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

.hero_Dcj7E-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--c-muted);
}

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

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

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



/*! Sections */

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

.section_6XMQS-title {
	font-size: clamp(2rem, 4vw, 3rem);
	text-align: center;
	margin-bottom: 16px;
	color: #ffffff;
}

.section_6XMQS-subtitle {
	text-align: center;
	font-size: 17px;
	color: var(--c-muted);
	margin-bottom: 48px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}



.box_GF1EN {
	background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgb(255 255 255 / 2%) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--r-lg);
	padding: var(--sp-element);
	transition: all 250ms ease-in-out;
}

.box_GF1EN:hover {
	transform: translateY(-6px);
	box-shadow: var(--elevated-shadow);
	border-color: var(--c-primary);
}

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

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

.box_GF1EN-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
}

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

.box_GF1EN--bonus p {
	color: var(--c-muted);
	margin-bottom: 24px;
	line-height: 170%;
}

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

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

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

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

.box_GF1EN-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 250ms ease-in-out;
}

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

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

.box_GF1EN-name {
	font-weight: 600;
	color: #FFFFFF;
}

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

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

.box_GF1EN--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: saturate(0) brightness(1.8);
	transition: all 250ms ease-in-out;
}

.box_GF1EN--provider:hover img {
	filter: saturate(1) brightness(1);
	transform: scale(1.08);
}

.box_GF1EN--provider span {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--c-muted);
	text-align: center;
	background: linear-gradient(transparent, rgb(0 0 0 / 60%));
	opacity: 0;
	transition: opacity 250ms ease-in-out;
}

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

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

.box_GF1EN--review {
	padding-top: 28px;
	padding-right: 28px;
	padding-bottom: 28px;
	padding-left: 28px;
}

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

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

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

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

.box_GF1EN--review p {
	color: var(--c-muted);
	font-style: italic;
	line-height: 1.7;
}



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

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

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

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

.zigzag-content h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: var(--c-accent);
}

.zigzag-content p {
	color: var(--c-muted);
	margin-bottom: 16px;
	line-height: 1.8;
}

.zigzag-image {
	display: flex;
	place-content: center;
	place-items: center;
}

.zigzag-image img {
	width: 100%;
	max-width: 380px;
	max-height: 280px;
	object-fit: contain;
}




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

.section_6XMQS--cta::before {
	content: '';
	position: absolute;
	inset: 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_6XMQS--cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: #FFF;
	margin-bottom: 16px;
	position: relative;
}

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

.section_6XMQS--cta .action_QuKXc {
	position: relative;
	background: rgb(255,255,255);
	color: var(--c-primary);
}

.section_6XMQS--cta .action_QuKXc:hover {
	background: var(--c-dark);
	color: #FFF;
}


/* -- PAYMENTS TABLE -- */

.payments-table-wrap {
	overflow-x: auto;
	margin-bottom: 2.5rem;
}

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

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

.payments-table thead {
	background: rgb(255 255 255 / 5%);
}

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

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
	transition: background 250ms ease-in-out;
}

.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: 4px 12px;
	background: var(--c-primary-alpha);
	border-radius: var(--r-full);
	font-size: 0.813rem;
	color: var(--c-accent);
}


/*
 * SEO Text
 */

.content-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(--r-lg);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.05);
}

.content-text h3 {
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
	color: var(--c-accent);
}

.content-text p {
	color: var(--c-muted);
	margin-bottom: 16px;
	line-height: 180%;
}

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

.section_6XMQS--seo-text {
	background: var(--c-dark);
}

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

.seo-content h2 {
	font-size: 2.5rem;
	margin-bottom: 24px;
	color: #ffffff;
}

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

.seo-content p {
	color: var(--c-muted);
	margin-bottom: 1.25rem;
	line-height: 190%;
}



/* ==================== FAQ ==================== */

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

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

.faq-question {
	width: 100%;
	padding: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 1.063rem;
	font-weight: 600;
	color: #ffffff;
	text-align: left;
	transition: color 250ms ease-in-out;
}

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

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: var(--c-primary);
	transition: transform 250ms ease-in-out;
}

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

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 250ms ease-in-out;
}

.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(--c-muted);
	line-height: 1.8em;
}



/*! Info Table */

.info-table {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255,255,255,0.02);
	border-radius: var(--r-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(--c-accent);
	background: rgb(255 255 255 / 2%);
}

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


/* --- Footer --- */

.colophon_iTy0P {
	background: var(--c-darker);
	padding: 80px 0px 0 0;
	border: rgba(255,255,255,0.05) 1px 0 0 0 solid;
}

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

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

.colophon_iTy0P-col p {
	color: var(--c-muted);
	line-height: 1.8em;
}

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

.colophon_iTy0P-nav a {
	color: var(--c-muted);
}

.colophon_iTy0P-nav a:hover {
	color: var(--c-accent);
}

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

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

.cert-logos img:hover {
	filter: brightness(1) contrast(1);
	opacity: 1;
}

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

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

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

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

.responsible-gaming a {
	display: block;
	transition: all 250ms ease-in-out;
}

.responsible-gaming a:hover {
	transform: translate(0, -3px);
}

.responsible-gaming img {
	height: 40px;
	opacity: 0.4;
	transition: all 250ms ease-in-out;
}

.responsible-gaming a:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

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

.colophon_iTy0P-bottom p {
	font-size: 14px;
	color: var(--c-muted);
	opacity: 0.7;
	margin-bottom: 0.5rem;
}

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

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

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

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


/*
 * Hamburger & Mobile
 */

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

.hamburger span {
	width: 30px;
	height: 3px;
	background: var(--c-accent);
	transition: all 250ms ease-in-out;
	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: 64em) {
	.hero_Dcj7E .wrapper_vnEHG {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.zigzag-row { grid-template-columns: 1fr; }
	.zigzag-row--reverse { direction: ltr; }

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

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

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


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

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

	.masthead_42qW9 .wrapper_vnEHG {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 16px;
		gap: 0.75rem;
	}

	.logo {
		display: none;
	}

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

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

	.masthead_42qW9-actions {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.menu_wq1Y4 {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 75%;
		max-width: 360px;
		height: 100vh;
		background: var(--c-darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 250ms ease-in-out;
		box-shadow: -8px 0 32px rgba(0,0,0,0.7);
		border-left: 2px solid var(--c-primary);
		z-index: 1001;
		gap: 0;
	}

	.menu_wq1Y4.active {
		right: 0px;
	}

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

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

	.items_ntEsj--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;
	}

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

@media (max-width: 29.9375rem) {
	.wrapper_vnEHG { padding: 0px 16px; }
	.section_6XMQS { padding: 60px 0px; }
	.hero_Dcj7E-ctas { flex-direction: column; }
	.hero_Dcj7E-ctas .action_QuKXc { width: 100%; }

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