/*!
 * Stylesheet: Ocean Blue & Cyan
 * Fonts: Teko / Rubik
 * Date: 2026-08-23T09:25:50.426Z
 */

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

:root {
	--color-primary-alpha: #0ea5e940;
	--color-text: #e0f2fe;
	--color-muted: #7dd3fc;
	--color-accent: #22d3ee;
	--color-dark: #0a1929;
	--color-darker: #050d15;
	--color-secondary: #06b6d4;
	--color-secondary-alpha: #06b6d440;
	--color-primary: #0ea5e9;
	--color-light: #f0f9ff;

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

	--grid-gap: 12px;
	--pad-element: 16px;
	--pad-section: 40px;
	--rad-full: 100px;
	--rad-sm: 4px;
	--rad-md: 16px;
	--rad-lg: 24px;
	--shadow-lg: 0 8px 30px rgba(0,0,0,0.35);
	--shadow-sm: 0 4px 20px rgba(0,0,0,0.25);
	--shadow-glow: 0 0 30px;
}


/* ===== Base ===== */

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


.jump-link {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 24px;
	background: var(--color-primary);
	color: white;
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--rad-full);
	z-index: 10000;
	transition: top 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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



a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--color-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;
	}
}




@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

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



html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	font-family: var(--ff-body);
	background: var(--color-darker);
	color: var(--color-light);
	line-height: 1.7em;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

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

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

a {
	text-decoration: none;
	color: inherit;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}




.inner_MWEId {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding-top: 0;
	padding-right: 48px;
	padding-bottom: 0;
	padding-left: 48px;
}



/* Header */

.top-bar_2vYNv {
	position: sticky;
	top: 0px;
	z-index: 1000;
	background: rgba(0,0,0,0.6);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	border: 0 0 1px 0 rgba(255,255,255,0.07) solid;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar_2vYNv.scrolled {
	background: rgba(0,0,0,0.8);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.top-bar_2vYNv .inner_MWEId {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

.top-bar_2vYNv .logo {
	font-family: var(--ff-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--color-light);
	letter-spacing: -0.02em;
}

.top-bar_2vYNv .logo span {
	color: var(--color-primary);
}

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

.nav_fXYET a {
	font-weight: 500;
	color: var(--color-muted);
	font-size: 14px;
	transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav_fXYET a:hover {
	color: var(--color-primary);
}

.top-bar_2vYNv-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}



/** Buttons **/

.link-btn_SFkQB {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-top: 12px;
	padding-right: 28px;
	padding-bottom: 12px;
	padding-left: 28px;
	font-family: var(--ff-body);
	font-size: 15px;
	font-weight: 600;
	border-radius: 999px;
	cursor: pointer;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: 0.02em;
	text-decoration: none;
}

.link-btn_SFkQB--primary {
	background: var(--color-primary);
	border: none;
	box-shadow: 0 4px 14px var(--color-primary-alpha);
	color: white;
	box-shadow: 0 4px 14px var(--color-primary-alpha);
}

.link-btn_SFkQB--primary:hover {
	transform: translate(0, -3px);
	box-shadow: 0 8px 25px var(--color-primary-alpha);
}

.link-btn_SFkQB--secondary {
	background: transparent;
	border: 2px solid rgb(255 255 255 / 20%);
	color: var(--color-light);
}

.link-btn_SFkQB--secondary:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.link-btn_SFkQB--large {
	padding-block: 16px;
	padding-inline: 36px;
	font-size: 16px;
}

.link-btn_SFkQB--small {
	padding: 8px 20px;
	font-size: 13px;
}


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

.hero_gtUff {
	position: relative;
	overflow: hidden;
	padding: 80px 0 60px;
}

.hero_gtUff::before {
	content: '';
	position: absolute;
	top: -180px;
	right: -150px;
	width: 700px;
	height: 750px;
	background: radial-gradient(circle, var(--color-primary-alpha) 0%, transparent 70%);
	pointer-events: none;
}

.hero_gtUff::after {
	content: '';
	position: absolute;
	bottom: -100px;
	left: -200px;
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, var(--color-secondary-alpha) 0%, transparent 70%);
	pointer-events: none;
}

.hero_gtUff .inner_MWEId {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero_gtUff-content {
}

.hero_gtUff-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: var(--color-primary-alpha);
	border-width: 1px;
	border-style: solid;
	border-color: var(--color-primary-alpha);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 24px;
}

.hero_gtUff-badge i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-primary);
}

