/*
 * 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 */
	--primary: #3b82f6;
	--accent: #93c5fd;
	--light: #eff6ff;
	--muted: #93c5fd;
	--secondary-alpha: #60a5fa40;
	--secondary: #60a5fa;
	--primary-alpha: #3b82f640;
	--text: #dbeafe;
	--dark: #0c1929;
	--darker: #060d14;

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

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

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

	/* Shadows */
	--shadow-sm: 0 2px 4px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.2);
	--shadow-lg: 0 4px 8px rgba(0,0,0,0.1), 0 16px 40px rgba(0,0,0,0.3);
	--shadow-glow: 0 0 40px;
}


/* --- Base --- */

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



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

.bypass-block:focus {
	top: 10px;
	outline: 3px solid var(--accent);
	outline-offset: 2px;
}



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

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

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


html {
	scroll-behavior: smooth;
}

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

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

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

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



/** Container **/

.box_krIxZ {
	max-width: 1320px;
	margin: 0px auto;
	padding-top: 0;
	padding-right: 24px;
	padding-bottom: 0;
	padding-left: 24px;
}



/* ==================== HEADER ==================== */

.nav-wrap_x5Zub {
	position: fixed;
	top: 0;
	left: 0px;
	right: 0;
	z-index: 1000;
	padding-top: 16px;
	padding-right: 0px;
	padding-bottom: 16px;
	padding-left: 0px;
	background: rgb(0 0 0 / 85%);
	backdrop-filter: blur(12px);
	transition: all 250ms ease-in;
}

.nav-wrap_x5Zub.scrolled {
	background: rgba(0, 0, 0, 0.9);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	padding: 12px 0px 12px 0;
	box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-wrap_x5Zub .logo {
	font-family: var(--heading-font);
	font-size: 28px;
	font-weight: 700;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.nav-links_S8n31 {
	display: flex;
	gap: 2rem;
}

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

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

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



/*
 * Buttons
 */

.cta_ZP9ck {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	font-family: var(--body-font);
	font-size: 0.938rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 250ms ease-in;
	text-transform: capitalize;
	letter-spacing: 0.05em;
}

.cta_ZP9ck--primary {
	background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 100%);
	border: none;
	color: #FFFFFF;
}

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

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

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

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

.cta_ZP9ck--small {
	padding: 8px 20px;
	font-size: 14px;
}


/* HERO */

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

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

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

.intro_O2zss-content {
	order: 2;
}

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

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

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

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

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

.intro_O2zss-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--muted);
}

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

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

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


/** Sections **/

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

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

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



/* CARDS */

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

.item_uPKpb:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

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

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

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

.item_uPKpb--bonus h3 {
	font-size: 24px;
	margin-bottom: 16px;
	color: var(--accent);
}

.item_uPKpb--bonus p {
	color: var(--muted);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

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

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

.item_uPKpb--game img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease-out;
}

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

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

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

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

.item_uPKpb-name {
	font-weight: 600;
	color: rgb(255,255,255);
}

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

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

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

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

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

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

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

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

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

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

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

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

.item_uPKpb--review p {
	color: var(--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: 60px;
	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(--accent);
}

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

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

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



/* CTA Blocks */

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

.section_HUCjs--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.3;
}

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

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

.section_HUCjs--cta .cta_ZP9ck {
	position: relative;
	background: rgb(255, 255, 255);
	color: var(--primary);
}

.section_HUCjs--cta .cta_ZP9ck:hover {
	background: var(--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: rgb(255 255 255 / 2%);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

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

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

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

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



/* -- SEO TEXT -- */

.section-text {
	margin-top: 48px;
	padding: 40px;
	background: rgb(255 255 255 / 2%);
	border-radius: var(--radius-lg);
	border: solid 1px rgb(255 255 255 / 5%);
}

.section-text h3 {
	font-size: 24px;
	margin-bottom: 1.25rem;
	color: var(--accent);
}

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

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

.section_HUCjs--seo-text {
	background: var(--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: 1.75rem;
	margin-top: 32px;
	margin-right: 0;
	margin-bottom: 16px;
	margin-left: 0;
	color: var(--accent);
}

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


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

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

.faq-item {
	border-width: 1px;
	border-style: solid;
	border-color: rgb(255 255 255 / 8%);
	border-radius: var(--radius-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: #fff;
	text-align: left;
	transition: color 250ms ease-in;
}

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

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

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

.faq-answer {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 250ms 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(--muted);
	line-height: 1.8em;
}



/* INFO TABLE */

.info-table {
	width: 100%;
	max-width: 800px;
	margin-left: auto;
	margin-right: 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 rgb(255 255 255 / 5%);
}

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

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

.info-table th {
	width: 40%;
	font-weight: 600;
	color: var(--accent);
	background: rgb(255 255 255 / 2%);
}

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


/** Footer **/

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

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

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

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

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

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

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

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

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

.trust-seals img:hover {
	filter: brightness(1) contrast(1);
	opacity: 1;
}

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

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

.responsible-text {
	font-size: 14px;
	color: var(--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;
}

.responsible-gaming a:hover {
	transform: translateY(-5px);
}

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

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

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

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

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

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

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

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



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

.mobile-nav-btn {
	display: none;
	flex-direction: column;
	gap: 0.38rem;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
	z-index: 1002;
}

.mobile-nav-btn span {
	width: 28px;
	height: 3px;
	background: var(--accent);
	transition: all 250ms ease-in;
	border-radius: 2px;
}

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

.mobile-nav-btn.active span:nth-child(2) {
	opacity: 0;
}

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

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


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

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

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

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

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

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

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

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

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


/* ==================== RESPONSIVE - MOBILE ==================== */

@media (max-width: 769px) {
	.nav-wrap_x5Zub {
		padding: 0px;
	}

	.nav-wrap_x5Zub .box_krIxZ {
		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(--heading-font);
		font-size: 17px;
		font-weight: 700;
		color: var(--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(160deg, var(--primary), var(--secondary));
		color: white;
		font-size: 13px;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.8px;
		border-radius: var(--radius-md);
		box-shadow: 0 4px 15px var(--primary-alpha);
	}

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

	.mobile-nav-btn {
		display: flex;
	}

	.nav-links_S8n31 {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 80%;
		max-width: 380px;
		height: 100vh;
		background: var(--darker);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 250ms ease-in;
		box-shadow: -8px 0 32px rgb(0 0 0 / 70%);
		border-left: 2px solid var(--primary);
		z-index: 1001;
		gap: 0px;
	}

	.nav-links_S8n31.active {
		right: 0px;
	}

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

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

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

@media (max-width: 30rem) {
	.box_krIxZ { padding: 0 16px; }
	.section_HUCjs { padding: 60px 0; }
	.intro_O2zss-ctas { flex-direction: column; }
	.intro_O2zss-ctas .cta_ZP9ck { width: 100%; }

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