/*!
 * Stylesheet: Neon Green
 * Fonts: Teko / Rubik
 * Date: 2026-08-13T10:22:27.124Z
 */

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

:root {
	--clr-text: #dcfce7;
	--clr-muted: #86efac;
	--clr-primary-alpha: #22c55e40;
	--clr-secondary-alpha: #4ade8040;
	--clr-primary: #22c55e;
	--clr-light: #f0fdf4;
	--clr-secondary: #4ade80;
	--clr-darker: #021a0d;
	--clr-accent: #86efac;
	--clr-dark: #052e16;

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

	--sp-element: 30px;
	--sp-section: 70px;
	--sp-gap: 25px;
	--radius-sm: 8px;
	--radius-lg: 16px;
	--radius-full: 8px;
	--radius-md: 12px;
	--box-shadow-glow: 0 0 20px;
	--box-shadow-elevated: 0 4px 16px rgba(0,0,0,0.2);
	--box-shadow-card: 0 2px 8px rgba(0,0,0,0.15);
}



/* -- BASE -- */

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



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

.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 fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

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



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: 600;
	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 --- */

.container_kNb44 {
	max-width: 80rem;
	margin: 0px auto;
	padding-block: 0;
	padding-inline: 24px;
}



/* HEADER */

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

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

.nav-wrap_kav3s .container_kNb44 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-wrap_kav3s .logo {
	font-family: var(--typo-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--clr-accent);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.nav_qAj4B {
	display: flex;
	gap: 32px;
}

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

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

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



/** Buttons **/

.btn_qmyUI {
	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(--radius-md);
	cursor: pointer;
	transition: all 250ms ease-in-out;
	text-transform: none;
	letter-spacing: 0.3px;
}

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

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

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

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

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

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



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

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

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

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

.showcase_KtGdW-content {
	order: 2;
}

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

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

.showcase_KtGdW-subtitle {
	font-size: 1.25rem;
	color: var(--clr-muted);
	margin-bottom: 32px;
	max-width: 520px;
}

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

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

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

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

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

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

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



/*
 * Sections
 */

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

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

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


/* --- Cards --- */

.panel_473jD {
	background: linear-gradient(145deg, rgba(255,255,255,0.05) 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(--radius-lg);
	padding: var(--sp-element);
	transition: all 250ms ease-in-out;
}

.panel_473jD:hover {
	transform: scale(1.05);
	box-shadow: var(--box-shadow-elevated);
	border-color: var(--clr-primary);
}

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

.panel_473jD--bonus {
	text-align: center;
	padding-block: 40px;
	padding-inline: 30px;
}

.panel_473jD-icon {
	font-size: 56px;
	margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel_473jD--provider:hover img {
	filter: grayscale(0%);
	transform: scale(1.08);
}

.panel_473jD--provider span {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 6px;
	font-size: 12px;
	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-in-out;
}

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

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

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

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

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

.reviewer-info strong {
	display: block;
	color: rgb(255, 255, 255);
}

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

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


/* -- ABOUT / CONTENT LAYOUT -- */

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

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

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

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

.two-col-text h3 {
	font-size: 2rem;
	margin-bottom: 1.25rem;
	color: var(--clr-accent);
}

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

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

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



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

.section_EaEeL--cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.15;
}

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

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

.section_EaEeL--cta .btn_qmyUI {
	position: relative;
	background: #ffffff;
	color: var(--clr-primary);
}

.section_EaEeL--cta .btn_qmyUI:hover {
	background: var(--clr-dark);
	color: rgb(255, 255, 255);
}


/* -- PAYMENTS TABLE -- */

.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(--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: 13px;
	letter-spacing: 0.5px;
}

.payments-table tbody tr {
	border: solid rgb(255 255 255 / 5%) 0 0 1px 0;
	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-top: 4px;
	padding-right: 12px;
	padding-bottom: 4px;
	padding-left: 12px;
	background: var(--clr-primary-alpha);
	border-radius: var(--radius-full);
	font-size: 13px;
	color: var(--clr-accent);
}



/* -- SEO TEXT -- */

.seo-block {
	margin-top: 3rem;
	padding: 40px;
	background: rgba(255,255,255,0.02);
	border-radius: var(--radius-lg);
	border: solid 1px rgb(255 255 255 / 5%);
}

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

.seo-block p {
	color: var(--clr-muted);
	margin-bottom: 1rem;
	line-height: 1.8;
}

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

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

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

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

.seo-content h3 {
	font-size: 1.75rem;
	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: 1.25rem;
	line-height: 1.9;
}



/*
 * FAQ
 */

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

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

.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: 17px;
	font-weight: 600;
	color: #FFFFFF;
	text-align: left;
	transition: color 250ms ease-in-out;
}

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

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

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

.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: 0 24px 24px;
	color: var(--clr-muted);
	line-height: 1.8;
}



/** Info Table **/

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

.info-table tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgb(255 255 255 / 5%);
}

.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: rgb(255 255 255 / 2%);
}

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




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

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

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

.end-section_Zilhr-col p {
	color: var(--clr-muted);
	line-height: 180%;
}

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

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

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

.badge-strip {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

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

.badge-strip img:hover {
	filter: saturate(1) brightness(1);
	opacity: 1;
}

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

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

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

.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: scale(1.03);
}

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

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

.end-section_Zilhr-bottom {
	padding: 24px 0;
	text-align: center;
}

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

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

.footer-update {
	margin-top: 1rem;
	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 -- */

.menu-toggle {
	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;
}

.menu-toggle span {
	width: 28px;
	height: 3px;
	background: var(--clr-accent);
	transition: all 250ms ease-in-out;
	border-radius: 2px;
}

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

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

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

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


/*! Responsive - Tablet */

@media (max-width: 1020px) {
	.showcase_KtGdW .container_kNb44 {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

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

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

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

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

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

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



/*
 * Responsive - Mobile
 */

@media (max-width: 48rem) {
	.nav-wrap_kav3s {
		padding: 0;
	}

	.nav-wrap_kav3s .container_kNb44 {
		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: 1.063rem;
		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(90deg, var(--clr-primary), var(--clr-secondary));
		color: rgb(255,255,255);
		font-size: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.3px;
		border-radius: var(--radius-md);
		box-shadow: 0 4px 15px var(--clr-primary-alpha);
	}

	.nav-wrap_kav3s-actions {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

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

	.nav_qAj4B.active {
		right: 0px;
	}

	.nav_qAj4B a {
		font-size: 1.188rem;
		padding: 1rem 0px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

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

	.listing_E6V6U--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_EaEeL-title { font-size: 2rem; }
	.showcase_KtGdW-content h1 { font-size: 2.5rem; }
	.showcase_KtGdW { padding-top: 100px; }
}

@media (max-width: 30rem) {
	.container_kNb44 { padding: 0 16px; }
	.section_EaEeL { padding: 60px 0; }
	.showcase_KtGdW-ctas { flex-direction: column; }
	.showcase_KtGdW-ctas .btn_qmyUI { width: 100%; }

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