/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
	/* Colors - Dark Theme */
	--bg-primary: #0a0a0a;
	--bg-secondary: #141414;
	--bg-card: #1a1a1a;
	--bg-card-hover: #222222;

	--text-primary: #ffffff;
	--text-secondary: #b8b8b8;
	--text-muted: #6b6b6b;

	--gold: #d4af37;
	--gold-light: #f4d03f;
	--gold-dark: #b8941f;

	--accent: #2563eb;
	--success: #10b981;
	--exclusive: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);

	--border: rgba(255, 255, 255, 0.1);
	--border-hover: rgba(212, 175, 55, 0.3);

	/* Spacing */
	--container-width: 1400px;
	--section-padding: 120px;

	/* Typography */
	--font-display: 'Playfair Display', serif;
	--font-body: 'Open Sans', sans-serif;

	/* Transitions */
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Light Theme Variables */
.light-theme {
	--bg-primary: #ffffff;
	--bg-secondary: #f9fafb;
	--bg-card: #ffffff;
	--bg-card-hover: #f9fafb;

	--text-primary: #0a0a0a;
	--text-secondary: #4b5563;
	--text-muted: #9ca3af;

	--border: rgba(0, 0, 0, 0.1);
	--border-hover: rgba(212, 175, 55, 0.4);
}

/* ==========================================
   RESET & BASE
   ========================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	font-family: var(--font-body);
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	transition: background-color 0.3s var(--transition-smooth);
	overflow-x: hidden;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 2rem;
}

.site-logo {
	height: 2rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 10, 10, 0.8);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	transition: all 0.3s var(--transition-smooth);
}

.nav-notfixed {
	position: static !important;
}

.light-theme .nav {
	background: rgba(255, 255, 255, 0.8);
}

.nav.scrolled {
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav .container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0;
}

.nav-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
}

.logo-icon {
	color: var(--gold);
	font-size: 2rem;
}

.nav-links {
	display: flex;
	gap: 3rem;
	list-style: none;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
	color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.theme-toggle {
	background: transparent;
	border: 2px solid var(--border);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.theme-toggle:hover {
	border-color: var(--gold);
	transform: rotate(180deg);
}

.theme-icon {
	font-size: 1.2rem;
}

.light-theme .theme-icon {
	color: var(--gold);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 100px; /* Push content down from nav */
}

.hero-background {
	position: absolute;
	inset: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(212, 175, 55, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 50%,
			rgba(37, 99, 235, 0.1) 0%,
			transparent 50%
		),
		linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
	z-index: -2;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(212, 175, 55, 0.03) 2px,
		rgba(212, 175, 55, 0.03) 4px
	);
	z-index: -1;
}

.hero-content {
	text-align: center;
	z-index: 1;
	animation: fadeInUp 1s var(--transition-smooth);
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.title-line {
	display: block;
	opacity: 0;
	animation: slideIn 0.8s var(--transition-smooth) forwards;
}

.title-line:nth-child(1) {
	animation-delay: 0.2s;
}
.title-line:nth-child(2) {
	animation-delay: 0.4s;
}
.title-line:nth-child(3) {
	animation-delay: 0.6s;
}

.title-line.gold {
	background: var(--exclusive);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.2rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	font-weight: 300;
}

.stats-bar {
	display: flex;
	gap: 3rem;
	justify-content: center;
	align-items: center;
	margin-bottom: 3rem;
	padding: 2rem 3rem;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border);
	border-radius: 20px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.stat-number {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--gold);
	text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.stat-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-secondary);
}

.stat-divider {
	width: 1px;
	height: 60px;
	background: var(--border);
}

