* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--background: #ffffff;
	--foreground: #1f2937;
	--card: #374151;
	--card-foreground: #f1f5f9;
	--primary: #1f2937;
	--primary-foreground: #f1f5f9;
	--accent: #d97706;
	--accent-foreground: #ffffff;
	--muted: #4b5563;
	--muted-foreground: #f1f5f9;
	--border: #374151;
	--hero-gradient: linear-gradient(135deg, #2c89c3 0%, #4B7792 100%);
}

.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 {
	
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

.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: 1rem;
}

.gap-6 {
	gap: 1.5rem;
}

.gap-8 {
	gap: 2rem;
}

.p-4 {
	padding: 1rem;
}

.p-6 {
	padding: 1.5rem;
}

.p-8 {
	padding: 2rem;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}

.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.py-20 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.m-0 {
	margin: 0;
}

.mb-2 {
	margin-bottom: 0.5rem;
}

.mb-3 {
	margin-bottom: 0.75rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mb-12 {
	margin-bottom: 3rem;
}

.mb-16 {
	margin-bottom: 4rem;
}

.mr-2 {
	margin-right: 0.5rem;
}

.mt-2 {
	margin-top: 0.5rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mt-8 {
	margin-top: 2rem;
}

.mt-12 {
	margin-top: 3rem;
}

.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: 0.5rem;
}

.rounded-xl {
	border-radius: 0.75rem;
}

.text-xs {
	font-size: 0.75rem;
	line-height: 0.75rem;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 0.875rem;
}

.text-lg {
	font-size: 1.125rem;
	line-height: ;
	1.125rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.25rem;
}

.text-2xl {
	font-size: 1.5rem;
	line-height: 1.5rem;
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 1.875rem;
}

.text-4xl {
	font-size: 2.25rem;
	line-height: 2.25rem;
}

.text-5xl {
	font-size: 3rem;
	line-height: 3rem;
}

.text-6xl {
	font-size: 3.75rem;
	line-height: 3.75rem;
}

.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-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 #a9d9f5;
	box-shadow: 0px 0px 3px #a9d9f5;
}

.pros {
	border: 1px solid #3cd29c;
	box-shadow: 0px 0px 3px #3cd29c;
	background: #f0fffa;
}

.cons {
	border: 1px solid #f87171;
	box-shadow: 0px 0px 3px #f87171;
	background: #fff7f7;
}

.casino-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.casino-card:hover {
	border-color: #e2e8f0;
	box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

header {
	background-color: #1C1C1C;
	border-bottom: 1px solid #374151;
}

.header-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}

.logo {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #b3e4fd;
}

.nav-menu {
	display: none;
}

.nav-link {
	color: #d1d5db;
	text-decoration: none;
	padding: 0.5rem 0.75rem;
	border-radius: 0.375rem;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #f59e0b;
}

footer .nav-link {
	padding: 0.25rem 0;
	display: block;
}

.hero {
	position: relative;
	background: var(--hero-gradient);
	color: white;
	padding: 5rem 0;
}

.hero-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
	text-align: center;
}

.hero-title {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 700;
	font-size: 3rem;
	color: #ffffff;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-title span {
	color: #b2e3ff;
}

.hero-subtitle {
	font-size: 1.25rem;
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.625;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
}

.btn {
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background-color: #d97706;
	color: #ffffff;
}

.btn-primary:hover {
	background-color: #b45309;
}

.btn-secondary {
	border: 1px solid #d97706;
	color: #f59e0b;
	background-color: transparent;
}

.btn-secondary:hover {
	background-color: #d97706;
	color: #ffffff;
}

.main-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 4rem 1rem;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 1rem 1.5rem;
	text-align: left;
	border-bottom: 1px solid #e2e8f0;
}

th {
	background-color: #4a7994;
	color: white;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 600;
}

ul {
	list-style: none;
	margin: 0px 0px 1rem 0px;
}

