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

:root {
	--background: #050b18;
	--foreground: #e2e8f0;
	--foreground-muted: rgba(226, 232, 240, 0.78);
	--card: rgba(15, 23, 42, 0.72);
	--card-foreground: #f8fafc;
	--primary: #f59e0b;
	--primary-foreground: #0b1120;
	--accent: #38bdf8;
	--accent-foreground: #062031;
	--muted: rgba(148, 163, 184, 0.65);
	--muted-foreground: rgba(226, 232, 240, 0.8);
	--border: rgba(148, 163, 184, 0.26);
	--hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #38bdf8 100%);
	--surface-gradient: linear-gradient(135deg, rgba(24, 34, 52, 0.95), rgba(10, 21, 38, 0.92));
	--glow-amber: 0 12px 30px rgba(245, 158, 11, 0.35);
}

.font-space-grotesk {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 600;
}

.font-dm-sans {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background-color: var(--background);
	color: var(--foreground);
	line-height: 1.6;
	min-height: 100vh;
	overflow-x: hidden;
}

.bg-casino-pattern {
	background:
		radial-gradient(circle at 15% 10%, rgba(56, 189, 248, 0.16), transparent 55%),
		radial-gradient(circle at 85% 0%, rgba(245, 158, 11, 0.12), transparent 45%),
		linear-gradient(180deg, rgba(9, 17, 34, 0.98) 0%, #050b18 70%);
	color: var(--foreground);
	min-height: 100vh;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.items-center {
	align-items: center;
}

.justify-between {
	justify-content: space-between;
}

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

.grid {
	display: grid;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gap-4 {
	gap: 16px;
}

.gap-6 {
	gap: 24px;
}

.gap-8 {
	gap: 32px;
}

.p-4 {
	padding: 16px;
}

.p-6 {
	padding: 24px;
}

.p-8 {
	padding: 32px;
}

.px-4 {
	padding-left: 16px;
	padding-right: 16px;
}

.px-6 {
	padding-left: 24px;
	padding-right: 24px;
}

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

.py-2 {
	padding-top: 8px;
	padding-bottom: 8px;
}

.py-3 {
	padding-top: 12px;
	padding-bottom: 12px;
}

.py-4 {
	padding-top: 16px;
	padding-bottom: 16px;
}

.py-12 {
	padding-top: 48px;
	padding-bottom: 48px;
}

.py-16 {
	padding-top: 64px;
	padding-bottom: 64px;
}

.py-20 {
	padding-top: 80px;
	padding-bottom: 80px;
}

.m-0 {
	margin: 0;
}

.mb-2 {
	margin-bottom: 8px;
}

.mb-3 {
	margin-bottom: 12px;
}

.mb-4 {
	margin-bottom: 16px;
}

.mb-6 {
	margin-bottom: 24px;
}

.mb-8 {
	margin-bottom: 32px;
}

.mb-12 {
	margin-bottom: 48px;
}

.mb-16 {
	margin-bottom: 64px;
}

.mr-2 {
	margin-right: 8px;
}

.mt-2 {
	margin-top: 8px;
}

.mt-4 {
	margin-top: 16px;
}

.mt-8 {
	margin-top: 32px;
}

.mt-12 {
	margin-top: 48px;
}

.border {
	border: 1px solid var(--border);
}

.border-2 {
	border: 2px solid;
}

.border-amber-600 {
	border-color: #d97706;
}

.border-red-500 {
	border-color: #ef4444;
}

.border-gray-600 {
	border-color: #4b5563;
}

.border-gray-700 {
	border-color: #374151;
}

.border-b {
	border-bottom: 1px solid var(--border);
}

.border-t {
	border-top: 1px solid var(--border);
}

.rounded-lg {
	border-radius: 8px;
}

.rounded-xl {
	border-radius: 12px;
}

.text-xs {
	font-size: 12px;
	line-height: 12px;
}

.text-sm {
	font-size: 14px;
	line-height: 14px;
}

.text-lg {
	font-size: 18px;
	line-height: 24px;
}

.text-xl {
	font-size: 20px;
	line-height: 20px;
}

.text-2xl {
	font-size: 24px;
	line-height: 24px;
}

.text-3xl {
	font-size: 30px;
	line-height: 30px;
}

.text-4xl {
	font-size: 36px;
	line-height: 36px;
}

.text-5xl {
	font-size: 48px;
	line-height: 48px;
}

.text-6xl {
	font-size: 60px;
	line-height: 60px;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.font-bold {
	font-weight: 700;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-white {
	color: #ffffff;
}

.text-gray-300 {
	color: rgba(226, 232, 240, 0.85);
}

.text-gray-400 {
	color: rgba(148, 163, 184, 0.85);
}

.text-amber-500 {
	color: #fbbf24;
}

.text-green-400 {
	color: #34d399;
}

.text-red-400 {
	color: #f87171;
}

.text-green-700 {
	color: #34d399;
	font-weight: bold;
}

.text-red-700 {
	color: #f87171;
	font-weight: bold;
}

.leading-relaxed {
	line-height: 1.625;
}

.highlight {
	border: 1px solid rgba(148, 163, 184, 0.25);
	border-radius: 18px;
	background: rgba(8, 20, 37, 0.45);
	box-shadow: 0 16px 35px rgba(7, 17, 32, 0.4);
}

.pros {
	border: 1px solid rgba(74, 222, 128, 0.4);
	box-shadow: 0 16px 35px rgba(34, 197, 94, 0.12);
	background: rgba(34, 197, 94, 0.12);
}

.cons {
	border: 1px solid rgba(248, 113, 113, 0.4);
	box-shadow: 0 16px 35px rgba(248, 113, 113, 0.12);
	background: rgba(248, 113, 113, 0.12);
}

.casino-card {
	background: var(--surface-gradient);
	border: 1px solid var(--border);
	border-radius: 20px;
	transition: all 0.35s ease;
	box-shadow: 0 28px 60px rgba(7, 17, 32, 0.45);
	color: var(--foreground);
}

.casino-card:hover {
	transform: translateY(-4px);
	border-color: rgba(248, 250, 252, 0.22);
	box-shadow: 0 36px 70px rgba(7, 17, 32, 0.6);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(7, 17, 32, 0.92);
	border-bottom: 1px solid rgba(148, 163, 184, 0.18);
	backdrop-filter: blur(18px);
	box-shadow: 0 20px 40px rgba(2, 6, 23, 0.55);
}

.header-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}

.logo-wrap {
	display: flex;
	align-items: center;
	gap: 4px;
}

.logo-wrap img {
	height: 48px;
	width: auto;
}

.logo-wrap span {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 700;
	font-size: 24px;
	color: #f8fafc;
	letter-spacing: 0.02em;
}

.logo-subtitle {
	font-size: 12px;
	color: rgba(226, 232, 240, 0.65);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.nav-menu {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
}

.nav-link {
	color: rgba(226, 232, 240, 0.78);
	text-decoration: none;
	padding: 7px 14px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	background: rgba(15, 23, 42, 0.35);
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
	color: #0b1120;
	background: rgba(248, 250, 252, 0.92);
	border-color: rgba(248, 250, 252, 0.2);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10.4px 21.6px;
	border-radius: 999px;
	background: linear-gradient(135deg, #f59e0b, #fbbf24);
	color: #0b1120;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	box-shadow: var(--glow-amber);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 18px 35px rgba(245, 158, 11, 0.45);
}

footer .nav-link {
	padding: 4px 0;
	display: block;
	background: none;
	border: none;
	color: #d1d5db;
}

.hero {
	position: relative;
	padding: 80px 0;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 24px;
	border-radius: 24px;
	background: var(--hero-gradient);
	box-shadow: 0 45px 80px rgba(15, 23, 42, 0.35);
	opacity: 0.95;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.hero-layout {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 48px;
	align-items: center;
}

.hero-copy {
	max-width: 640px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(248, 250, 252, 0.85);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 20px;
}

.hero-title {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 700;
	font-size: 48px;
	color: #f8fafc;
	line-height: 1.05;
	margin-bottom: 24px;
}

.hero-title span {
	color: #fbbf24;
}

.hero-subtitle {
	font-size: 18px;
	line-height: 1.75;
	color: rgba(248, 250, 252, 0.78);
	margin-bottom: 32px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 40px;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 16px;
}

.hero-stat {
	padding: 16px 20px;
	border-radius: 16px;
	background: rgba(15, 23, 42, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	gap: 20px;
}

.stat-value {
	font-size: 32px;
	font-weight: 700;
	color: #f8fafc;
}

.stat-label {
	font-size: 14px;
	letter-spacing: 0.04em;
	color: rgba(248, 250, 252, 0.75);
	text-transform: uppercase;
}

.hero-highlight {
	position: relative;
}

.hero-card {
	background: rgba(15, 23, 42, 0.35);
	border: 1px solid rgba(248, 250, 252, 0.2);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	box-shadow: 0 25px 65px rgba(8, 20, 37, 0.45);
	padding: 32px;
	max-width: 420px;
	margin-left: auto;
}

.hero-card-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(248, 250, 252, 0.12);
	color: #f8fafc;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.hero-card-body {
	display: grid;
	gap: 20px;
}

.hero-card-header {
	display: flex;
	gap: 16px;
	align-items: center;
}

.hero-card-logo {
	width: 72px;
	height: 72px;
	object-fit: contain;
	background: rgba(15, 23, 42, 0.55);
	border-radius: 16px;
	padding: 12px;
	border: 1px solid rgba(248, 250, 252, 0.1);
}

.hero-card-title {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 600;
	font-size: 22px;
	color: #f8fafc;
}

.hero-card-bonus {
	color: rgba(248, 250, 252, 0.75);
	font-size: 15px;
}

.hero-card-list {
	list-style: none;
	display: grid;
	gap: 12px;
	color: rgba(248, 250, 252, 0.8);
	font-size: 15px;
	padding: 0;
	margin: 0;
}

.hero-card-list li::before {
	content: "•";
	color: #38bdf8;
	margin-right: 10px;
}

.hero-card-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 14px;
	background: linear-gradient(135deg, #38bdf8, #0ea5e9);
	color: #04101f;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 18px 30px rgba(14, 165, 233, 0.35);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card-cta:hover,
.hero-card-cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(14, 165, 233, 0.5);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 14px;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	letter-spacing: 0.01em;
}

.btn-primary {
	background: linear-gradient(135deg, #f97316, #fbbf24);
	color: #0b1120;
	box-shadow: var(--glow-amber);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 20px 40px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
	border: 1px solid rgba(248, 250, 252, 0.35);
	color: rgba(248, 250, 252, 0.85);
	background: rgba(15, 23, 42, 0.25);
}

.btn-secondary:hover {
	background: rgba(248, 250, 252, 0.12);
	color: #f8fafc;
}

.main-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 16px;
}

table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(8, 20, 37, 0.45);
	border-radius: 18px;
	overflow: hidden;
}

th,
td {
	padding: 16px 24px;
	text-align: left;
	border-bottom: 1px solid rgba(148, 163, 184, 0.25);
	color: rgba(226, 232, 240, 0.85);
}

th {
	background: rgba(59, 130, 246, 0.22);
	color: #f8fafc;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

tbody tr:hover {
	background: rgba(59, 130, 246, 0.08);
}

ul {
	list-style: none;
	margin: 0px 0px 16px 0px;
}

ol {
	padding: 0px 0px 0px 16px;
}

.space-y-2 > * + * {
	margin-top: 8px;
}

.space-y-3 > * + * {
	margin-top: 12px;
}

.w-full {
	width: 100%;
}

.h-16 {
	height: 64px;
}

.max-w-4xl {
	max-width: 896px;
}

.max-w-7xl {
	max-width: 1280px;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-x-auto {
	overflow-x: auto;
}

.relative {
	position: relative;
}

.hidden {
	display: none;
}

.transition-colors {
	transition: color 0.3s ease;
}

@media (min-width: 640px) {
	.hero-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hero-title {
		font-size: 56px;
	}

	.hero-card {
		margin-left: auto;
	}
}

@media (min-width: 900px) {
	.hero-layout {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
	}

	.hero-title {
		font-size: 60px;
	}

	.hero-subtitle {
		font-size: 19.2px;
	}
}

@media (min-width: 1024px) {
	.container {
		padding: 0 32px;
	}
}

footer {
	background: rgba(4, 11, 24, 0.95);
	border-top: 1px solid rgba(148, 163, 184, 0.18);
	padding: 48px 0 40px;
	color: rgba(226, 232, 240, 0.75);
}

.footer-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

.footer-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	padding: 8px 0 24px;
}

.footer-logo-item {
	height: 36px;
	object-fit: contain;
	filter: grayscale(0.1) brightness(1.1);
}

.footer-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 16px;
}

.footer-description {
	color: rgba(226, 232, 240, 0.7);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 24px;
}

.footer-social {
	display: flex;
	gap: 16px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(31, 41, 55, 0.6);
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 8px;
	color: rgba(226, 232, 240, 0.7);
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--primary);
	color: var(--primary-foreground);
	border-color: var(--primary);
	transform: translateY(-2px);
}

.footer-heading {
	font-size: 18px;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 24px;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-link {
	color: rgba(226, 232, 240, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: var(--primary);
}

.footer-divider {
	height: 1px;
	background: rgba(148, 163, 184, 0.2);
	margin: 20px 0 24px;
}

.footer-note {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
	color: rgba(226, 232, 240, 0.8);
	font-size: 15px;
	margin-bottom: 20px;
}

.footer-note-icon {
	width: 28px;
	height: 28px;
	opacity: 0.85;
	display: block;
	flex-shrink: 0;
}

.footer-note-text p + p {
	margin-top: 4px;
}

.footer-copy {
	text-align: center;
	color: rgba(226, 232, 240, 0.9);
	font-weight: 600;
	margin-top: 12px;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.footer-copyright {
	flex: 1;
	min-width: 300px;
}

.footer-badges {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: rgba(31, 41, 55, 0.6);
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 20px;
}

.badge-text {
	font-size: 13px;
	font-weight: 500;
	color: rgba(226, 232, 240, 0.8);
}

.faq-item {
	margin-top: 16px;
	background: rgba(12, 22, 38, 0.85);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 12px;
}

.faq-item:first-child {
	margin-top: 0;
}

.faq-accordion {
	display: grid;
	gap: 12px;
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 18px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	background: transparent;
	color: rgba(248, 250, 252, 0.9);
	border: none;
}

.faq-icon {
	transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
	padding: 0 18px;
}

.faq-answer p {
	font-size: 15px;
	padding: 14px 0 16px;
	color: rgba(226, 232, 240, 0.85);
}

.casino-listings {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 0 20px;
	margin: 0 auto;
}

.casino-listing-card {
	position: relative;
	background: rgba(9, 15, 26, 0.9);
	border: 1px solid rgba(31, 41, 55, 0.9);
	border-radius: 26px;
	padding: 36px 40px 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	box-shadow: 0 28px 60px rgba(7, 17, 32, 0.55);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.casino-listing-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 38px 90px rgba(7, 17, 32, 0.65);
	border-color: rgba(56, 189, 248, 0.35);
}

.card-rank {
	position: absolute;
	top: -1.400px;
	left: 36px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	color: #0b1120;
	background: linear-gradient(135deg, #38bdf8, #1d4ed8);
	box-shadow: 0 16px 30px rgba(59, 130, 246, 0.35);
	border: 4px solid rgba(9, 17, 34, 0.95);
}

.card-grid {
	display: grid;
	grid-template-columns: 144px minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr);
	grid-template-rows: auto 1fr;
	align-items: stretch;
	border-radius: 20px;
    border: 1px solid rgba(248, 250, 252, 0.1);
    overflow: hidden;
}

.card-col {
	padding: 8px;
	background: rgba(12, 22, 38, 0.85);
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}

.card-col-summary {
	grid-column: 1 / 2;
	grid-row: 1 / span 2;
	align-items: center;
	text-align: center;
	gap: 20px;
}

.card-col-bonus {
	grid-column-start: 2;
}

.card-col-benefits {
	grid-column-start: 3;
}

.card-col-payments {
	grid-column-start: 4;
}

.card-col-heading {
	grid-row: 1 / 2;
}

.card-col-body {
	grid-row: 2 / 3;
	justify-content: center;
}

.casino-logo {
	width: 128px;
	height: 128px;
	border-radius: 12px;
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(248, 250, 252, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.casino-logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 16px;
}

.card-rating {
	display: flex;
	align-items: baseline;
	gap: 6px;
	justify-content: center;
	color: #fbbf24;
	font-weight: 700;
}

.rating-icon {
	font-size: 19.2px;
}

.rating-denominator {
	font-size: 14px;
	color: rgba(226, 232, 240, 0.6);
}

.casino-tagline {
	color: rgba(226, 232, 240, 0.75);
	font-size: 15px;
	line-height: 1.5;
}

.card-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 600;
	color: rgba(248, 250, 252, 0.85);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.card-heading-icon {
	font-size: 18px;
}

.card-bonus-text {
	text-align: center;
	font-size: 16px;
	color: rgba(226, 232, 240, 0.82);
}

.card-bonus-text b {
	display: block;
	font-size: 34px;
	font-weight: 700;
	color: #38bdf8;
}

.card-benefit-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10.4px;
	color: rgba(226, 232, 240, 0.82);
	font-size: 15px;
}

.card-benefit-list li {
	position: relative;
	padding-left: 24px;
}

.card-benefit-list li::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 0;
	color: #34d399;
	font-size: 14px;
	line-height: 1.4;
}

.card-payment-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.card-payment-pills span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 14px;
	border-radius: 12px;
	background: rgba(15, 23, 42, 0.65);
	border: 1px solid rgba(148, 163, 184, 0.18);
	color: rgba(226, 232, 240, 0.85);
	font-size: 14px;
	letter-spacing: 0.04em;
}

.card-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.card-actions .card-btn {
	width: 100%;
	justify-content: center;
}

.card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 36px;
	border-radius: 14px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 14px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.card-btn-primary {
	background: linear-gradient(90deg, #f97316 0%, #fbbf24 100%);
	color: #0b1120;
	box-shadow: 0 18px 35px rgba(245, 158, 11, 0.4);
}

.card-btn-primary:hover,
.card-btn-primary:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 24px 45px rgba(245, 158, 11, 0.55);
}

.card-btn-secondary {
	background: linear-gradient(120deg, rgba(59, 130, 246, 0.25), rgba(56, 189, 248, 0.2));
	color: rgba(226, 232, 240, 0.92);
	border: 1px solid rgba(59, 130, 246, 0.25);
}

.card-btn-secondary:hover,
.card-btn-secondary:focus-visible {
	transform: translateY(-2px);
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(56, 189, 248, 0.35));
	box-shadow: 0 22px 40px rgba(59, 130, 246, 0.35);
}

.payment-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 6px 14px;
	border-radius: 12px;
	background: rgba(15, 23, 42, 0.65);
	border: 1px solid rgba(148, 163, 184, 0.18);
	filter: grayscale(0.1);
	min-width: 72px;
}

.payment-pill img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.back-to-top {
	position: fixed;
	bottom: 32px;
	right: 32px;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: linear-gradient(135deg, #38bdf8, #0ea5e9);
	color: #04111f;
	font-size: 24px;
	font-weight: 700;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 18px 35px rgba(14, 165, 233, 0.35);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 50;
}

.back-to-top span {
	line-height: 1;
}

.back-to-top.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
	box-shadow: 0 24px 45px rgba(14, 165, 233, 0.5);
	transform: translateY(-4px);
}

.content-card {
	padding: 40px 32px;
	display: grid;
	gap: 24px;
}

.content-article {
	max-width: 1000px;
	padding: 0 24px;
	margin: 0 auto;
	display: grid;
	gap: 32px;
}

.content-article article {
	display: grid;
	gap: 24px;
}

.content-article h2,
.casino-card h2 {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #f8fafc;
}

.content-article h3,
.casino-card h3 {
	font-size: 21px;
	font-weight: 600;
	color: #fbbf24;
}

.content-article h4,
.casino-card h4 {
	font-size: 17px;
	font-weight: 600;
	color: rgba(248, 250, 252, 0.85);
}

.casino-card p,
.content-article p,
.content-article li {
	color: rgba(226, 232, 240, 0.82);
	line-height: 1.75;
}

.content-article ul,
.content-article ol {
	margin: 0;
	padding-left: 24px;
}

.content-article ul {
	list-style: none;
	padding-left: 0;
}

.section-intro {
	font-size: 17px;
	color: rgba(226, 232, 240, 0.82);
}

.content-header {
	display: grid;
	gap: 16px;
	margin-bottom: 32px;
	text-align: left;
}

.content-tile {
	display: flex;
	gap: 32px;
	background: rgba(12, 22, 38, 0.85);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 18px;
	padding: 28px 24px;
}

.content-image {
	width: 100%;
	max-width: 200px;
}

.content-image img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	border-radius: 12px;
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(248, 250, 252, 0.1);
	padding: 16px;
}

.content-body {
	flex: 1;
}

.content-title {
	font-size: 22px;
	font-weight: 600;
	color: #fbbf24;
}

.content-subtitle {
	font-size: 18px;
	font-weight: 600;
	color: #f8fafc;
}

.content-text {
	color: rgba(226, 232, 240, 0.8);
	line-height: 1.7;
}

.content-list {
	list-style: none;
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.content-list li {
	position: relative;
	padding-left: 22px;
	color: rgba(226, 232, 240, 0.82);
}

.content-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: #38bdf8;
}

.content-ordered {
	counter-reset: content-counter;
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(226, 232, 240, 0.82);
}

.content-ordered li {
	counter-increment: content-counter;
	padding-left: 26px;
	position: relative;
}

.content-ordered li::before {
	content: counter(content-counter) ".";
	position: absolute;
	left: 0;
	top: 0;
	color: #fbbf24;
	font-weight: 600;
}

.section {
	padding: 72px 0;
	position: relative;
}

.section:nth-of-type(odd)::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 55%),
		linear-gradient(180deg, rgba(8, 20, 37, 0.55) 0%, rgba(5, 11, 24, 0) 100%);
	opacity: 0.9;
	z-index: 0;
}

.section > * {
	position: relative;
	z-index: 1;
}

@media (max-width: 1024px) {
	.casino-listing-card {
		max-width: 480px;
	}

	.card-rank {
		left: 50%;
		transform: translateX(-50%);
	}

	.card-grid {
		grid-template-columns: 1fr;
	}

	.card-col,
	.card-col-summary,
	.card-col-bonus,
	.card-col-benefits,
	.card-col-payments {
		grid-column: auto !important;
		grid-row: auto !important;
		grid-column-start: auto !important;
		width: 100%;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.card-bonus-text b {
		line-height: 1;
	}
	
	.footer-logo-item {
		height: 32px;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 40px 0;
	}

	.hero::after {
		inset: 12px;
		border-radius: 16px;
	}

	.hero-layout {
		gap: 32px;
	}

	.hero-copy,
	.hero-highlight {
		max-width: 100%;
	}

	.hero-card {
		margin: 0 auto;
		padding: 24px;
	}

	.hero-card-header {
		flex-direction: column;
		gap: 12px;
	}

	.hero-title {
		font-size: 36px;
		line-height: 1.1;
		margin-bottom: 16px;
	}

	.hero-subtitle {
		font-size: 16px;
		line-height: 1.6;
		margin-bottom: 24px;
	}

	.hero-actions {
		gap: 12px;
		margin-bottom: 32px;
	}

	.logo-wrap {
		align-items: center;
	}

	.nav-menu {
		justify-content: center;
	}

	.header-cta {
		width: 100%;
		font-size: 15px;
		padding: 10px 20px;
	}

	.section {
		padding: 48px 0;
	}

	.card-benefit-list li {
		padding-left: 0;
	}

	.card-benefit-list li::before {
		position: static;
		margin-right: 8px;
		display: inline-block;
	}

	.card-btn {
		width: 100%;
		font-size: 15px;
		padding: 13px 24px;
	}

	.casino-listing-card {
		padding: 28px 24px 32px;
	}

	.content-card {
		padding: 28px 20px;
	}

	.content-tile {
		flex-direction: column;
		align-items: center;
		padding: 24px 20px;
		gap: 24px;
	}

	.content-article {
		gap: 20px;
		padding: 0 12px;
	}

	.content-article h2,
	.casino-card h2 {
		font-size: 24px;
		line-height: 1.2;
		margin-bottom: 16px;
	}

	.content-article h3,
	.casino-card h3 {
		font-size: 16px;
		line-height: 1.3;
		margin-bottom: 12px;
	}

	.content-article h4,
	.casino-card h4 {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.casino-card p,
	.content-article p,
	.content-article li {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 12px;
	}

	.content-title {
		font-size: 20px;
		line-height: 1.3;
		margin-bottom: 12px;
	}

	.content-text {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 12px;
	}

	.section-heading {
		font-size: 28px;
		line-height: 1.2;
		margin-bottom: 16px;
	}

	.faq-accordion {
		gap: 8px;
	}

	.faq-question {
		padding: 13px 16px;
	}

	.faq-answer p {
		line-height: 1.5;
		padding: 13px 0 16px;
	}

	.footer {
		padding: 40px 0 32px;
	}

	.footer-logos {
		padding: 8px 0 16px;
		gap: 24px;
	}

	.footer-divider {
		margin: 16px 0 20px;
	}

	.footer-note {
		font-size: 15px;
		gap: 8px;
		margin-bottom: 16px;
	}

	.footer-copy {
		font-size: 13px;
		margin-top: 8px;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 32px 0;
	}

	.hero::after {
		inset: 8px;
		border-radius: 12px;
	}

	.hero-layout {
		gap: 24px;
	}

	.hero-content {
		padding: 0 20px;
	}

	.hero-title {
		font-size: 30px;
		line-height: 1.1;
		margin-bottom: 12px;
	}

	.hero-subtitle {
		font-size: 15px;
		line-height: 1.5;
		margin-bottom: 20px;
	}

	.hero-actions {
		gap: 8px;
		margin-bottom: 24px;
	}

	.hero-card {
		padding: 20px;
	}

	.section {
		padding: 40px 0;
	}

	.casino-listing-card {
		padding: 24px 20px 28px;
	}

	.content-card {
		padding: 24px 16px;
	}

	.content-tile {
		padding: 20px 16px;
		gap: 20px;
	}

	.content-article {
		gap: 16px;
		padding: 0 8px;
	}

	.content-article h2,
	.casino-card h2 {
		font-size: 24px;
		line-height: 1.2;
		margin-bottom: 12px;
	}

	.content-article h3,
	.casino-card h3 {
		font-size: 20px;
		line-height: 1.3;
		margin-bottom: 8px;
	}

	.content-article h4,
	.casino-card h4 {
		font-size: 16px;
		margin-bottom: 6px;
	}

	.casino-card p,
	.content-article p,
	.content-article li {
		font-size: 15px;
		line-height: 1.5;
		margin-bottom: 10px;
	}

	.content-title {
		font-size: 16px;
		line-height: 1.3;
		margin-bottom: 10px;
	}

	.content-text {
		line-height: 1.5;
		margin-bottom: 10px;
	}

	.section-heading {
		font-size: 24px;
		line-height: 1.2;
		margin-bottom: 12px;
	}

	.faq-accordion {
		gap: 6px;
	}

	.faq-question {
		padding: 11px 14px;
	}

	.faq-answer p {
		line-height: 1.4;
		padding: 11px 0 14px;
	}

	.card-btn {
		padding: 11px 20px;
	}

	.header-cta {
		font-size: 13px;
		padding: 9px 16px;
	}

	.footer {
		padding: 32px 0 24px;
	}

	.footer-logos {
		padding: 6px 0 13px;
		gap: 20px;
	}

	.footer-divider {
		margin: 13px 0 16px;
	}

	.footer-note {
		font-size: 13px;
		gap: 6px;
		margin-bottom: 13px;
	}

	.footer-copy {
		font-size: 12px;
		margin-top: 6px;
	}
}