.hero_gtUff-content h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	letter-spacing: -1px;
	margin-bottom: 20px;
	color: var(--color-light);
}

.hero_gtUff-content h1 em {
	font-style: normal;
	color: var(--color-primary);
}

.hero_gtUff-subtitle {
	font-size: 17px;
	color: var(--color-muted);
	margin-bottom: 32px;
	max-width: 440px;
	line-height: 1.7em;
}

.hero_gtUff-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

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

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




.stat-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 48px 80px;
}

.highlight-item {
	text-align: center;
	padding: 32px 16px;
	position: relative;
}

.highlight-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 25%;
	height: 50%;
	width: 1px;
	background: rgba(255,255,255,0.07);
}

.key-num {
	font-family: var(--ff-heading);
	font-size: clamp(1.8rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--color-light);
	letter-spacing: -1px;
}

.key-num em {
	font-style: normal;
	color: var(--color-primary);
}

.stat-text {
	font-size: 0.813rem;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
	margin-top: 4px;
}




.area_heRyk {
	padding: var(--pad-section) 0;
}

.area_heRyk--gray {
	background: rgba(255,255,255,0.035);
}

.area_heRyk-tag {
	display: inline-block;
	font-size: 0.75rem;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	margin-bottom: 12px;
}

.area_heRyk-head {
	text-align: center;
	margin-bottom: 3.5rem;
}

.area_heRyk-head h2 {
	font-size: clamp(2rem, 4vw, 2.75rem);
	letter-spacing: -0.5px;
	margin-bottom: 14px;
}

.area_heRyk-head p {
	font-size: 1rem;
	color: var(--color-muted);
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.area_heRyk-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	text-align: center;
	margin-bottom: 1rem;
	letter-spacing: -0.5px;
}

.area_heRyk-subtitle {
	text-align: center;
	font-size: 16px;
	color: var(--color-muted);
	margin-bottom: 48px;
	max-width: 460px;
	margin: 0 auto;
}



/* Cards */

.panel_081c8 {
	background: var(--color-dark);
	border-radius: 14px;
	padding: 32px 28px;
	box-shadow: 0 2px 20px rgba(0,0,0,0.3);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.07);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.panel_081c8:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}



/* ==================== BONUS CARDS ==================== */

.layout_TJoBd--bonuses {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.panel_081c8--bonus {
	position: relative;
	overflow: hidden;
}

.panel_081c8--bonus::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.bonus-step {
	font-size: 12px;
	font-weight: 700;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.75rem;
}

.panel_081c8--bonus h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--color-light);
}

.panel_081c8--bonus p {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.bonus-badge {
	display: inline-block;
	background: var(--color-primary-alpha);
	color: var(--color-primary);
	padding-block: 5px;
	padding-inline: 14px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 1rem;
}



/* ==================== GAME CARDS ==================== */

.layout_TJoBd--games {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
}

.panel_081c8--game {
	padding: 0;
	overflow: hidden;
	cursor: pointer;
}

.panel_081c8--game:hover {
	border-color: var(--color-primary);
}

.game-thumb {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--color-dark);
}

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

.panel_081c8--game:hover .game-thumb img {
	transform: scale(1.03) rotate(1deg);
}

.game-info {
	padding: 14px 16px;
}

.game-info h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
	color: var(--color-light);
}

.game-info span {
	font-size: 12px;
	color: var(--color-muted);
}

.panel_081c8-overlay {
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 70%);
	display: flex;
	place-content: center;
	place-items: center;
	opacity: 0;
	transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.panel_081c8-name {
	font-weight: 600;
	color: white;
}



/* Provider Cards */

