/*
 * Generated Casino Landing Page Stylesheet
 * Color Scheme: Sunset Orange
 * Typography: Luxury Modern
 * Generated: 2026-08-16T08:28:24.004Z
 */

@import 'https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap';

:root {
	--clr-secondary: #f97316;
	--clr-primary: #ea580c;
	--clr-light: #fff7ed;
	--clr-dark: #1a0f05;
	--clr-secondary-alpha: #f9731640;
	--clr-darker: #0d0802;
	--clr-text: #fed7aa;
	--clr-primary-alpha: #ea580c40;
	--clr-accent: #fdba74;
	--clr-muted: #fb923c;

	--typo-heading: 'Montserrat', sans-serif;
	--typo-body: 'Raleway', sans-serif;

	--element-space: 30px;
	--section-space: 70px;
	--item-gap: 25px;
	--rad-lg: 28px;
	--rad-full: 50px;
	--rad-sm: 12px;
	--rad-md: 20px;
	--box-shadow-card: 0 4px 20px rgba(0,0,0,0.25);
	--box-shadow-elevated: 0 8px 30px rgba(0,0,0,0.35);
	--box-shadow-glow: 0 0 30px;
}

/* BASE */

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

.skip-nav {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 24px;
	background: var(--clr-primary);
	color: white;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--rad-md);
	z-index: 10000;
	transition: top 250ms ease-out;
}

.skip-nav: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 fadeIn-up {
	from { opacity: 0; }
	to { opacity: 1; }
}

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

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



html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--typo-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(--typo-heading);
	font-weight: 800;
	line-height: 120%;
}

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

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

/* ===== Container ===== */

.box_0IAau {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-block: 0;
	padding-inline: 24px;
}


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

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

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

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

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

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

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

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

/** Buttons **/

.action_yWqlN {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-block: 12px;
	padding-inline: 28px;
	font-family: var(--typo-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--rad-md);
	cursor: pointer;
	transition: all 250ms ease-out;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.action_yWqlN--primary {
	background: var(--clr-primary);
	border: none;
	box-shadow: 0 0 20px var(--clr-primary-alpha);
	color: #ffffff;
}

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

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

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

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

.action_yWqlN--small {
	padding-block: 8px;
	padding-inline: 20px;
	font-size: 14px;
}

/* ===== Hero ===== */

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

.hero_BsKAa::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 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;
}

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

.hero_BsKAa-content {
}

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

.hero_BsKAa-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_BsKAa-subtitle {
	font-size: 1.25rem;
	color: var(--clr-muted);
	margin-bottom: 32px;
	max-width: 500px;
}

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

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

.hero_BsKAa-features {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

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

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

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

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

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

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

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

.block_3Xeol-subtitle {
	text-align: center;
	font-size: 1.063rem;
	color: var(--clr-muted);
	margin-bottom: 48px;
	max-width: 600px;
	margin-inline: auto;
}

/** Cards **/

.panel_Kw1sW {
	background: linear-gradient(145deg, rgb(255 255 255 / 5%) 0%, rgba(255, 255, 255, 0.02) 100%);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.08);
	border-radius: var(--rad-lg);
	padding: var(--element-space);
	transition: all 250ms ease-out;
}

.panel_Kw1sW:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: var(--box-shadow-elevated);
	border-color: var(--clr-primary);
}

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

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

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

.panel_Kw1sW--bonus h3 {
	font-size: 1.5rem;
	margin-bottom: 16px;
	color: var(--clr-accent);
}

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

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

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

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

.panel_Kw1sW--game:hover img {
	transform: scale(1.05);
}

.panel_Kw1sW-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity 250ms ease-out;
}

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

.panel_Kw1sW-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding-top: 16px;
	padding-right: 16px;
	padding-bottom: 16px;
	padding-left: 16px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

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

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

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

.panel_Kw1sW--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: brightness(0.6) contrast(0.8);
	transition: all 250ms ease-out;
}