ol {
	padding: 0px 0px 0px 1rem;
}

.space-y-2 > * + * {
	margin-top: 0.5rem;
}

.space-y-3 > * + * {
	margin-top: 0.75rem;
}

.w-full {
	width: 100%;
}

.h-16 {
	height: 4rem;
}

.max-w-4xl {
	max-width: 56rem;
}

.max-w-7xl {
	max-width: 80rem;
}

.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-buttons {
		flex-direction: row;
	}

	.hero-title {
		font-size: 3.75rem;
	}
}

@media (min-width: 768px) {
	.nav-menu {
		display: block;
	}

	.nav-menu .flex {
		display: flex;
		align-items: baseline;
		gap: 1rem;
	}

	.grid-cols-1 {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (min-width: 1024px) {
	.container {
		padding: 0 2rem;
	}
}
footer {
	background-color: #1f2937;
	border-top: 1px solid #374151;
	padding: 3rem 0;
	color: var(--background);
}

.footer-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

.footer-grid {
	text-align: center;
}

.footer-bottom {
	border-top: 1px solid #374151;
	margin-top: 2rem;
	padding-top: 2rem;
	text-align: center;
}

.faq-item {
	margin-top: 1.5rem;
}

.faq-item:first-child {
	margin-top: 0;
}

.casino-listings {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 1000px;
	margin: 0 auto;
}

.casino-listing-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	transition: all 0.3s ease;
}

.casino-listing-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.casino-logo {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	background: #000;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.casino-logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 5px;
}

.casino-info {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.bonus-box {
	flex: 1;
}

.casino-name {
	flex: 1;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.welcome-bonus-label {
	font-size: 0.875rem;
	color: #9CA3AF;
	margin-bottom: 0.25rem;
	font-weight: 500;
}

.bonus-amount {
	font-size: 2rem;
	font-weight: 700;
	line-height: 2rem;
	color: #487995;
	margin-bottom: 0.25rem;
}

.bonus-extra {
	font-size: 1rem;
}

.casino-rating {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.stars {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	background: #e8e9ea;
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.star {
	color: #487995;
	font-size: 1.25rem;
}

.star.half {
	opacity: 0.5;
}

.rating-number {
	font-weight: 600;
	margin-left: 0.5rem;
}

.play-now-btn {
	background: linear-gradient(257deg, #00AAB5 11.4%, #02B94B 80.08%);
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
	min-width: 160px;
	text-transform: uppercase;
}

.play-now-btn:hover {
	background: linear-gradient(135deg, #F59E0B, #FBBF24);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.section {
	padding: 3rem 0;
	position: relative;
}

.section:nth-child(odd):before {
	position: absolute;
	left: -2000%;
	width: 4000%;
	height: 100%;
	top: 0px;
	content: "";
	box-shadow: inset 0px 0px 5rem 0px #e2f5ff;
	z-index: 5;
}

.section:nth-child(odd) > * {
	z-index: 10;
	position: relative;
}

@media (max-width: 768px) {
	.casino-card {
		padding: 1.5rem 1rem;
	}

	.casino-listing-card {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
		padding: 1rem;
		align-items: stretch;
	}

	.casino-logo {
		width: auto;
	}

	.casino-logo-img {
		padding: 10px;
	}

	.casino-info {
		flex-direction: column;
	}

	.bonus-amount {
		font-size: 1.75rem;
	}

	.py-4 {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}

	.px-6 {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.section:nth-child(odd):before {
		width: auto;
		left: -1rem;
		right: -1rem;
	}

	.gamble-box {
		flex-direction: column;
	}

	.footer-grid {
		display: flex;
		gap: 0px;
		flex-wrap: wrap;
	}

	.footer-grid > div {
		width: 50%;
	}

	.footer-grid > div:first-child {
		max-width: 100%;
		width: auto;
		padding: 0px 0px 1rem 0px;
	}
}