/* ==========================================
   EXCLUSIVE PAGE STYLES
  ========================================= */

: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);

	/* Glow colors for animations - Dark mode (gold) */
	--glow-color: rgba(212, 175, 55, 0.5);
	--glow-color-intense: rgba(212, 175, 55, 0.7);
	--badge-glow: rgba(212, 175, 55, 0.4);

	/* 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);

	/* Glow colors for animations - Light mode (blue) */
	--glow-color: rgba(14, 165, 233, 0.4);
	--glow-color-intense: rgba(14, 165, 233, 0.6);
	--badge-glow: rgba(14, 165, 233, 0.4);
}

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

.exclusive-hero {
	position: relative;
	padding: 6rem 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 #d4af37;
	border-radius: 50px;
	color: #d4af37;
	font-weight: 700;
	font-size: 2.4rem;
	letter-spacing: 2px;
	margin-bottom: 2rem;
	animation: pulseGlow 2s ease-in-out infinite;
	font-family: 'Bebas Neue';
}

@keyframes pulseGlow {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 20px var(--glow-color), 0 0 30px var(--glow-color);
	}
	50% {
		transform: scale(1.08);
		box-shadow: 0 6px 35px var(--glow-color-intense),
			0 0 50px var(--glow-color-intense);
	}
}

.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;
	background-size: 200% 100%;
}

@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);
}

/* ==========================================
   CASINO CARDS
  ========================================= */

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

.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 var(--badge-glow);
	animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
	0%,
	100% {
		box-shadow: 0 4px 15px var(--badge-glow);
	}
	50% {
		box-shadow: 0 6px 25px var(--badge-glow), 0 0 40px var(--badge-glow);
	}
}

.exclusive-card-header {
	padding: 3rem 2rem 2rem;
	text-align: center;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.exclusive-card-logo {
	width: 160px;
	height: 110px;
	margin: 0 auto 1.5rem;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	border: 2px solid rgba(212, 175, 55, 0.3);
	transition: transform 0.3s ease;
}

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

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

.exclusive-card-header h3 {
	font-family: 'Sixtyfour', 'Playfair Display', Georgia, serif !important;
	font-size: 2.2rem;
	margin-bottom: 1rem;
	color: var(--gold);
}

.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: 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.5rem;
	margin-bottom: 2rem;
	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;
	font-family: 'Sixtyfour', sans-serif !important;
}

.bonus-text {
	font-family: 'Sixtyfour', 'Playfair Display', Georgia, serif;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--gold);
	line-height: 1.4;
	letter-spacing: 0.5px;
	font-style: italic;
}

.exclusive-description {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
	text-align: center;
	font-family: sans-serif;
}

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

.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: 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: 300;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: 'sixtyfour', sans-serif;
	font-size: 0.8rem;
	text-transform: uppercase;
}

.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 SECTION
  ========================================= */

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

/* ==========================================
   CTA SECTION
  ========================================= */

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

/* ==========================================
   LIGHT MODE OVERRIDES
  ========================================= */

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

.light-theme .exclusive-cta {
	background: linear-gradient(
		135deg,
		rgba(14, 165, 233, 0.08) 0%,
		transparent 100%
	);
}

.light-theme .cta-btn-large {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	color: #ffffff;
	box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4);
}

.light-theme .cta-btn-large:hover {
	box-shadow: 0 10px 35px rgba(14, 165, 233, 0.6);
}

.light-theme .exclusive-card-header {
	border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.light-theme .exclusive-card-footer {
	border-top: 1px solid rgba(14, 165, 233, 0.2);
}

.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 .btn-exclusive-primary {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

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

.light-theme .btn-exclusive-secondary {
	background: #ffffff;
	border: 2px solid var(--gold);
	color: var(--gold);
}

.light-theme .btn-exclusive-secondary:hover {
	background: rgba(14, 165, 233, 0.08);
}

.light-theme .benefit-card {
	border: 2px solid rgba(14, 165, 233, 0.15);
}

.light-theme .benefit-card:hover {
	border-color: var(--gold);
}

.light-theme .benefit-card h3 {
	color: var(--gold);
}

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

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

@media (max-width: 1024px) {
	.exclusive-title {
		font-size: clamp(2.5rem, 7vw, 4rem);
	}

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

@media (max-width: 768px) {
	.exclusive-hero {
		padding: 5rem 0 4rem;
	}

	.exclusive-label {
		margin-bottom: 1.5rem;
		font-size: 2rem;
		padding: 0.4rem 1.25rem;
		letter-spacing: 1.5px;
	}

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

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

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

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

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

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

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

	.exclusive-casino-card {
		border-width: 2px;
	}

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

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

	.exclusive-card-logo {
		width: 140px;
		height: 95px;
		margin-bottom: 1.25rem;
	}

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

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

	.rating-value {
		font-size: 1.1rem;
	}

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

	.exclusive-bonus {
		padding: 1.25rem;
		margin-bottom: 1.5rem;
	}

	.bonus-label {
		font-size: 0.8rem;
		margin-bottom: 0.65rem;
	}

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

	.exclusive-description {
		font-size: 1rem;
		margin-bottom: 1.25rem;
	}

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

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

	.exclusive-terms {
		font-size: 0.8rem;
	}

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

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

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

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

	.benefit-card {
		padding: 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: 2.25rem;
	}

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

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

@media (max-width: 480px) {
	.exclusive-hero {
		padding: 4rem 0 3rem;
	}

	.exclusive-label {
		font-size: 1.75rem;
		padding: 0.35rem 1rem;
		margin-bottom: 1.25rem;
		letter-spacing: 1px;
	}

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

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

	.exclusive-stats {
		padding: 1.25rem;
	}

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

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

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

	.exclusive-card-header {
		padding: 1.75rem 1.25rem 1.25rem;
	}

	.exclusive-card-logo {
		width: 120px;
		height: 80px;
		margin-bottom: 1rem;
	}

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

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

	.exclusive-bonus {
		padding: 1.1rem;
	}

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

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

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

	.exclusive-card-footer {
		padding: 1.25rem;
	}

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

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

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

	.benefit-card {
		padding: 1.75rem;
	}

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

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

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

	.cta-content p {
		font-size: 1.05rem;
		margin-bottom: 2rem;
	}

	.cta-btn-large {
		padding: 1.15rem 2.25rem;
		font-size: 1rem;
	}

	.cta-btn-large .cta-arrow {
		font-size: 1.35rem;
	}
}

@media (max-width: 375px) {
	.exclusive-title {
		font-size: clamp(1.5rem, 4.5vw, 2rem);
	}

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

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