.panel_Kw1sW--provider:hover img {
	filter: grayscale(0%) brightness(1);
	transform: scale(1.1);
}

.panel_Kw1sW--provider span {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	padding: 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 250ms ease-out;
}

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

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

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

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

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

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

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

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

/** About / Content Layout **/

.two-col {
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
}

.two-col-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.75rem;
	align-items: center;
}

.two-col-row--swap {
	direction: rtl;
}

.two-col-row--swap > * {
	direction: ltr;
}

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

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

.two-col-img {
	display: flex;
	align-items: center;
	justify-content: center;
}

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


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

.block_3Xeol--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.35;
}

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

.block_3Xeol--cta p {
	font-size: 1.188rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 32px;
	position: relative;
}

.block_3Xeol--cta .action_yWqlN {
	position: relative;
	background: rgb(255,255,255);
	color: var(--clr-primary);
}

.block_3Xeol--cta .action_yWqlN:hover {
	background: var(--clr-dark);
	color: #FFFFFF;
}


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

.payments-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255, 255, 255, 0.02);
	border-radius: var(--rad-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: rgb(255 255 255 / 5%);
}

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

.payments-table tbody tr {
	border: solid 0 0 1px 0 rgba(255, 255, 255, 0.05);
	transition: background 250ms ease-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-block: 4px;
	padding-inline: 12px;
	background: var(--clr-primary-alpha);
	border-radius: var(--rad-full);
	font-size: 13px;
	color: var(--clr-accent);
}


.content-text {
	margin-top: 3rem;
	padding: 40px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--rad-lg);
	border: 1px solid rgba(255,255,255,0.05);
}

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

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

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

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

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

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

.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: 1.9em;
}

/* FAQ */

.faq-list {
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

.faq-item {
	border: solid 1px rgba(255,255,255,0.08);
	border-radius: var(--rad-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: #ffffff;
	text-align: left;
	transition: color 250ms ease-out;
}

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

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

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

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

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

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

/* INFO TABLE */

.info-table {
	width: 100%;
	max-width: 850px;
	margin: 0px auto;
	border-collapse: separate;
	border-spacing: 0px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--rad-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-block: 20px;
	padding-inline: 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);
}


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

.colophon_iv2iF-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

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

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

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

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

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

.trust-seals {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.trust-seals img {
	height: 50px;
	filter: grayscale(100%);
	transition: all 250ms ease-out;
}

.trust-seals img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

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

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

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

.resp-logos {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.resp-logos a {
	display: block;
	transition: all 250ms ease-out;
}

.resp-logos a:hover {
	transform: translateY(-2px) scale(1.01);
}

.resp-logos img {
	height: 40px;
	filter: grayscale(100%) brightness(2);
	transition: all 250ms ease-out;
}

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

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

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

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

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

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

.footer-disclaimer {
	max-width: 720px;
	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(--clr-accent);
	transition: all 250ms ease-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: 63.9375em) {
	.hero_BsKAa .box_0IAau {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

	.two-col-row { grid-template-columns: 1fr; }
	.two-col-row--swap { direction: ltr; }

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

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

	.trust-seals { justify-content: center; }
}


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

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

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--typo-heading);
		font-size: 17px;
		font-weight: 700;
		color: var(--clr-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(90deg, var(--clr-primary), var(--clr-secondary));
		color: white;
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: none;
		text-decoration: none;
		letter-spacing: 0.5px;
		border-radius: var(--rad-md);
		box-shadow: 0 4px 15px var(--clr-primary-alpha);
	}

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

	.hamburger {
		display: flex;
	}

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

	.nav_7315b.active {
		right: 0px;
	}

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

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

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

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

@media (max-width: 30em) {
	.box_0IAau { padding: 0px 16px; }
	.block_3Xeol { padding: 60px 0px; }
	.hero_BsKAa-ctas { flex-direction: column; }
	.hero_BsKAa-ctas .action_yWqlN { width: 100%; }

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