.layout_TJoBd--providers {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.panel_081c8--provider {
	display: flex;
	place-content: center;
	place-items: center;
	padding: 20px;
	aspect-ratio: 2/1;
	overflow: hidden;
	position: relative;
}

.panel_081c8--provider:hover {
	border-color: var(--color-primary);
}

.panel_081c8--provider img {
	width: 70%;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%) brightness(2);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.panel_081c8--provider span {
	position: absolute;
	bottom: 0;
	left: 0px;
	right: 0px;
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-muted);
	text-align: center;
	opacity: 0;
	transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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


/* ===== Split Layout ===== */

.split-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.split-block {
	border-radius: 20px;
	padding: 40px 36px;
}

.split-block--dark {
	background: var(--color-darker);
	color: white;
}

.split-block--dark .area_heRyk-tag {
	color: var(--color-accent);
}

.split-block--dark h2 {
	color: white;
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin: 12px 0px 28px;
}

.pay-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.pay-chip {
	background: rgba(255, 255, 255, 0.08);
	border: solid rgba(255,255,255,0.12) 1px;
	border-radius: 8px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
	transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pay-chip:hover {
	background: rgba(255, 255, 255, 0.15);
}

.split-block--white {
	background: var(--color-dark);
	border: 1px solid rgba(255,255,255,0.07);
}

.split-block--white h2 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin: 12px 0 28px;
}


/* -- REVIEWS -- */

.layout_TJoBd--reviews {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--grid-gap);
}

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

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

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

.reviewer-info strong {
	display: block;
	color: var(--color-light);
}

.stars {
	color: #f59e0b;
	font-size: 15px;
	letter-spacing: 2px;
}

.review-item {
	padding: 20px 0;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.07);
}

.review-item:first-child {
	border-top: none;
	padding-top: 0px;
}

.review-stars {
	color: #f5a623;
	font-size: 15px;
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.review-text {
	font-size: 14px;
	color: var(--color-muted);
	line-height: 170%;
	margin-bottom: 6px;
	font-style: italic;
}

.review-who {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-light);
}

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


/*! Payments Table */

.payments-table-wrap {
	overflow-x: auto;
	margin-top: 24px;
}

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

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

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

.payments-table th {
	font-weight: 600;
	color: var(--color-accent);
	text-transform: uppercase;
	font-size: 13px;
}

.payments-table tbody tr {
	border: 0 0 1px 0 solid rgb(255 255 255 / 5%);
	transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.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(--color-primary-alpha);
	border-radius: var(--rad-full);
	font-size: 13px;
	color: var(--color-primary);
}



/** About **/

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

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

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

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

.info-text h3 {
	font-size: 1.75rem;
	margin-bottom: 16px;
	color: var(--color-light);
}

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

.info-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.info-visual img {
	width: 100%;
	max-width: 420px;
	max-height: 280px;
	object-fit: contain;
	border-radius: var(--rad-lg);
}


/* CTA BLOCKS */

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

.area_heRyk--cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: none;
	opacity: 0.2;
}

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

.area_heRyk--cta h2 em {
	font-style: normal;
}

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

.area_heRyk--cta .link-btn_SFkQB {
	position: relative;
	background: white;
	color: var(--color-primary);
}

.area_heRyk--cta .link-btn_SFkQB:hover {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}



/* SEO TEXT */

.text-block {
	margin-top: 48px;
	padding-top: 36px;
	padding-right: 36px;
	padding-bottom: 36px;
	padding-left: 36px;
	background: var(--color-dark);
	border-radius: var(--rad-lg);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.07);
}

.text-block h3 {
	font-size: 22px;
	margin-bottom: 16px;
	color: var(--color-light);
}

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

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

.area_heRyk--seo-text {
	background: var(--color-dark);
}

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

.seo-content h2 {
	font-size: 36px;
	margin-bottom: 24px;
	color: var(--color-light);
}

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

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



/*
 * FAQ
 */

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

.faq-item {
	border: 0 0 1px 0 solid rgba(255,255,255,0.07);
}