.hero-cta {
	display: inline-block;
	padding: 1.2rem 3rem;
	background: var(--exclusive);
	color: var(--bg-primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 50px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.hero-cta:hover::before {
	opacity: 1;
}

/* ==========================================
   FILTER SECTION
   ========================================== */
.filter-section {
	padding: 2rem 0;
	background: var(--bg-secondary);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 89px;
	z-index: 100;
	backdrop-filter: blur(10px);
}

.filter-bar {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 0.75rem 1.5rem;
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text-secondary);
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.filter-count {
	background: var(--bg-card);
	padding: 0.2rem 0.6rem;
	border-radius: 20px;
	font-size: 0.75rem;
}

.filter-btn:hover {
	border-color: var(--gold);
	transform: translateY(-2px);
}

.filter-btn.active {
	background: var(--exclusive);
	color: var(--bg-primary);
	border-color: transparent;
}

.filter-btn.active .filter-count {
	background: rgba(0, 0, 0, 0.2);
}

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

.sort-select {
	padding: 0.75rem 1.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	color: var(--text-primary);
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.sort-select:hover {
	border-color: var(--gold);
}

/* ==========================================
   COMPARE BANNER
   ========================================== */
.compare-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--bg-card);
	border-top: 2px solid var(--gold);
	padding: 1.5rem 0;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	z-index: 1000;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.compare-right {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.compare-close-btn {
	background: transparent;
	border: 2px solid var(--border);
	color: var(--text-primary);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.8rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.compare-close-btn:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: rotate(90deg);
	background: rgba(212, 175, 55, 0.1);
}

.compare-banner.active {
	transform: translateY(0);
}

.compare-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.compare-left {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex: 1;
}

.compare-left h3 {
	font-size: 1.3rem;
	color: var(--text-primary);
	margin: 0;
	white-space: nowrap;
}

.compare-left h4 {
	font-family: var(--font-display);
	color: var(--gold);
	margin-bottom: 0.25rem;
	font-size: 1.3rem;
}

.compare-left p {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.compare-chips {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.compare-chip {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--gold);
	border-radius: 50px;
	font-size: 0.95rem;
	color: var(--text-primary);
	animation: chipIn 0.3s var(--transition-bounce);
}

.chip-remove {
	background: transparent;
	border: none;
	color: var(--gold);
	font-size: 1.5rem;
	cursor: pointer;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
	line-height: 1;
}

.chip-remove:hover {
	transform: scale(1.2);
	color: var(--gold-light);
}

.compare-right {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.btn-compare {
	padding: 0.85rem 2rem;
	background: var(--exclusive);
	color: var(--bg-primary);
	border: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-compare:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn-compare:disabled:hover {
	transform: none;
	box-shadow: none;
}

.compare-close-btn {
	background: transparent;
	border: 2px solid var(--border);
	color: var(--text-primary);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.8rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.compare-close-btn:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: rotate(90deg);
	background: rgba(212, 175, 55, 0.1);
}

.btn-compare:not(:disabled):hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   CASINO CARDS
   ========================================== */
.casinos-section {
	padding: 4rem 0 8rem;
}

.cards-grid {
	display: grid;
	gap: 2rem;
}

.casino-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.4s var(--transition-smooth);
	position: relative;
	animation: fadeInCard 0.6s var(--transition-smooth) backwards;
}

.casino-card:hover {
	transform: translateY(-8px);
	border-color: var(--gold);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Stagger animation */
.casino-card:nth-child(1) {
	animation-delay: 0.1s;
}
.casino-card:nth-child(2) {
	animation-delay: 0.2s;
}
.casino-card:nth-child(3) {
	animation-delay: 0.3s;
}
.casino-card:nth-child(4) {
	animation-delay: 0.4s;
}

.card-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem;
	background: linear-gradient(
		135deg,
		var(--bg-card) 0%,
		var(--bg-secondary) 100%
	);
	border-bottom: 1px solid var(--border);
	position: relative;
}

.card-logo {
	width: 140px;
	height: 100px;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	border: 1px solid var(--border);
	transition: transform 0.3s ease;
}

.casino-card:hover .card-logo {
	transform: scale(1.05);
}

.card-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.card-title-group {
	flex: 1;
}

.card-title-group h3 {
	font-family: var(--font-display);
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.card-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.1rem;
	color: var(--gold);
}

.stars {
	display: flex;
	gap: 0.25rem;
}

.star {
	color: var(--gold);
	width: 20px;
	height: 20px;
}

.star.filled {
	fill: var(--gold);
}

.star.half {
	fill: rgba(212, 175, 55, 0.3);
}

.star.empty {
	fill: rgba(212, 175, 55, 0.3);
}

.card-actions {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.btn {
	padding: 0.85rem 1.5rem;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 0.95rem;
	white-space: nowrap;
}

.btn-primary {
	background: var(--exclusive);
	color: var(--bg-primary);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
	border-color: var(--gold);
	background: rgba(212, 175, 55, 0.1);
}

.card-body {
	padding: 2rem;
}

.bonus-highlight {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(
		135deg,
		rgba(212, 175, 55, 0.1) 0%,
		rgba(212, 175, 55, 0.05) 100%
	);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 16px;
	margin-bottom: 1.5rem;
}

.bonus-type {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.bonus-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.bonus-terms {
	font-size: 0.8rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.feature-item {
	text-align: center;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-3px);
	border-color: var(--gold);
}

.feature-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.feature-label {
	font-size: 0.85rem;
	font-weight: 600;
}

.card-description {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
}

.compare-checkbox {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: background 0.2s ease;
}

.compare-checkbox:hover {
	background: rgba(212, 175, 55, 0.05);
}

.compare-checkbox input {
	width: 20px;
	height: 20px;
	accent-color: var(--gold);
	cursor: pointer;
}

.compare-label {
	font-weight: 600;
	font-size: 0.9rem;
}

/* Enhanced Exclusive Badge */
.casino-card.exclusive {
	border: 3px solid var(--gold); /* Thicker border */
	position: relative;
	box-shadow: 0 0 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.3),
		0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 60px rgba(212, 175, 55, 0.05); /* Inner glow */
	animation: exclusiveGlow 3s ease-in-out infinite;
	transform: scale(1.02); /* Slightly larger */
}

@keyframes exclusiveGlow {
	0%,
	100% {
		box-shadow: 0 0 40px rgba(212, 175, 55, 0.5),
			0 0 80px rgba(212, 175, 55, 0.3), 0 4px 20px rgba(0, 0, 0, 0.3),
			inset 0 0 60px rgba(212, 175, 55, 0.05);
	}
	50% {
		box-shadow: 0 0 60px rgba(212, 175, 55, 0.7),
			0 0 120px rgba(212, 175, 55, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3),
			inset 0 0 80px rgba(212, 175, 55, 0.08);
	}
}

.casino-card.exclusive:hover {
	box-shadow: 0 0 80px rgba(212, 175, 55, 0.8),
		0 0 150px rgba(212, 175, 55, 0.5), 0 20px 60px rgba(0, 0, 0, 0.4),
		inset 0 0 100px rgba(212, 175, 55, 0.1);
	transform: scale(1.03) translateY(-5px);
}

.exclusive-badge {
	padding: 0.7rem 1.75rem; /* Slightly bigger */
	background: linear-gradient(
		135deg,
		var(--gold) 0%,
		#f4d03f 100%
	); /* Gradient */
	color: var(--bg-primary);
	border-radius: 50px;
	font-weight: 900; /* Bolder */
	font-size: 0.9rem; /* Slightly bigger */
	letter-spacing: 1.5px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5),
		0 0 30px rgba(212, 175, 55, 0.3);
	white-space: nowrap;
	flex-shrink: 0;
	animation: pulse 2s ease-in-out infinite;
	text-transform: uppercase;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5),
			0 0 30px rgba(212, 175, 55, 0.3);
	}
	50% {
		transform: scale(1.08); /* Bigger pulse */
		box-shadow: 0 6px 35px rgba(212, 175, 55, 0.7),
			0 0 50px rgba(212, 175, 55, 0.5);
	}
}

.exclusive-badge span:first-child {
	font-size: 1.1rem;
	animation: starSpin 4s linear infinite;
}

@keyframes starSpin {
	0%,
	100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-10deg);
	}
	75% {
		transform: rotate(10deg);
	}
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border);
	padding: 4rem 0 2rem;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 2fr;
	gap: 4rem;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid var(--border);
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.footer-tagline {
	color: var(--text-secondary);
	line-height: 1.7;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-col h4 {
	font-family: var(--font-display);
	color: var(--gold);
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.footer-col a {
	display: block;
	color: var(--text-secondary);
	text-decoration: none;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.footer-col a:hover {
	color: var(--gold);
}

.footer-gambling {
	margin-bottom: 2rem;
}

.gambling-logos {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.gambling-logo {
	padding: 1rem 2rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	font-weight: 600;
	color: var(--text-secondary);
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.gambling-logo-width {
	width: 100%;
}

.gambling-logo:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-2px);
}

/* Search Page Footer Styles */
.search-footer-content {
	display: grid;
	grid-template-columns: 2fr 2fr 1fr;
	gap: 3rem;
	padding: 3rem 0;
	align-items: start;
}

.search-footer-brand h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--gold);
}

.search-footer-brand p {
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 400px;
}

.search-footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.search-footer-col h4 {
	font-family: var(--font-display);
	color: var(--gold);
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.search-footer-col a {
	display: block;
	color: var(--text-secondary);
	text-decoration: none;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.search-footer-col a:hover {
	color: var(--gold);
}

.search-footer-gambling {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

/* Mobile - Search Footer */
@media (max-width: 1024px) {
	.search-footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.search-footer-gambling {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 1rem;
	}
}

@media (max-width: 768px) {
	.search-footer-content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		text-align: center;
	}

	.search-footer-brand p {
		max-width: 100%;
	}

	.search-footer-links {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.search-footer-gambling {
		justify-content: center;
		margin-top: 0;
	}
}

@media (max-width: 480px) {
	.search-footer-content {
		gap: 2rem;
		padding: 2rem 0;
	}

	.search-footer-brand h3 {
		font-size: 1.35rem;
	}

	.logo-text {
		font-size: 1.2rem;
	}

	.search-footer-col h4 {
		font-size: 1rem;
	}

	.search-footer-col a {
		font-size: 0.9rem;
	}
}

.footer-bottom {
	text-align: center;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-disclaimer {
	margin-top: 0.5rem;
	font-size: 0.85rem;
}

/* ==========================================
   SEARCH PAGE
   ========================================== */
.search-hero {
	padding-top: 8rem;
	padding-bottom: 2rem;
	text-align: center;
	background: linear-gradient(
		135deg,
		var(--bg-primary) 0%,
		var(--bg-secondary) 100%
	);
}

.search-hero h1 {
	font-family: var(--font-display);
	font-size: 3.5rem;
	margin-bottom: 1rem;
	padding-top: 2rem;
	background: var(--gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.search-hero p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
}

.search-container {
	max-width: 600px;
	margin: 0 auto;
	padding-bottom: 0;
	position: relative;
	margin-bottom: 2rem;
}

.search-input {
	width: 100%;
	padding: 1.2rem 2rem;
	background: var(--bg-card);
	border: 2px solid var(--border);
	border-radius: 50px;
	font-size: 1.1rem;
	color: var(--text-primary);
	transition: all 0.3s ease;
	margin-bottom: 0;
}

.search-input:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	max-height: 400px;
	overflow-y: auto;
	display: none;
	z-index: 100;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	margin-top: 0.5rem;
}

.search-result-item {
	display: block;
	padding: 1rem 1.5rem;
	color: var(--text-primary);
	text-decoration: none;
	border-bottom: 1px solid var(--border);
	transition: all 0.3s ease;
}

.search-result-item:last-child {
	border-bottom: none;
}

.search-result-item:hover {
	background: rgba(212, 175, 55, 0.1);
	padding-left: 2rem;
}

.no-results {
	padding: 2rem;
	text-align: center;
	color: var(--text-secondary);
}

.top3-section {
	padding: 4rem 0;
	background: linear-gradient(
		135deg,
		var(--bg-secondary) 0%,
		var(--bg-primary) 100%
	);
}

.top3-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.top3-card {
	background: var(--bg-card);
	border: 2px solid var(--border);
	border-radius: 20px;
	padding: 3rem 2rem;
	text-decoration: none;
	color: var(--text-primary);
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.top3-card:hover {
	transform: translateY(-8px);
	border-color: var(--gold);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
}

.top3-rank {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	color: var(--bg-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.2rem;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.top3-card h3 {
	font-family: var(--font-display);
	font-size: 2rem;
	margin: 1rem 0;
}

.top3-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.top3-rating .star {
	width: 24px;
	height: 24px;
}

.top3-rating .star.filled {
	fill: var(--gold);
}

.top3-rating .star.half {
	fill: rgba(212, 175, 55, 0.3);
}

.rating-text {
	margin-left: 0.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gold);
}

.top3-badge {
	margin-top: 0.5rem;
	padding: 0.5rem 1.5rem;
	background: var(--exclusive);
	color: var(--bg-primary);
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.85rem;
}

.all-reviews-section {
	padding: 4rem 0 8rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
}

.review-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	text-decoration: none;
	color: var(--text-primary);
	transition: all 0.3s ease;
	display: block;
}

.review-card:hover {
	transform: translateY(-4px);
	border-color: var(--gold);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-card-content {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.review-card h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin: 0;
}

.review-card-rating {
	display: flex;
	gap: 0.25rem;
}

.review-card-rating .star {
	width: 16px;
	height: 16px;
}

.review-arrow {
	font-size: 1.5rem;
	color: var(--gold);
	transition: transform 0.3s ease;
	margin-left: auto;
	align-self: flex-start;
}

.review-card:hover .review-arrow {
	transform: translateX(5px);
}

/* ==========================================
   REVIEW PAGE
   ========================================== */
.review-hero {
	padding-top: 6rem;
	padding-bottom: 0;
	background: linear-gradient(
		135deg,
		var(--bg-secondary) 0%,
		var(--bg-primary) 100%
	);
}

.review-hero-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.review-logo-section {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.review-logo-container {
	width: 180px;
	height: 120px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	border: 2px solid var(--border);
}

.review-logo-container img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.review-title-group h1 {
	font-family: var(--font-display);
	font-size: 3rem;
	margin-bottom: 1rem;
}

.review-rating {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.review-rating .stars {
	display: flex;
	gap: 0.25rem;
}

.review-rating .star {
	width: 28px;
	height: 28px;
}

.review-rating .star.filled {
	fill: var(--gold);
}

.rating-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gold);
}

.review-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 2.5rem;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	color: var(--bg-primary);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
	white-space: nowrap;
}

.review-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.review-cta-btn.large {
	padding: 1.5rem 3rem;
	font-size: 1.3rem;
}

.cta-arrow {
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.review-cta-btn:hover .cta-arrow {
	transform: translateX(5px);
}

.review-content {
	padding: 4rem 0;
}

.review-section {
	margin-bottom: 4rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 3rem;
}

.section-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.review-section h2 {
	font-family: var(--font-display);
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--gold);
}

.review-section p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.pros-cons-section {
	padding: 0;
	background: transparent;
	border: none;
}

.pros-cons-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.pros-box,
.cons-box {
	background: var(--bg-card);
	border: 2px solid var(--border);
	border-radius: 20px;
	padding: 2.5rem;
}

.pros-box {
	border-color: rgba(76, 175, 80, 0.3);
}

.cons-box {
	border-color: rgba(244, 67, 54, 0.3);
}

.pros-box h3 {
	color: #4caf50;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-display);
}

.cons-box h3 {
	color: #f44336;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-display);
}

.pros-box ul,
.cons-box ul {
	list-style: none;
	padding: 0;
}

.pros-box li,
.cons-box li {
	padding: 0.75rem 0 0.75rem 2rem;
	position: relative;
	font-size: 1.05rem;
	line-height: 1.6;
}

.pros-box li:before,
.cons-box li:before {
	position: block;
	left: 0;
	top: 0.75rem;
	margin-right: 5px;
	font-weight: bold;
	font-size: 1.2rem;
	line-height: 1;
}

.pros-box li:before {
	content: '✓';
	color: #4caf50;
}

.cons-box li:before {
	content: '✗';
	color: #f44336;
}

.bonus-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.bonus-card {
	background: linear-gradient(
		135deg,
		rgba(212, 175, 55, 0.1) 0%,
		rgba(212, 175, 55, 0.05) 100%
	);
	border: 2px solid var(--gold);
	border-radius: 16px;
	padding: 2rem;
}

.bonus-card h3 {
	font-family: var(--font-display);
	color: var(--gold);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.bonus-offer {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.bonus-link {
	color: var(--gold);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.bonus-link:hover {
	color: var(--gold-light);
	transform: translateX(5px);
	display: inline-block;
}

.payment-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.payment-badge {
	padding: 0.75rem 1.5rem;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--gold);
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
}

.review-final-cta {
	text-align: center;
	padding: 4rem 2rem;
	background: linear-gradient(
		135deg,
		var(--bg-card) 0%,
		var(--bg-secondary) 100%
	);
	border: 2px solid var(--gold);
	border-radius: 24px;
}

.review-final-cta h2 {
	font-family: var(--font-display);
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.review-final-cta > p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.disclaimer {
	margin-top: 1.5rem;
	font-size: 0.9rem;
	color: var(--text-muted);
}

/* ==========================================
   EXCLUSIVE PAGE
   ========================================== */
.exclusive-hero {
	position: relative;
	padding: 8rem 0 6rem;
	overflow: hidden;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.exclusive-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(212, 175, 55, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 50%,
			rgba(212, 175, 55, 0.1) 0%,
			transparent 50%
		);
	animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

.exclusive-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.exclusive-label {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: rgba(212, 175, 55, 0.2);
	border: 2px solid var(--gold);
	border-radius: 50px;
	color: var(--gold);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 2px;
	margin: 6rem 0 2rem;
	animation: pulse 2s ease-in-out infinite;
}

.exclusive-title {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 5rem);
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.exclusive-title .title-line {
	display: block;
}

.exclusive-title .gold {
	background: linear-gradient(
		135deg,
		var(--gold) 0%,
		var(--gold-light) 50%,
		var(--gold) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.exclusive-subtitle {
	font-size: 1.3rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.6;
}

.exclusive-stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	padding: 2rem;
	background: rgba(212, 175, 55, 0.05);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

.exclusive-stat {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.stat-icon {
	font-size: 1.8rem;
}

.stat-text {
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-primary);
}

.exclusive-section {
	padding: 6rem 0;
	background: var(--bg-primary);
}

.exclusive-cards-grid {
	display: grid;
	gap: 3rem;
}

.exclusive-casino-card {
	background: linear-gradient(
		135deg,
		var(--bg-card) 0%,
		var(--bg-secondary) 100%
	);
	border: 3px solid var(--gold);
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	transition: all 0.4s var(--transition-smooth);
	box-shadow: 0 0 40px rgba(212, 175, 55, 0.3), 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 0.6s ease backwards;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exclusive-casino-card:nth-child(1) {
	animation-delay: 0.1s;
}
.exclusive-casino-card:nth-child(2) {
	animation-delay: 0.2s;
}
.exclusive-casino-card:nth-child(3) {
	animation-delay: 0.3s;
}

.exclusive-casino-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 0 60px rgba(212, 175, 55, 0.5), 0 20px 60px rgba(0, 0, 0, 0.4);
	border-color: var(--gold-light);
}

.exclusive-card-badge {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: var(--gold);
	color: var(--bg-primary);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 1.5px;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.exclusive-card-header {
	padding: 2rem 2rem 1.5rem;
	text-align: center;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
	background: radial-gradient(
		ellipse at center,
		rgba(212, 175, 55, 0.08) 0%,
		transparent 70%
	);
	position: relative;
}

.exclusive-card-logo {
	width: 200px;
	height: 130px;
	margin: 0 auto 1.25rem;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	border: 3px solid var(--gold);
	box-shadow: 0 0 0px rgba(212, 175, 55, 0), 0 0 0px rgba(212, 175, 55, 0);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); /* Smooth bounce effect */
}

.exclusive-card-logo:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2),
		0 10px 40px rgba(0, 0, 0, 0.3);
	border-color: var(--gold-light);
}

.exclusive-casino-card:hover .exclusive-card-logo {
	transform: scale(1.05);
}

.exclusive-card-logo img {
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	max-width: 100%;
	max-height: 100%;
}

.exclusive-card-logo:hover img {
	transform: scale(1.08);
}

.exclusive-card-header {
	padding: 2.5rem 2rem 1.5rem; /* A bit more top padding */
	text-align: center;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
	background: radial-gradient(
		ellipse at center top,
		rgba(212, 175, 55, 0.1) 0%,
		transparent 60%
	);
}

.exclusive-card-header h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--gold);
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.exclusive-casino-card:hover .exclusive-card-header h3 {
	color: var(--gold-light);
	letter-spacing: 1px;
}

.exclusive-card-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.exclusive-card-rating .star {
	width: 24px;
	height: 24px;
}

.rating-value {
	margin-left: 0.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gold);
}

.exclusive-card-body {
	padding: 1.5rem 2rem;
}

.exclusive-bonus {
	background: linear-gradient(
		135deg,
		rgba(212, 175, 55, 0.15) 0%,
		rgba(212, 175, 55, 0.05) 100%
	);
	border: 2px solid var(--gold);
	border-radius: 16px;
	padding: 1.25rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.bonus-label {
	display: block;
	color: var(--gold);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.bonus-text {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-primary);
	line-height: 1.4;
	letter-spacing: 0.3px;
}

.exclusive-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.25rem;
	font-size: 1.05rem;
}

.exclusive-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.25rem;
}

.feature-tag {
	padding: 0.5rem 1rem;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
}

.exclusive-terms {
	font-size: 0.85rem;
	color: var(--text-muted);
	text-align: center;
}

.exclusive-card-footer {
	padding: 1.5rem 2rem;
	display: flex;
	gap: 1rem;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-exclusive-secondary,
.btn-exclusive-primary {
	flex: 1;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.btn-exclusive-secondary {
	background: transparent;
	border: 2px solid var(--gold);
	color: var(--gold);
}

.btn-exclusive-secondary:hover {
	background: rgba(212, 175, 55, 0.1);
	transform: translateY(-2px);
}

.btn-exclusive-primary {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	color: var(--bg-primary);
	border: none;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-exclusive-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-arrow {
	transition: transform 0.3s ease;
}

.btn-exclusive-primary:hover .btn-arrow {
	transform: translateX(4px);
}

.why-exclusive {
	padding: 6rem 0;
	background: linear-gradient(
		135deg,
		var(--bg-secondary) 0%,
		var(--bg-primary) 100%
	);
}

.section-heading {
	font-family: var(--font-display);
	font-size: 3rem;
	text-align: center;
	margin-bottom: 4rem;
	color: var(--gold);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.benefit-card {
	background: var(--bg-card);
	border: 2px solid rgba(212, 175, 55, 0.2);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.benefit-card:hover {
	border-color: var(--gold);
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.benefit-card h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--gold);
}

.benefit-card p {
	color: var(--text-secondary);
	line-height: 1.7;
}

.exclusive-cta {
	padding: 6rem 0;
	background: linear-gradient(
		135deg,
		rgba(212, 175, 55, 0.1) 0%,
		transparent 100%
	);
}

.cta-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.cta-content h2 {
	font-family: var(--font-display);
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
}

.cta-btn-large {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem 3rem;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	color: var(--bg-primary);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 800;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.cta-btn-large:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 10px 35px rgba(212, 175, 55, 0.6);
}

.cta-btn-large .cta-arrow {
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.cta-btn-large:hover .cta-arrow {
	transform: translateY(-4px);
}

/* ==========================================
   COMPARE MODAL
   ========================================== */
.compare-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	animation: fadeIn 0.3s ease;
}

.compare-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.compare-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
}

.compare-modal-content {
	position: relative;
	z-index: 10;
	background: var(--bg-card);
	border: 2px solid var(--gold);
	border-radius: 24px;
	width: 90%;
	max-width: 1000px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 2rem;
	animation: slideUp 0.4s var(--transition-smooth);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Custom scrollbar for modal */
.compare-modal-content::-webkit-scrollbar {
	width: 12px;
}

.compare-modal-content::-webkit-scrollbar-track {
	background: var(--bg-secondary);
	border-radius: 10px;
}

.compare-modal-content::-webkit-scrollbar-thumb {
	background: var(--gold);
	border-radius: 10px;
	border: 2px solid var(--bg-secondary);
}

.compare-modal-content::-webkit-scrollbar-thumb:hover {
	background: var(--gold-light);
}

.compare-modal-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: transparent;
	border: 2px solid var(--border);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	font-size: 2rem;
	color: var(--text-primary);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.compare-modal-close:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: rotate(90deg);
}

.compare-modal-title {
	font-family: var(--font-display);
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--gold);
	text-align: center;
}

.compare-table-container {
	overflow-x: auto;
}

.compare-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}

.compare-table th,
.compare-table td {
	padding: 1.2rem;
	text-align: left;
	border-bottom: 1px solid var(--border);
}

.compare-table th {
	background: var(--bg-secondary);
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--gold);
	position: sticky;
	top: 0;
	z-index: 10;
	vertical-align: top;
}

.compare-table th:first-child {
	border-top-left-radius: 12px;
}

.compare-table th:last-child {
	border-top-right-radius: 12px;
}

.compare-casino-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 0;
}

.compare-cell-content {
	text-align: center;
	padding: 0.3rem;
}

.compare-description {
	text-align: left;
	line-height: 1.6;
	padding: 0 1rem;
}

.compare-terms {
	text-align: left;
	font-size: 0.5rem;
	color: var(--text-muted);
	line-height: 1.5;
	padding: 0 1rem;
}

.compare-empty {
	color: var(--text-muted);
	font-size: 1.2rem;
}

.compare-table td {
	font-size: 1rem;
	color: var(--text-secondary);
	text-align: center;
}

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

.compare-table tr:hover td {
	background: rgba(212, 175, 55, 0.05);
}

.compare-row-label {
	font-weight: 700;
	color: var(--text-primary);
	min-width: 120px;
	width: 150px;
	font-size: 0.95rem;
}

.compare-casino-name {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--gold);
	font-weight: 700;
	text-align: center;
}

.compare-logo {
	width: 180px;
	height: 120px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.5rem;
	padding: 0.75rem;
	border: 1px solid var(--border);
}

.compare-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.compare-rating {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	min-height: 20px;
}

.compare-rating .star {
	width: 18px;
	height: 18px;
}

.compare-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

.compare-feature-tag {
	padding: 0.4rem 0.8rem;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 20px;
	font-size: 0.85rem;
	white-space: nowrap;
}

.compare-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: var(--exclusive);
	color: var(--bg-primary);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.compare-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.compare-exclusive-badge {
	display: inline-block;
	padding: 0.4rem 1rem;
	background: var(--exclusive);
	color: var(--bg-primary);
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.85rem;
}

/* Quick View Modal */
.quick-view-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9998;
	animation: fadeIn 0.3s ease;
}

.quick-view-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.quick-view-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(10px);
}

.quick-view-content {
	position: relative;
	z-index: 10;
	background: var(--bg-card);
	border: 2px solid var(--gold);
	border-radius: 24px;
	width: 90%;
	max-width: 600px;
	max-height: 85vh;
	overflow-y: auto;
	padding: 2.5rem;
	animation: slideUp 0.4s var(--transition-smooth);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.quick-view-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: transparent;
	border: 2px solid var(--border);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 1.8rem;
	color: var(--text-primary);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	z-index: 20;
}

.quick-view-close:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: rotate(90deg);
}

.quick-view-header {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--border);
}

.quick-view-logo {
	width: 120px;
	height: 80px;
	margin: 0 auto 1rem;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	border: 2px solid var(--gold);
}

.quick-view-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.quick-view-name {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--gold);
	margin-bottom: 0.75rem;
}

.quick-view-rating {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	margin-bottom: 1rem;
}

.quick-view-bonus {
	background: linear-gradient(
		135deg,
		rgba(212, 175, 55, 0.15) 0%,
		rgba(212, 175, 55, 0.05) 100%
	);
	border: 2px solid var(--gold);
	border-radius: 16px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.quick-view-bonus h3 {
	font-size: 1.1rem;
	color: var(--gold);
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.quick-view-bonus p {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.quick-view-description {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.quick-view-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	align-items: center;
	justify-content: center;
}

.quick-view-feature {
	padding: 0.5rem 1rem;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 20px;
	font-size: 0.9rem;
}

.quick-view-terms {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.5;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: rgba(212, 175, 55, 0.05);
	border-radius: 12px;
}

.quick-view-actions {
	display: flex;
	gap: 1rem;
}

.quick-view-btn {
	flex: 1;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.quick-view-btn-primary {
	background: var(--exclusive);
	color: var(--bg-primary);
	border: none;
}

.quick-view-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.quick-view-btn-secondary {
	background: transparent;
	color: var(--gold);
	border: 2px solid var(--gold);
}

.quick-view-btn-secondary:hover {
	background: rgba(212, 175, 55, 0.1);
	transform: translateY(-2px);
}

/* Custom scrollbar for Quick View Modal */
.quick-view-content::-webkit-scrollbar {
	width: 10px;
}

.quick-view-content::-webkit-scrollbar-track {
	background: var(--bg-secondary);
	border-radius: 10px;
	margin: 10px 0; /* Add margin so scrollbar doesn'
		t touch edges * /;
}

.quick-view-content::-webkit-scrollbar-thumb {
	background: var(--gold);
	border-radius: 10px;
	border: 2px solid var(--bg-card); /* Creates padding effect */
}

.quick-view-content::-webkit-scrollbar-thumb:hover {
	background: var(--gold-light);
}

/* Firefox scrollbar styling */
.quick-view-content {
	scrollbar-width: thin;
	scrollbar-color: var(--gold) var(--bg-secondary);
}

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

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

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

@keyframes chipIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Bonus Calculator */
.bonus-calculator-section {
	padding: 4rem 0;
	background: var(--bg-secondary);
}

.calculator-wrapper {
	background: var(--bg-card);
	border: 2px solid var(--gold);
	border-radius: 24px;
	padding: 3rem;
	max-width: 900px;
	margin: 0 auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.calculator-header {
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
}

.calculator-header h2 {
	font-family: var(--font-display);
	font-size: 2.5rem;
	color: var(--gold);
	margin-bottom: 0.75rem;
}

.calculator-header p {
	color: var(--text-secondary);
	font-size: 1.1rem;
}

.calculator-body {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.calculator-input-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.calculator-input-group label {
	color: var(--text-primary);
	font-weight: 600;
	font-size: 0.95rem;
}

.calculator-input-group input {
	padding: 0.85rem 1.25rem;
	background: var(--bg-primary);
	border: 2px solid var(--border);
	border-radius: 12px;
	color: var(--text-primary);
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.calculator-input-group input:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.calculator-input-group input::placeholder {
	color: var(--text-muted);
	font-weight: 400;
}

.calculator-btn {
	grid-column: 1 / -1;
	padding: 1rem 2rem;
	background: var(--exclusive);
	color: var(--bg-primary);
	border: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.calculator-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.calculator-results {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	padding: 2rem;
	background: var(--bg-secondary);
	border-radius: 16px;
	border: 1px solid var(--border);
}

.result-item {
	text-align: center;
	padding: 1.5rem;
	background: var(--bg-card);
	border-radius: 12px;
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.result-item:hover {
	border-color: var(--gold);
	transform: translateY(-2px);
}

.result-item.highlight {
	border: 2px solid var(--gold);
	background: rgba(212, 175, 55, 0.05);
}

.result-label {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.result-value {
	color: var(--gold);
	font-size: 1.8rem;
	font-weight: 700;
	font-family: var(--font-display);
}

/* Calculator Tabs */
.calculator-tabs {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid var(--border);
}

.calc-tab {
	padding: 1rem 2rem;
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	color: var(--text-secondary);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	bottom: -2px;
}

.calc-tab.active {
	color: var(--gold);
	border-bottom-color: var(--gold);
}

.calc-tab:hover {
	color: var(--text-primary);
}

.calculator-content {
	display: none;
}

.calculator-content.active {
	display: block;
}

.input-hint {
	color: var(--text-muted);
	font-size: 0.8rem;
	font-style: italic;
	margin-top: 0.25rem;
}

.calculator-tip {
	margin-top: 2rem;
	padding: 1.25rem;
	background: rgba(212, 175, 55, 0.1);
	border-left: 4px solid var(--gold);
	border-radius: 8px;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.calculator-tip strong {
	color: var(--gold);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Tablets & iPad (1024px and below) */
@media (max-width: 1024px) {
	.container {
		padding: 0 1.5rem;
	}

	.gambling-logo-width {
		width: auto;
	}

	/* Navigation */
	.nav-links {
		gap: 2rem;
		font-size: 0.9rem;
	}

	/* Hero */
	.hero {
		height: auto;
		min-height: 80vh;
		padding: 8rem 0 4rem;
	}

	.hero-title {
		font-size: clamp(2.5rem, 7vw, 5rem);
	}

	.stats-bar {
		gap: 2rem;
		padding: 1.5rem 2rem;
		flex-wrap: wrap;
	}

	.stat-number {
		font-size: 2rem;
	}

	/* Cards */
	.card-header {
		flex-wrap: wrap;
		justify-content: center;
	}

	.card-logo {
		width: 120px;
		height: 85px;
	}

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

	/* Compare Modal */
	.compare-modal-content {
		width: 95%;
		padding: 1.5rem;
	}

	.compare-logo {
		width: 140px;
		height: 95px;
	}

	/* Quick View */
	.quick-view-content {
		width: 95%;
		padding: 2rem;
	}

	/* Footer */
	.footer-top {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

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

	/* Exclusive Page */
	.exclusive-title {
		font-size: clamp(2.5rem, 7vw, 4rem);
	}

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

	/* Search/Review Pages */
	.top3-grid {
		grid-template-columns: 1fr;
	}

	.review-hero-content {
		flex-direction: column;
		text-align: center;
	}

	.pros-cons-grid {
		grid-template-columns: 1fr;
	}
}

/* Small Tablets & Large Phones (768px and below) */
@media (max-width: 768px) {
	.container {
		padding: 0 1rem;
	}

	/* Navigation */
	.nav-container {
		padding: 1rem 1.5rem;
	}

	.nav-links {
		display: none; /* Hide nav links on mobile - you may want a hamburger menu */
	}

	.theme-toggle {
		width: 40px;
		height: 40px;
	}

	/* Hero */
	.hero {
		padding: 6rem 0 3rem;
		min-height: 70vh;
	}

	.hero-title {
		font-size: clamp(2rem, 6vw, 3.5rem);
		gap: 0.25rem;
	}

	.hero-subtitle {
		font-size: 1rem;
		letter-spacing: 2px;
		margin-bottom: 2rem;
	}

	.stats-bar {
		flex-direction: column;
		gap: 1.5rem;
		padding: 1.5rem;
		margin-bottom: 2rem;
	}

	.stat-divider {
		width: 60px;
		height: 1px;
	}

	.stat-number {
		font-size: 2rem;
	}

	.hero-cta {
		padding: 1rem 2rem;
		font-size: 0.9rem;
	}

	/* Filter Section */
	.filter-section {
		position: relative;
		top: 0;
	}

	.filter-bar {
		flex-direction: column;
		gap: 0.75rem;
	}

	.filter-btn {
		width: 100%;
		justify-content: center;
		padding: 0.85rem 1.5rem;
	}

	.filter-right {
		margin-left: 0;
		width: 100%;
	}

	.sort-select {
		width: 100%;
	}

	/* Casino Cards */
	.casinos-section {
		padding: 2rem 0 4rem;
	}
	.features-grid {
		display: none;
	}

	/* Add a bit more margin to description since features are gone */
	.card-description {
		margin-bottom: 1.25rem;
	}

	.card-header {
		flex-direction: column;
		padding: 1.5rem;
		text-align: center;
		gap: 1rem;
	}

	.card-logo {
		width: 100px;
		height: 75px;
	}

	.card-title-group h3 {
		font-size: 1.5rem;
	}

	.card-actions {
		flex-direction: column;
		width: 100%;
		gap: 0.75rem;
	}

	.btn {
		width: 100%;
		padding: 0.85rem 1.25rem;
	}

	.card-body {
		padding: 1.5rem;
	}

	.bonus-highlight {
		padding: 1.5rem;
	}

	.bonus-title {
		font-size: 1.25rem;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.feature-item {
		padding: 0.75rem;
	}

	.feature-icon {
		font-size: 1.5rem;
	}

	/* Compare Banner */
	.compare-banner {
		padding: 1rem 0;
	}

	.compare-content {
		flex-direction: column;
		gap: 1rem;
	}

	.compare-left {
		flex-direction: column;
		gap: 1rem;
	}

	.compare-left h3 {
		font-size: 1.1rem;
	}

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

	.compare-right {
		width: 100%;
		justify-content: space-between;
	}

	.btn-compare {
		flex: 1;
	}

	/* Compare Modal */
	.compare-modal-content {
		width: 95%;
		max-width: 95%;
		max-height: 90vh;
		padding: 1.5rem 1rem;
		border-radius: 20px;
	}

	.compare-modal-title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
		padding-right: 3rem;
	}

	.compare-modal-close {
		width: 40px;
		height: 40px;
		font-size: 1.8rem;
		top: 1rem;
		right: 1rem;
	}

	.compare-table-container {
		overflow-y: auto;
		max-height: calc(90vh - 120px);
	}

	.compare-table {
		display: block;
		width: 100%;
	}

	/* Headers - Show casino logos/names */
	.compare-table thead {
		display: block;
		margin-bottom: 2rem;
	}

	.compare-table thead tr {
		display: grid;
		grid-template-columns: repeat(2, 1fr); /* Always 2 columns */
		gap: 1rem;
		width: 100%;
	}

	.compare-table thead th {
		position: static;
		background: transparent;
		border: none;
		padding: 0;
	}

	.compare-table thead th:first-child {
		display: none; /* Hide "Feature" label */
	}

	/* Only show first 2 casinos on mobile */
	.compare-table thead th:nth-child(n + 4) {
		display: none;
	}

	.compare-casino-header {
		background: var(--bg-secondary);
		border: 2px solid var(--border);
		border-radius: 16px;
		padding: 1.5rem;
		gap: 0.75rem;
	}

	.compare-logo {
		width: 100px;
		height: 70px;
	}

	.compare-casino-name {
		font-size: 1.2rem;
	}

	/* Body rows */
	.compare-table tbody {
		display: block;
		width: 100%;
	}

	.compare-table tbody tr {
		display: grid;
		grid-template-columns: 100%; /* Full width for row */
		gap: 0.75rem;
		margin-bottom: 2rem;
		padding-bottom: 2rem;
		border-bottom: 2px solid var(--border);
		width: 100%;
	}

	.compare-table tbody tr:last-child {
		border-bottom: none;
		margin-bottom: 0;
	}

	/* Row label */
	.compare-row-label {
		display: block;
		width: 100%;
		text-align: center;
		font-size: 1rem;
		font-weight: 700;
		padding: 0.75rem;
		margin-bottom: 0.5rem;
		background: rgba(212, 175, 55, 0.1);
		border-radius: 8px;
		color: var(--gold);
		grid-column: 1 / -1;
	}

	/* Casino data cells - side by side */
	.compare-table td:not(.compare-row-label) {
		background: var(--bg-secondary);
		border: 1px solid var(--border);
		border-radius: 12px;
		padding: 1rem;
	}

	/* Create 2-column grid after the label */
	.compare-table tbody tr {
		display: grid;
		grid-template-columns: 1fr 1fr; /* 2 columns */
		grid-auto-rows: auto;
		gap: 0.75rem;
	}

	/* Label spans both columns */
	.compare-table tbody tr .compare-row-label {
		grid-column: 1 / -1;
	}

	/* Hide 3rd+ casinos on mobile */
	.compare-table tbody tr td:nth-child(n + 4):not(.compare-row-label) {
		display: none;
	}

	.compare-table td {
		border-bottom: none;
	}

	.compare-cell-content {
		text-align: center;
	}

	.compare-terms {
		text-align: left;
		font-size: 0.75rem;
		padding: 0;
		line-height: 1.4;
	}

	.compare-cta {
		width: 100%;
		justify-content: center;
		padding: 0.75rem 1.25rem;
		font-size: 0.85rem;
	}

	.compare-rating .star {
		width: 16px;
		height: 16px;
	}

	/* Quick View Modal */
	.quick-view-content {
		padding: 2rem 1.5rem;
		width: 95%;
	}

	.quick-view-name {
		font-size: 1.75rem;
	}

	.quick-view-bonus h3 {
		font-size: 1rem;
	}

	.quick-view-bonus p {
		font-size: 1.2rem;
	}

	.quick-view-actions {
		flex-direction: column;
	}

	/* Exclusive Page */
	.exclusive-hero {
		padding: 6rem 0 4rem;
	}

	.exclusive-label {
		margin: 4rem 0 1.5rem;
		font-size: 0.8rem;
		padding: 0.4rem 1.25rem;
	}

	.exclusive-title {
		font-size: clamp(2rem, 6vw, 3rem);
	}

	.exclusive-subtitle {
		font-size: 1.1rem;
	}

	.exclusive-stats {
		flex-direction: column;
		padding: 1.5rem;
		gap: 1rem;
	}

	.exclusive-section {
		padding: 3rem 0;
	}

	.exclusive-card-header {
		padding: 1.5rem;
	}

	.exclusive-card-logo {
		width: 160px;
		height: 105px;
	}

	.exclusive-card-header h3 {
		font-size: 1.75rem;
	}

	.exclusive-card-body {
		padding: 1.5rem;
	}

	.bonus-text {
		font-size: 1.25rem;
	}

	.exclusive-card-footer {
		flex-direction: column;
		padding: 1.5rem;
	}

	.why-exclusive,
	.exclusive-cta {
		padding: 3rem 0;
	}

	.section-heading {
		font-size: 2.5rem;
	}

	/* Search Page */
	.search-hero {
		padding-top: 6rem;
		padding-bottom: 1.5rem;
	}

	.search-hero h1 {
		font-size: 2.5rem;
		padding-top: 1rem;
	}

	.search-container {
		padding-bottom: 0;
		margin-bottom: 1.5rem;
	}

	.search-input {
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
	.top3-section {
		padding: 3rem 0;
	}

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

	/* Review Page */
	.review-hero {
		padding-top: 4rem;
	}

	.review-hero-content {
		flex-direction: column;
		text-align: center;
		align-items: center;
		gap: 1rem;
	}

	.review-content {
		padding-top: 1rem;
	}

	.review-logo-section {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.review-logo-container {
		width: 200px; /* Increased from 140px */
		height: 135px; /* Increased from 95px */
		margin-bottom: 1.5rem;
	}

	.review-title-group {
		text-align: center;
		width: 100%;
	}

	.review-title-group h1 {
		font-size: 2.25rem;
		margin-bottom: 1rem; /* Reduced from default */
	}

	.review-rating {
		justify-content: center;
		margin-bottom: 2rem; /* Reduced from 3rem or more */
	}

	.review-cta-btn {
		padding: 1rem 1.5rem;
		font-size: 0.95rem;
		white-space: normal; /* Allow text to wrap */
		text-align: center;
		line-height: 1.4;
		max-width: 100%; /* Don't exceed container */
		width: auto;
		display: inline-flex;
	}

	.review-final-cta .review-cta-btn {
		max-width: 90%; /* Prevent overflow */
		margin: 0 auto;
	}

	.review-section {
		padding: 2rem 1.5rem;
	}

	.review-section h2 {
		font-size: 2rem;
	}

	.bonus-cards {
		grid-template-columns: 1fr;
	}

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

	/* Footer */
	.footer {
		padding: 3rem 0 1.5rem;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-bottom: 2rem;
		padding-bottom: 2rem;
	}

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

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

	.footer-links {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.footer-col a {
		font-size: 0.95rem;
	}

	.gambling-logos {
		justify-content: center;
		gap: 0.75rem;
	}

	.gambling-logo {
		padding: 0.75rem 1.25rem;
		font-size: 0.85rem;
	}
	.gambling-logo-width {
		width: auto;
	}

	.footer-bottom {
		font-size: 0.85rem;
		padding: 0 1rem;
	}

	/* Calculator */
	.calculator-wrapper {
		padding: 2rem 1.5rem;
	}

	.calculator-header {
		padding-right: 45px;
	}

	.calculator-header h2 {
		font-size: 2rem;
	}

	.calculator-header p {
		font-size: 1rem;
	}

	.calculator-tabs {
		flex-direction: column;
		gap: 0;
		border-bottom: none;
	}

	.calc-tab {
		border-bottom: 2px solid var(--border);
		padding: 0.75rem 1.5rem;
		text-align: left;
	}

	.calc-tab.active {
		background: rgba(212, 175, 55, 0.1);
	}

	.calculator-body {
		grid-template-columns: 1fr;
	}

	.calculator-results {
		grid-template-columns: 1fr;
		padding: 1.5rem;
	}
}

/* Standard Phones (480px and below) - iPhone SE, smaller Android */
@media (max-width: 480px) {
	.container {
		padding: 0 1rem;
	}

	/* Navigation */
	.nav-container {
		padding: 0.85rem 1rem;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0.5rem;
	}

	.nav-logo {
		font-size: 1.1rem;
		gap: 0.5rem;
		flex: 1;
		min-width: 0; /* Allow text to shrink */
	}

	.logo-text {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 180px; /* Limit text width on small screens */
	}

	.site-logo {
		height: 1.5rem;
	}

	.logo-icon {
		font-size: 1.5rem;
	}

	.theme-toggle {
		width: 36px;
		height: 36px;
	}

	.theme-icon {
		font-size: 1rem;
	}

	/* Hero */
	.hero {
		padding: 5rem 0 2rem;
	}

	.hero-title {
		font-size: clamp(1.75rem, 5vw, 2.5rem);
	}

	.hero-subtitle {
		font-size: 0.9rem;
		letter-spacing: 1.5px;
	}

	.stats-bar {
		padding: 1.25rem;
		gap: 1.25rem;
	}

	.stat-number {
		font-size: 1.75rem;
	}

	.stat-label {
		font-size: 0.75rem;
	}

	.hero-cta {
		padding: 0.9rem 1.75rem;
		font-size: 0.85rem;
	}

	/* Filter */
	.filter-section {
		padding: 1.5rem 0;
	}

	.filter-btn {
		padding: 0.75rem 1.25rem;
		font-size: 0.85rem;
	}

	/* Cards */
	.casino-card {
		border-radius: 16px;
	}

	.card-header {
		padding: 1.25rem;
	}

	.card-logo {
		width: 90px;
		height: 65px;
	}

	.card-title-group h3 {
		font-size: 1.35rem;
	}

	.card-rating {
		font-size: 1rem;
	}

	.star {
		width: 18px;
		height: 18px;
	}

	.btn {
		padding: 0.75rem 1rem;
		font-size: 0.9rem;
	}

	.card-body {
		padding: 1.25rem;
	}

	.bonus-highlight {
		padding: 1.25rem;
	}

	.bonus-type {
		font-size: 0.75rem;
	}

	.bonus-title {
		font-size: 1.1rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.feature-item {
		padding: 0.65rem;
	}

	.card-description {
		font-size: 0.95rem;
	}

	/* Compare Banner */
	.compare-banner {
		padding: 0.85rem 0;
	}

	.compare-left h3 {
		font-size: 1rem;
	}

	.compare-chip {
		font-size: 0.85rem;
		padding: 0.4rem 0.85rem;
	}

	.chip-remove {
		font-size: 1.25rem;
	}

	.compare-close-btn {
		width: 36px;
		height: 36px;
		font-size: 1.5rem;
	}

	.btn-compare {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}

	/* Compare Modal */
	.compare-modal-content {
		padding: 1.25rem 0.85rem;
	}

	/* Stack all casinos vertically on small screens */
	.compare-table tbody tr:has(.compare-row-label):has(td:nth-child(3)) {
		grid-template-columns: 1fr;
	}

	.compare-table thead tr {
		grid-template-columns: 1fr;
	}

	.compare-logo {
		width: 90px;
		height: 60px;
	}

	.compare-casino-name {
		font-size: 1.1rem;
	}

	/* Quick View */
	.quick-view-content {
		padding: 1.75rem 1.25rem;
	}

	.quick-view-logo {
		width: 100px;
		height: 70px;
	}

	.quick-view-name {
		font-size: 1.5rem;
	}

	.quick-view-bonus {
		padding: 1.25rem;
	}

	.quick-view-bonus h3 {
		font-size: 0.9rem;
	}

	.quick-view-bonus p {
		font-size: 1.1rem;
	}

	.quick-view-feature {
		font-size: 0.85rem;
		padding: 0.4rem 0.85rem;
	}

	.quick-view-btn {
		padding: 0.85rem 1.5rem;
		font-size: 0.9rem;
	}

	/* Exclusive Page */
	.exclusive-hero {
		padding: 5rem 0 3rem;
	}

	.exclusive-label {
		font-size: 0.75rem;
		padding: 0.35rem 1rem;
		margin: 3rem 0 1rem;
	}

	.exclusive-title {
		font-size: clamp(1.75rem, 5vw, 2.5rem);
	}

	.exclusive-subtitle {
		font-size: 1rem;
	}

	.exclusive-stat {
		font-size: 0.9rem;
	}

	.stat-icon {
		font-size: 1.5rem;
	}

	.exclusive-card-badge {
		top: 1rem;
		right: 1rem;
		padding: 0.4rem 1rem;
		font-size: 0.7rem;
	}

	.exclusive-card-logo {
		width: 140px;
		height: 90px;
	}

	.exclusive-card-header h3 {
		font-size: 1.5rem;
	}

	.bonus-text {
		font-size: 1.15rem;
	}

	.exclusive-description {
		font-size: 0.95rem;
	}

	.feature-tag {
		font-size: 0.85rem;
		padding: 0.4rem 0.85rem;
	}

	.btn-exclusive-secondary,
	.btn-exclusive-primary {
		padding: 0.85rem 1.5rem;
		font-size: 0.9rem;
	}

	.section-heading {
		font-size: 2rem;
	}

	.benefit-icon {
		font-size: 2.5rem;
	}

	.benefit-card h3 {
		font-size: 1.35rem;
	}

	.benefit-card p {
		font-size: 0.95rem;
	}

	.cta-content h2 {
		font-size: 2rem;
	}

	.cta-content p {
		font-size: 1.1rem;
	}

	.cta-btn-large {
		padding: 1.25rem 2.5rem;
		font-size: 1.1rem;
	}

	/* Search Page */
	.search-hero h1 {
		font-size: 2rem;
		padding-top: 1.5rem;
	}

	.search-hero p {
		font-size: 1.05rem;
	}

	.search-input {
		font-size: 0.95rem;
	}

	.top3-card {
		padding: 2rem 1.5rem;
	}

	.top3-card h3 {
		font-size: 1.75rem;
	}

	.section-title {
		font-size: 2rem;
	}

	/* Review Page */
	.review-logo-container {
		width: 180px;
		height: 120px;
	}

	.review-title-group h1 {
		font-size: 2rem;
		margin-bottom: 0.5rem;
	}

	.review-rating {
		margin-bottom: 1.5rem;
	}

	.review-rating .star {
		width: 24px;
		height: 24px;
	}

	.rating-number {
		font-size: 1.35rem;
	}

	.review-cta-btn {
		padding: 0.9rem 1.25rem;
		font-size: 0.9rem;
	}

	.review-final-cta {
		padding: 2.5rem 1rem; /* More horizontal padding */
	}

	.review-section {
		padding: 1.75rem 1.25rem;
		border-radius: 16px;
	}

	.section-icon {
		font-size: 2.5rem;
	}

	.review-section h2 {
		font-size: 1.75rem;
	}

	.review-section p {
		font-size: 1rem;
	}

	.pros-box,
	.cons-box {
		padding: 1.75rem;
	}

	.pros-box h3,
	.cons-box h3 {
		font-size: 1.5rem;
	}

	.pros-box li,
	.cons-box li {
		font-size: 0.95rem;
	}

	.payment-badge {
		padding: 0.65rem 1.25rem;
		font-size: 0.85rem;
	}

	.review-final-cta {
		padding: 3rem 1.5rem;
	}

	.review-final-cta h2 {
		font-size: 2rem;
	}

	/* Footer */
	.footer-logo {
		font-size: 1.35rem;
	}

	.footer-col h4 {
		font-size: 1rem;
	}

	.footer-col a {
		font-size: 0.9rem;
	}

	.gambling-logo {
		padding: 0.65rem 1.25rem;
		font-size: 0.85rem;
	}

	.gambling-logo-width {
		width: auto;
	}

	.footer-bottom {
		font-size: 0.85rem;
	}

	/* Calculator */
	.calculator-wrapper {
		padding: 1.75rem 1.25rem;
	}
	.calculator-header {
		padding-right: 40px;
	}

	.calculator-header h2 {
		font-size: 1.75rem;
	}

	.calculator-header p {
		font-size: 0.95rem;
	}

	.calc-tab {
		font-size: 0.9rem;
	}

	.calculator-input-group label {
		font-size: 0.9rem;
	}

	.calculator-input-group input {
		padding: 0.75rem 1rem;
		font-size: 1rem;
	}

	.result-value {
		font-size: 1.5rem;
	}

	.calculator-tip {
		padding: 1rem;
		font-size: 0.9rem;
	}

	.hamburger {
		flex-shrink: 0; /* Don't let hamburger shrink */
		margin-left: 0.5rem;
		z-index: 1002; /* Above everything */
	}
}

/* Extra Small Phones (375px and below) - iPhone SE 1st gen, small Android */
@media (max-width: 375px) {
	.hero-title {
		font-size: clamp(1.5rem, 4.5vw, 2rem);
	}

	.review-cta-btn {
		font-size: 0.85rem;
		padding: 0.85rem 1rem;
	}

	.hero-subtitle {
		font-size: 0.85rem;
	}

	.stat-number {
		font-size: 1.5rem;
	}

	.card-title-group h3 {
		font-size: 1.2rem;
	}

	.bonus-title {
		font-size: 1rem;
	}

	.exclusive-title {
		font-size: clamp(1.5rem, 4.5vw, 2rem);
	}

	.section-heading {
		font-size: 1.75rem;
	}

	.search-hero h1,
	.review-title-group h1 {
		font-size: 1.75rem;
	}

	.calculator-header h2 {
		font-size: 1.5rem;
	}

	.calculator-header {
		padding-right: 38px;
	}
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.hamburger-line {
	width: 25px;
	height: 3px;
	background: var(--text-primary);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translateY(11px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translateY(-11px);
}

/* Mobile Menu - COMPLETELY REWRITTEN */
.mobile-menu {
	position: fixed;
	top: 73px;
	left: 0;
	width: 100%;
	height: calc(100vh - 73px);
	background: var(--bg-card);
	z-index: 999;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	visibility: hidden;
}

.mobile-menu.active {
	transform: translateX(0);
	visibility: visible;
}

.mobile-menu-links {
	list-style: none;
	padding: 2rem 0;
	margin: 0;
}

.mobile-menu-links li {
	border-bottom: 1px solid var(--border);
}

.mobile-nav-link {
	display: block;
	padding: 1.25rem 2rem;
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.mobile-nav-link:hover {
	background: rgba(212, 175, 55, 0.1);
	color: var(--gold);
	padding-left: 2.5rem;
}

.mobile-theme-item {
	padding: 1.25rem 2rem;
	border-bottom: none;
}

.mobile-theme-toggle {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
	background: transparent;
	border: 2px solid var(--border);
	border-radius: 50px;
	padding: 1rem 1.5rem;
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mobile-theme-toggle:hover {
	border-color: var(--gold);
	background: rgba(212, 175, 55, 0.1);
}

.mobile-theme-toggle .theme-icon {
	font-size: 1.5rem;
}

.theme-label {
	flex: 1;
	text-align: left;
}

.light-theme .theme-label {
	color: var(--gold);
}

/* Desktop theme toggle */
.desktop-theme-toggle {
	display: flex;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
	.nav-links {
		display: none !important;
	}

	.desktop-theme-toggle {
		display: none !important;
	}

	.hamburger {
		display: flex;
	}

	body.menu-open {
		overflow: hidden;
	}
}

@media (max-width: 480px) {
	.mobile-menu {
		top: 57px; /* Adjusted for smaller nav height */
		height: calc(100vh - 57px);
	}

	.mobile-nav-link {
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}

	.mobile-theme-item {
		padding: 1rem 1.5rem;
	}
}

@media (max-width: 375px) {
	.mobile-menu {
		top: 54px;
		height: calc(100vh - 54px);
	}
}

/* Bookmark Modal */
.bookmark-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 10000;
	animation: fadeIn 0.3s ease;
}

.bookmark-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bookmark-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(5px);
}

.bookmark-modal-content {
	position: relative;
	background: var(--bg-card);
	border: 2px solid var(--gold);
	border-radius: 24px;
	padding: 3rem 2rem;
	max-width: 450px;
	width: 90%;
	text-align: center;
	animation: slideUp 0.4s ease;
	z-index: 10;
}

.bookmark-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: transparent;
	border: 2px solid var(--border);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 1.8rem;
	color: var(--text-primary);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.bookmark-close:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: rotate(90deg);
}

.bookmark-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
}

.bookmark-modal-content h3 {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--gold);
	margin-bottom: 1rem;
}

.bookmark-modal-content p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.bookmark-actions {
	display: flex;
	gap: 1rem;
	flex-direction: column;
}

.btn-bookmark-yes,
.btn-bookmark-no {
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.btn-bookmark-yes {
	background: var(--exclusive);
	color: var(--bg-primary);
}

.btn-bookmark-yes:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-bookmark-no {
	background: transparent;
	border: 2px solid var(--border);
	color: var(--text-primary);
}

.btn-bookmark-no:hover {
	border-color: var(--gold);
	background: rgba(212, 175, 55, 0.1);
}

@media (max-width: 480px) {
	.bookmark-modal-content {
		padding: 2.5rem 1.5rem;
	}

	.bookmark-icon {
		font-size: 3rem;
	}

	.bookmark-modal-content h3 {
		font-size: 1.75rem;
	}

	.bookmark-modal-content p {
		font-size: 1rem;
	}
}

/* ==========================================
   LIGHT MODE - BLUE & CORAL THEME
   ========================================== */

.light-theme {
	/* Modern Blue & Coral Palette */
	--bg-primary: #f8fafc;
	--bg-secondary: #f1f5f9;
	--bg-card: #ffffff;
	--bg-card-hover: #f9fafb;

	--text-primary: #0f172a;
	--text-secondary: #475569;
	--text-muted: #94a3b8;

	/* Primary: Deep Ocean Blue */
	--gold: #0ea5e9;
	--gold-light: #38bdf8;
	--gold-dark: #0284c7;

	/* Accent: Coral/Salmon */
	--accent-coral: #fb7185;
	--accent-coral-light: #fda4af;

	/* Exclusive gradient - Blue to Coral */
	--exclusive: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);

	/* Softer borders */
	--border: rgba(0, 0, 0, 0.06);
	--border-hover: rgba(14, 165, 233, 0.3);
}

/* Navigation Light Mode */
.light-theme .nav {
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid rgba(14, 165, 233, 0.15);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.light-theme .nav.scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Hero Light Mode */
.light-theme .hero-background {
	background: radial-gradient(
			circle at 20% 50%,
			rgba(14, 165, 233, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 50%,
			rgba(251, 113, 133, 0.06) 0%,
			transparent 50%
		),
		linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.light-theme .hero-overlay {
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(14, 165, 233, 0.02) 2px,
		rgba(14, 165, 233, 0.02) 4px
	);
}

.light-theme .stats-bar {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(14, 165, 233, 0.2);
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

.light-theme .stat-number {
	color: var(--gold);
	text-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

/* Cards Light Mode */
.light-theme .casino-card {
	background: var(--bg-card);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(14, 165, 233, 0.1);
}

.light-theme .casino-card:hover {
	box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15),
		0 4px 16px rgba(0, 0, 0, 0.08);
	border-color: var(--gold);
}

.light-theme .card-header {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(248, 250, 252, 1) 100%
	);
}

.light-theme .bonus-highlight {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.08) 0%,
		rgba(56, 189, 248, 0.04) 100%
	);
	border: 2px solid rgba(14, 165, 233, 0.2);
}

.light-theme .feature-item {
	background: rgba(14, 165, 233, 0.04);
	border: 1px solid rgba(14, 165, 233, 0.1);
}

.light-theme .feature-item:hover {
	background: rgba(14, 165, 233, 0.1);
	border-color: var(--gold);
}

/* Exclusive Badge - Coral Accent */
.light-theme .casino-card.exclusive {
	border: 3px solid var(--accent-coral);
	box-shadow: 0 0 30px rgba(251, 113, 133, 0.2),
		0 0 60px rgba(251, 113, 133, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
}

.light-theme .casino-card.exclusive:hover {
	box-shadow: 0 0 50px rgba(251, 113, 133, 0.3),
		0 0 100px rgba(251, 113, 133, 0.15), 0 20px 40px rgba(0, 0, 0, 0.1);
}

.light-theme .exclusive-badge {
	background: linear-gradient(
		135deg,
		var(--accent-coral) 0%,
		var(--accent-coral-light) 100%
	);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(251, 113, 133, 0.4);
}

/* Buttons Light Mode */
.light-theme .btn-primary,
.light-theme .hero-cta {
	background: var(--exclusive);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.light-theme .btn-primary:hover,
.light-theme .hero-cta:hover {
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.light-theme .btn-secondary {
	border: 2px solid rgba(14, 165, 233, 0.3);
	background: #ffffff;
	color: var(--gold);
}

.light-theme .btn-secondary:hover {
	border-color: var(--gold);
	background: rgba(14, 165, 233, 0.05);
}

/* Compare Banner */
.light-theme .compare-banner {
	background: #ffffff;
	border-top: 2px solid var(--gold);
	box-shadow: 0 -4px 20px rgba(14, 165, 233, 0.1);
}

.light-theme .compare-chip {
	background: rgba(14, 165, 233, 0.1);
	border: 1px solid var(--gold);
}

.light-theme .chip-remove {
	color: var(--accent-coral);
}

.light-theme .chip-remove:hover {
	color: var(--accent-coral-light);
}

/* Modals */
.light-theme .compare-modal-overlay,
.light-theme .quick-view-overlay,
.light-theme .calculator-help-overlay,
.light-theme .bookmark-modal-overlay {
	background: rgba(15, 23, 42, 0.5);
	backdrop-filter: blur(8px);
}

.light-theme .compare-modal-content,
.light-theme .quick-view-content,
.light-theme .calculator-help-content,
.light-theme .bookmark-modal-content {
	background: #ffffff;
	border: 2px solid var(--gold);
	box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
}

/* Filter Section */
.light-theme .filter-section {
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid rgba(14, 165, 233, 0.15);
}

.light-theme .filter-btn {
	border: 1px solid rgba(14, 165, 233, 0.2);
	background: #ffffff;
}

.light-theme .filter-btn:hover {
	background: rgba(14, 165, 233, 0.05);
	border-color: var(--gold);
}

.light-theme .filter-btn.active {
	background: var(--exclusive);
	color: #ffffff;
	border-color: transparent;
}

/* Footer */
.light-theme .footer {
	background: #f1f5f9;
	border-top: 1px solid rgba(14, 165, 233, 0.15);
}

.light-theme .gambling-logo {
	background: #ffffff;
	border: 1px solid rgba(14, 165, 233, 0.15);
}

.light-theme .gambling-logo:hover {
	background: rgba(14, 165, 233, 0.05);
	border-color: var(--gold);
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

/* Search Page */
.light-theme .search-hero {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.light-theme .search-input {
	background: #ffffff;
	border: 2px solid rgba(14, 165, 233, 0.2);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.light-theme .search-input:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.light-theme .search-results {
	background: #ffffff;
	border: 1px solid rgba(14, 165, 233, 0.15);
	box-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
}

.light-theme .search-result-item:hover {
	background: rgba(14, 165, 233, 0.05);
}

.light-theme .top3-card {
	background: #ffffff;
	border: 2px solid rgba(14, 165, 233, 0.15);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.light-theme .top3-card:hover {
	box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15);
	border-color: var(--gold);
}

.light-theme .top3-rank {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.light-theme .top3-badge {
	background: linear-gradient(
		135deg,
		var(--accent-coral) 0%,
		var(--accent-coral-light) 100%
	);
}

/* Review Page */
.light-theme .review-hero {
	background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
}

.light-theme .review-section {
	background: #ffffff;
	border: 1px solid rgba(14, 165, 233, 0.1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.light-theme .bonus-card {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.08) 0%,
		rgba(56, 189, 248, 0.04) 100%
	);
	border: 2px solid rgba(14, 165, 233, 0.2);
}

.light-theme .payment-badge {
	background: rgba(14, 165, 233, 0.08);
	border: 1px solid var(--gold);
}

/* Exclusive Page */
.light-theme .exclusive-hero {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
}

.light-theme .exclusive-hero-bg {
	background: radial-gradient(
			circle at 20% 50%,
			rgba(14, 165, 233, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 50%,
			rgba(251, 113, 133, 0.08) 0%,
			transparent 50%
		);
}

.light-theme .exclusive-label {
	background: rgba(14, 165, 233, 0.12);
	border: 2px solid var(--gold);
	color: var(--gold);
}

.light-theme .exclusive-stats {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(14, 165, 233, 0.2);
}

.light-theme .exclusive-casino-card {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	border: 3px solid var(--accent-coral);
	box-shadow: 0 0 30px rgba(251, 113, 133, 0.15),
		0 10px 30px rgba(0, 0, 0, 0.06);
}

.light-theme .exclusive-casino-card:hover {
	box-shadow: 0 0 50px rgba(251, 113, 133, 0.25), 0 20px 50px rgba(0, 0, 0, 0.1);
	border-color: var(--accent-coral-light);
}

.light-theme .exclusive-card-badge {
	background: var(--accent-coral);
	color: #ffffff;
}

.light-theme .exclusive-card-logo {
	border: 3px solid var(--gold);
	background: #ffffff;
}

.light-theme .exclusive-card-logo:hover {
	box-shadow: 0 0 25px rgba(14, 165, 233, 0.3),
		0 0 50px rgba(14, 165, 233, 0.15);
	border-color: var(--gold-light);
}

.light-theme .exclusive-bonus {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.1) 0%,
		rgba(56, 189, 248, 0.05) 100%
	);
	border: 2px solid var(--gold);
}

.light-theme .feature-tag {
	background: rgba(14, 165, 233, 0.08);
	border: 1px solid rgba(14, 165, 233, 0.2);
}

/* Calculator */
.light-theme .calculator-hero::before {
	background: radial-gradient(
		circle,
		rgba(14, 165, 233, 0.08) 0%,
		rgba(56, 189, 248, 0.04) 40%,
		transparent 70%
	);
}

.light-theme .calc-feature {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.1) 0%,
		rgba(56, 189, 248, 0.05) 100%
	);
	border: 2px solid rgba(14, 165, 233, 0.25);
}

.light-theme .calc-feature:hover {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.15) 0%,
		rgba(56, 189, 248, 0.08) 100%
	);
	border-color: var(--gold);
}

.light-theme .calculator-wrapper {
	background: #ffffff;
	border: 2px solid var(--gold);
	box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.light-theme .calculator-input-group input {
	background: #f8fafc;
	border: 2px solid rgba(14, 165, 233, 0.15);
}

.light-theme .calculator-input-group input:focus {
	background: #ffffff;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.light-theme .result-item.highlight {
	border: 2px solid var(--gold);
	background: rgba(14, 165, 233, 0.05);
}

.light-theme .calculator-tip {
	background: rgba(14, 165, 233, 0.08);
	border-left: 4px solid var(--gold);
}

.light-theme .calculator-help-btn {
	background: rgba(14, 165, 233, 0.12);
	border: 2px solid var(--gold);
	color: var(--gold);
}

.light-theme .calculator-help-btn:hover {
	background: rgba(14, 165, 233, 0.2);
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

.light-theme .help-example {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.08) 0%,
		rgba(56, 189, 248, 0.04) 100%
	);
	border: 2px solid var(--gold);
}

/* Legal Pages */
.light-theme .legal-intro {
	background: rgba(14, 165, 233, 0.05);
	border-left: 4px solid var(--gold);
}

.light-theme .legal-highlight {
	background: #ffffff;
	border: 2px solid var(--gold);
}

/* Mobile Menu */
.light-theme .mobile-nav-link:hover {
	background: rgba(14, 165, 233, 0.08);
	color: var(--gold);
}

.light-theme .mobile-theme-toggle:hover {
	background: rgba(14, 165, 233, 0.08);
	border-color: var(--gold);
}

/* Scrollbar */
.light-theme ::-webkit-scrollbar-thumb {
	background: var(--gold);
}

.light-theme ::-webkit-scrollbar-thumb:hover {
	background: var(--gold-light);
}

/* Stars */
.light-theme .star.filled {
	fill: var(--gold);
}

/* Accent Colors for CTAs */
.light-theme .review-cta-btn,
.light-theme .cta-btn-large,
.light-theme .btn-bookmark-yes {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.light-theme .review-cta-btn:hover,
.light-theme .cta-btn-large:hover,
.light-theme .btn-bookmark-yes:hover {
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* ==========================================
   LIGHT MODE - RED GLOWS & ACCENTS
   ========================================== */

/* Add to your existing light-theme styles */

/* Red glow color */
.light-theme {
	/* ... existing variables ... */
	--glow-color: #dc2626; /* Dark red for glows */
}

/* Exclusive Badge - Red glow instead of gold */
.light-theme .casino-card.exclusive {
	border: 3px solid var(--accent-coral);
	box-shadow: 0 0 30px rgba(220, 38, 38, 0.2), 0 0 60px rgba(220, 38, 38, 0.1),
		0 4px 20px rgba(0, 0, 0, 0.06);
}

.light-theme .casino-card.exclusive:hover {
	box-shadow: 0 0 50px rgba(220, 38, 38, 0.3), 0 0 100px rgba(220, 38, 38, 0.15),
		0 20px 40px rgba(0, 0, 0, 0.1);
}

.light-theme .exclusive-badge {
	background: linear-gradient(
		135deg,
		var(--accent-coral) 0%,
		var(--accent-coral-light) 100%
	);
	box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

@keyframes exclusiveGlow {
	0%,
	100% {
		box-shadow: 0 0 40px rgba(220, 38, 38, 0.2), 0 0 80px rgba(220, 38, 38, 0.1),
			0 4px 20px rgba(0, 0, 0, 0.06);
	}
	50% {
		box-shadow: 0 0 60px rgba(220, 38, 38, 0.35),
			0 0 120px rgba(220, 38, 38, 0.15), 0 4px 20px rgba(0, 0, 0, 0.06);
	}
}

/* Button glows - Red instead of gold */
.light-theme .btn-primary:hover,
.light-theme .hero-cta:hover {
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.light-theme .review-cta-btn:hover,
.light-theme .cta-btn-large:hover,
.light-theme .btn-bookmark-yes:hover {
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.light-theme .btn-exclusive-primary:hover {
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.light-theme .compare-cta:hover {
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* Exclusive card logo glow - Red */
.light-theme .exclusive-card-logo:hover {
	box-shadow: 0 0 25px rgba(220, 38, 38, 0.3), 0 0 50px rgba(220, 38, 38, 0.15),
		0 10px 30px rgba(0, 0, 0, 0.1);
	border-color: var(--accent-coral-light);
}

/* Top 3 rank badge - Keep blue, but add red glow on exclusive */
.light-theme .top3-badge {
	background: linear-gradient(
		135deg,
		var(--accent-coral) 0%,
		var(--accent-coral-light) 100%
	);
	box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Stats bar - Blue glow (keep as is) */
.light-theme .stats-bar {
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
}

/* Gambling logos hover - Blue (not red) */
.light-theme .gambling-logo:hover {
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

/* Calculator help button hover - Blue */
.light-theme .calculator-help-btn:hover {
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

/* Cards hover - Blue glow */
.light-theme .casino-card:hover {
	box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15),
		0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Top 3 cards hover - Blue glow */
.light-theme .top3-card:hover {
	box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15);
}

/* Exclusive casino cards - RED GLOW */
.light-theme .exclusive-casino-card {
	box-shadow: 0 0 30px rgba(220, 38, 38, 0.15), 0 10px 30px rgba(0, 0, 0, 0.06);
}

.light-theme .exclusive-casino-card:hover {
	box-shadow: 0 0 50px rgba(220, 38, 38, 0.25), 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Theme Toggle Icon Colors */
.theme-toggle .theme-icon {
	font-size: 1.2rem;
	color: var(--text-primary); /* Makes it visible in both modes */
}

/* Mobile theme toggle */
.mobile-theme-toggle .theme-icon {
	font-size: 1.5rem;
	color: var(--text-primary);
}

/* Specific colors for each mode */
body:not(.light-theme) .theme-icon {
	color: #fbbf24; /* Bright yellow/gold sun in dark mode */
}

.light-theme .theme-icon {
	color: #0ea5e9; /* Blue moon in light mode */
}

/* ==========================================
   EXCLUSIVE CARD GLOWS - DARK VS LIGHT MODE
   ========================================== */

/* DARK MODE - Gold Glow (default) */
.casino-card.exclusive {
	border: 3px solid var(--gold);
	position: relative;
	box-shadow: 0 0 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.3),
		0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 60px rgba(212, 175, 55, 0.05);
	animation: exclusiveGlowDark 3s ease-in-out infinite;
	transform: scale(1.02);
}

@keyframes exclusiveGlowDark {
	0%,
	100% {
		box-shadow: 0 0 40px rgba(212, 175, 55, 0.5),
			0 0 80px rgba(212, 175, 55, 0.3), 0 4px 20px rgba(0, 0, 0, 0.3),
			inset 0 0 60px rgba(212, 175, 55, 0.05);
	}
	50% {
		box-shadow: 0 0 60px rgba(212, 175, 55, 0.7),
			0 0 120px rgba(212, 175, 55, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3),
			inset 0 0 80px rgba(212, 175, 55, 0.08);
	}
}

.casino-card.exclusive:hover {
	box-shadow: 0 0 80px rgba(212, 175, 55, 0.8),
		0 0 150px rgba(212, 175, 55, 0.5), 0 20px 60px rgba(0, 0, 0, 0.4),
		inset 0 0 100px rgba(212, 175, 55, 0.1);
	transform: scale(1.03) translateY(-5px);
}

/* LIGHT MODE - Red Glow */
.light-theme .casino-card.exclusive {
	border: 3px solid var(--accent-coral);
	box-shadow: 0 0 30px rgba(220, 38, 38, 0.2), 0 0 60px rgba(220, 38, 38, 0.1),
		0 4px 20px rgba(0, 0, 0, 0.06);
	animation: exclusiveGlowLight 3s ease-in-out infinite;
}

@keyframes exclusiveGlowLight {
	0%,
	100% {
		box-shadow: 0 0 30px rgba(220, 38, 38, 0.2), 0 0 60px rgba(220, 38, 38, 0.1),
			0 4px 20px rgba(0, 0, 0, 0.06);
	}
	50% {
		box-shadow: 0 0 50px rgba(220, 38, 38, 0.35),
			0 0 100px rgba(220, 38, 38, 0.15), 0 4px 20px rgba(0, 0, 0, 0.06);
	}
}

.light-theme .casino-card.exclusive:hover {
	box-shadow: 0 0 50px rgba(220, 38, 38, 0.3), 0 0 100px rgba(220, 38, 38, 0.15),
		0 20px 40px rgba(0, 0, 0, 0.1);
	transform: scale(1.03) translateY(-5px);
}

/* Exclusive Badge - Separate glows for dark/light mode */

/* DARK MODE - Gold badge with gold glow (default) */
.exclusive-badge {
	background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
	color: var(--bg-primary);
	box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5),
		0 0 30px rgba(212, 175, 55, 0.3);
	animation: pulseDark 2s ease-in-out infinite;
}

@keyframes pulseDark {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5),
			0 0 30px rgba(212, 175, 55, 0.3);
	}
	50% {
		transform: scale(1.08);
		box-shadow: 0 6px 35px rgba(212, 175, 55, 0.7),
			0 0 50px rgba(212, 175, 55, 0.5);
	}
}

/* LIGHT MODE - Coral badge with red glow */
.light-theme .exclusive-badge {
	background: linear-gradient(
		135deg,
		var(--accent-coral) 0%,
		var(--accent-coral-light) 100%
	);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
	animation: pulseLight 2s ease-in-out infinite;
}

@keyframes pulseLight {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
	}
	50% {
		transform: scale(1.08);
		box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6),
			0 0 40px rgba(220, 38, 38, 0.3);
	}
}

/* Exclusive Badge - Separate glows for dark/light mode */

/* DARK MODE - Gold badge with gold glow (default) */
.exclusive-badge {
	background: linear-gradient(135deg, var(--gold) 0%, #f4d03f 100%);
	color: var(--bg-primary);
	box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5),
		0 0 30px rgba(212, 175, 55, 0.3);
	animation: pulseDark 2s ease-in-out infinite;
}

@keyframes pulseDark {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5),
			0 0 30px rgba(212, 175, 55, 0.3);
	}
	50% {
		transform: scale(1.08);
		box-shadow: 0 6px 35px rgba(212, 175, 55, 0.7),
			0 0 50px rgba(212, 175, 55, 0.5);
	}
}

/* LIGHT MODE - Coral badge with red glow */
.light-theme .exclusive-badge {
	background: linear-gradient(
		135deg,
		var(--accent-coral) 0%,
		var(--accent-coral-light) 100%
	);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
	animation: pulseLight 2s ease-in-out infinite;
}

@keyframes pulseLight {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
	}
	50% {
		transform: scale(1.08);
		box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6),
			0 0 40px rgba(220, 38, 38, 0.3);
	}
}

/* ==========================================
   CALCULATOR & MODAL - LIGHT MODE FIXES
   ========================================== */

/* Calculator Tabs - Blue in light mode */
.light-theme .calc-tab.active {
	color: var(--gold);
	border-bottom-color: var(--gold);
	background: rgba(14, 165, 233, 0.08);
}

/* Quick View Modal Features - Blue in light mode */
.light-theme .quick-view-feature {
	background: rgba(14, 165, 233, 0.08);
	border: 1px solid rgba(14, 165, 233, 0.2);
}

/* Quick View Bonus Box - Blue in light mode */
.light-theme .quick-view-bonus {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.12) 0%,
		rgba(56, 189, 248, 0.05) 100%
	);
	border: 2px solid var(--gold);
}

.light-theme .quick-view-bonus h3 {
	color: var(--gold);
}

/* Quick View Terms Box - Blue in light mode */
.light-theme .quick-view-terms {
	background: rgba(14, 165, 233, 0.05);
	border-radius: 12px;
}

/* Compare Modal Features - Blue in light mode */
.light-theme .compare-feature-tag {
	background: rgba(14, 165, 233, 0.08);
	border: 1px solid rgba(14, 165, 233, 0.2);
}

/* ==========================================
   REVIEW PAGE - QUICK LINKS FIX
   ========================================== */

/* Remove text transform and fix list styling */
.review-section ul li a {
	text-transform: none; /* Remove all caps */
}

/* If the list has bullets showing, hide them */
.review-section ul {
	list-style: none;
	padding-left: 0;
}

.review-section ul li {
	padding-left: 0;
	list-style: none;
}

/* Make sure the link is styled correctly */
.review-section ul li a {
	display: inline-block;
	text-transform: none;
	font-weight: 600;
}

.light-theme .cta-btn-large:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 10px 35px rgba(14, 165, 233, 0.6); /* Blue glow, not gold */
}

.light-theme .cta-btn-large {
	box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4); /* Blue glow */
}

/* Override for light mode - must come AFTER default styles */
.light-theme .exclusive-cta {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.08) 0%,
		transparent 100%
	) !important;
}

.light-theme .exclusive-cta .cta-btn-large {
	background: linear-gradient(
		135deg,
		var(--gold) 0%,
		var(--gold-light) 100%
	) !important;
	box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4) !important;
}

.light-theme .exclusive-cta .cta-btn-large:hover {
	box-shadow: 0 10px 35px rgba(14, 165, 233, 0.6) !important;
}

/* Exclusive Page - Light Mode Overrides (MUST BE LAST) */
.light-theme .exclusive-card-header {
	border-bottom: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.light-theme .exclusive-card-footer {
	border-top: 1px solid rgba(14, 165, 233, 0.2) !important;
}

.light-theme .exclusive-bonus {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.1) 0%,
		rgba(56, 189, 248, 0.05) 100%
	) !important;
	border: 2px solid var(--gold) !important;
}

.light-theme .btn-exclusive-primary {
	background: linear-gradient(
		135deg,
		var(--gold) 0%,
		var(--gold-light) 100%
	) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3) !important;
}

.light-theme .btn-exclusive-primary:hover {
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4) !important;
}

.light-theme .btn-exclusive-secondary {
	background: #ffffff !important;
	border: 2px solid var(--gold) !important;
	color: var(--gold) !important;
}

.light-theme .btn-exclusive-secondary:hover {
	background: rgba(14, 165, 233, 0.08) !important;
}

.light-theme .benefit-card {
	border: 2px solid rgba(14, 165, 233, 0.15) !important;
}

.light-theme .benefit-card:hover {
	border-color: var(--gold) !important;
}

.light-theme .benefit-card h3 {
	color: var(--gold) !important;
}