.faq-question {
	width: 100%;
	padding-top: 22px;
	padding-right: 0;
	padding-bottom: 22px;
	padding-left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-light);
	text-align: left;
	transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon {
	width: 28px;
	height: 30px;
	border-radius: 50%;
	background: var(--color-primary-alpha);
	display: flex;
	place-content: center;
	place-items: center;
	color: var(--color-primary);
	font-size: 18px;
	flex-shrink: 0;
	transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
	max-height: 0px;
	overflow: hidden;
	transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer p {
	padding: 0 0 22px;
	color: var(--color-muted);
	line-height: 1.7;
}


/* ===== Info Table ===== */

.info-table {
	width: 100%;
	max-width: 750px;
	margin-inline: auto;
	border-collapse: separate;
	border-spacing: 0px;
	background: var(--color-dark);
	border-radius: var(--rad-lg);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
	border: 1px solid rgba(255,255,255,0.07);
}

.info-table tr {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.07);
}

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

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

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

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



/** CTA Bottom **/

.cta-bottom {
	text-align: center;
	padding-block: 100px;
	padding-inline: 48px;
	background: var(--color-dark);
	position: relative;
	overflow: hidden;
}

.cta-bottom::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 500px;
	background: radial-gradient(ellipse, var(--color-primary-alpha) 0%, transparent 70%);
	pointer-events: none;
}

.cta-bottom h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	letter-spacing: -1.5px;
	margin-bottom: 16px;
	position: relative;
}

.cta-bottom h2 em {
	font-style: normal;
	color: var(--color-primary);
}

.cta-bottom p {
	color: var(--color-muted);
	font-size: 1.063rem;
	margin-bottom: 36px;
	position: relative;
}




.colophon_bqJRm {
	background: var(--color-darker);
	padding-top: 60px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

.colophon_bqJRm-grid {
	display: grid;
	grid-template-columns: 3fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.colophon_bqJRm-col h4 {
	font-size: 1.125rem;
	margin-bottom: 16px;
	color: white;
}

.colophon_bqJRm-col p {
	color: rgba(255,255,255,0.5);
	line-height: 1.7em;
	font-size: 14px;
}

.colophon_bqJRm-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.colophon_bqJRm-nav a {
	color: rgb(255 255 255 / 60%);
	font-size: 14px;
}

.colophon_bqJRm-nav a:hover {
	color: white;
}

.trust-badges {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.trust-badges img {
	height: 50px;
	filter: grayscale(80%) brightness(1.5);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badges 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: 0;
	border-width: 1px 0;
	border-style: solid;
	border-color: rgba(255,255,255,0.08);
}

.responsible-gaming h4 {
	font-size: 1rem;
	margin-bottom: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
}

.responsible-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 20px;
}

.resp-logos {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.resp-logos a {
	display: block;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.resp-logos a:hover {
	transform: scale(1.02);
}

.resp-logos img {
	height: 40px;
	filter: grayscale(80%) brightness(1.5);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.resp-logos a:hover img {
	filter: saturate(1) brightness(1);
	opacity: 1;
}

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

.colophon_bqJRm-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 0.5rem;
}

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


/* Hamburger */

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	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: 24px;
	height: 2px;
	background: var(--color-light);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 2px;
}

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

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

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

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


/*
 * Responsive - Tablet
 */

@media (max-width: 64em) {
	.hero_gtUff .inner_MWEId {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero_gtUff-content { order: 1; }
	.hero_gtUff-image { order: 2; }
	.hero_gtUff-subtitle { margin-left: auto; margin-right: auto; }
	.hero_gtUff-ctas { justify-content: center; }
	.hero_gtUff-image img { max-width: 480px; margin: 0 auto; }

	.inner_MWEId { padding-left: 32px; padding-right: 32px; }

	.stat-strip {
		grid-template-columns: repeat(2, 1fr);
		padding-left: 32px;
		padding-right: 32px;
	}

	.layout_TJoBd--bonuses { grid-template-columns: 1fr; }
	.layout_TJoBd--games { grid-template-columns: repeat(3, 1fr); }
	.layout_TJoBd--providers { grid-template-columns: repeat(4, 1fr); }
	.layout_TJoBd--reviews { grid-template-columns: 1fr; }

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

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

	.cta-bottom {
		padding-left: 32px;
		padding-right: 32px;
	}

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

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

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



/** Responsive - Mobile **/

@media (max-width: 47.9375rem) {
	.top-bar_2vYNv .inner_MWEId {
		height: auto;
		padding: 12px 20px;
		gap: 10px;
	}

	.logo {
		display: none;
	}

	.logo-mobile {
		display: block;
		font-family: var(--ff-heading);
		font-size: 17px;
		font-weight: 800;
		color: var(--color-light);
		text-decoration: none;
		white-space: nowrap;
	}

	.logo-mobile span {
		color: var(--color-primary);
	}

	.mobile-cta {
		display: block;
		flex: 1;
		max-width: 160px;
		padding: 9px 16px;
		background: var(--color-primary);
		color: white;
		font-size: 0.813rem;
		font-weight: 700;
		text-align: center;
		text-decoration: none;
		border-radius: 999px;
		box-shadow: 0 4px 14px var(--color-primary-alpha);
	}

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

	.hamburger {
		display: flex;
	}

	.nav_fXYET {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 80%;
		max-width: 380px;
		height: 100vh;
		height: 100dvh;
		background: var(--color-dark);
		flex-direction: column;
		padding: 100px 30px 40px;
		transition: right 300ms cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -8px 0 32px rgb(0 0 0 / 50%);
		border-left: 2px solid var(--color-primary);
		z-index: 1001;
		gap: 0px;
		overflow-y: auto;
	}

	.nav_fXYET.active {
		right: 0px;
	}

	.nav_fXYET a {
		font-size: 18px;
		padding: 0.8rem 0px;
		border-bottom: 1px solid rgba(255,255,255,0.07);
		color: var(--color-light);
	}

	.hero_gtUff { padding-top: 48px; padding-bottom: 32px; }
	.hero_gtUff-content h1 { font-size: 2rem; }
	.stat-strip {
		grid-template-columns: 1fr 1fr;
		padding-bottom: 48px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.area_heRyk { padding: 60px 0px; }
	.inner_MWEId { padding: 0px 20px; }
	.area_heRyk-title { font-size: 1.75rem; }
	.area_heRyk-head h2 { font-size: 1.75rem; }
	.cta-bottom { padding: 60px 20px; }

	.layout_TJoBd--bonuses { grid-template-columns: 1fr; }
	.layout_TJoBd--games { grid-template-columns: repeat(2, 1fr); }
	.layout_TJoBd--providers { grid-template-columns: repeat(3, 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;
	}

	.split-block {
		padding: 28px 24px;
		border-radius: 14px;
	}

	.pay-grid { gap: 8px; }

	.panel_081c8 { padding: 24px 20px; }
	.panel_081c8--review { padding: 20px; }

	.text-block { padding: 24px 20px; }

	.info-table th,
	.info-table td { padding: 14px 16px; }
}

@media (max-width: 500px) {
	.inner_MWEId { padding: 0px 16px; }
	.hero_gtUff-ctas { flex-direction: column; }
	.hero_gtUff-ctas .link-btn_SFkQB { width: 100%; }
	.stat-strip {
		grid-template-columns: 1fr 1fr;
		padding-left: 16px;
		padding-right: 16px;
	}
	.layout_TJoBd--games { grid-template-columns: 1fr 1fr; }
	.layout_TJoBd--providers { grid-template-columns: repeat(2, 1fr); }

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

	.cta-bottom { padding: 48px 16px; }
	.cta-bottom h2 { font-size: 1.75rem; }

	.split-block {
		padding: 24px 16px;
		border-radius: 12px;
	}

	.panel_081c8 { padding: 20px 16px; }
	.text-block { padding: 20px 16px; }

	.info-table th,
	.info-table td { padding: 12px 14px; }

	.info-table th { width: 45%; }
}