/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	line-height: 1.7;
	color: #2c3e50;
	background-color: #ffffff;
	overflow-x: hidden;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.3;
	color: #1a202c;
	letter-spacing: -0.025em;
}

h1 {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
}

h2 {
	font-size: 2.25rem;
	font-weight: 700;
}

h3 {
	font-size: 1.875rem;
	font-weight: 600;
}

h4 {
	font-size: 1.5rem;
	font-weight: 600;
}

p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
	font-size: 1rem;
}

/* Modern Buttons */
.btn-modern {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 16px 32px;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	min-height: 48px;
}

.btn-primary-modern {
	background: #3b82f6;
	color: white;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.btn-primary-modern:hover {
	background: #2563eb;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}

.btn-secondary-modern {
	background: white;
	color: #374151;
	border: 1px solid #d1d5db;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary-modern:hover {
	background: #f9fafb;
	border-color: #9ca3af;
}

.btn-outline-modern {
	background: transparent;
	color: #3b82f6;
	border: 1px solid #3b82f6;
}

.btn-outline-modern:hover {
	background: #3b82f6;
	color: white;
}

.btn-large-modern {
	padding: 20px 40px;
	font-size: 1rem;
	min-height: 56px;
}

/* Legacy Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.btn-primary {
	background-color: #3b82f6;
	color: white;
}

.btn-primary:hover {
	background-color: #2563eb;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: #6c757d;
	color: white;
}

.btn-secondary:hover {
	background-color: #5a6268;
}

.btn-outline {
	background-color: transparent;
	color: #3b82f6;
	border: 2px solid #3b82f6;
}

.btn-outline:hover {
	background-color: #3b82f6;
	color: white;
}

.btn-large {
	padding: 16px 32px;
	font-size: 1.1rem;
}

.btn-small {
	padding: 8px 16px;
	font-size: 0.9rem;
}

/* Popup Styles */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
}

.popup-content {
	background: white;
	color: #000 !important;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	max-width: 500px;
	margin: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.popup-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
	margin-bottom: 1.5rem;
}
.popup-content h2 {
	color: #1e40af;
	margin-bottom: 1rem;
}

.popup-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 1.5rem;
}

/* Header */
.header {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar {
	padding: 1.5rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand .logo {
	height: 40px;
	width: auto;
}

.nav-menu {
	display: flex;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	text-decoration: none;
	color: #374151;
	font-weight: 500;
	transition: all 0.2s ease;
	position: relative;
	font-size: 0.875rem;
	letter-spacing: 0.025em;
	cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
	color: #3b82f6;
}

.dropdown {
	position: relative;
}

.dropdown-arrow {
	font-size: 0.8rem;
	margin-left: 0.5rem;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	background: white;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 0.5rem 0;
	min-width: 250px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	list-style: none;
	z-index: 1000;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
	padding: 0;
}

.dropdown-menu a {
	display: block;
	padding: 0.75rem 1rem;
	color: #1a1a1a;
	text-decoration: none;
	transition: all 0.3s ease;
}

.dropdown-menu a:hover {
	background-color: #f8f9fa;
	color: #3b82f6;
}

.nav-toggle {
	display: none;
	cursor: pointer;
	font-size: 1.5rem;
	color: #1a1a1a;
	padding: 0.5rem;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.nav-toggle:hover {
	background-color: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
}

/* Modern Hero Section */
.hero-modern {
	position: relative;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	min-height: 90vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-background::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.hero-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		);
}

.hero-content-modern {
	position: relative;
	z-index: 2;
	color: #1a202c;
	max-width: 600px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #dbeafe;
	color: #1e40af;
	padding: 0.5rem 1rem;
	border-radius: 24px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
	border: 1px solid #bfdbfe;
}

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

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: #1a202c;
}

.gradient-text {
	background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.25rem;
	line-height: 1.7;
	margin-bottom: 3rem;
	color: #64748b;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	margin-bottom: 4rem;
}

.hero-stats {
	display: flex;
	gap: 3rem;
}

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

.stat-number {
	font-size: 2rem;
	font-weight: 800;
	color: #1a202c;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.875rem;
	color: #64748b;
}

.hero-visual {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-card-stack {
	position: relative;
	width: 300px;
	height: 400px;
}

.hero-card {
	position: absolute;
	width: 280px;
	height: 180px;
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid #e2e8f0;
}

.hero-card-1 {
	top: 0;
	left: 0;
	transform: rotate(-5deg);
	z-index: 3;
}

.hero-card-2 {
	top: 60px;
	left: 20px;
	transform: rotate(2deg);
	z-index: 2;
}

.hero-card-3 {
	top: 120px;
	left: -10px;
	transform: rotate(-2deg);
	z-index: 1;
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.card-rating {
	background: #3b82f6;
	color: white !important;
	padding: 0.25rem 0.75rem;
	border-radius: 16px;
	font-size: 0.75rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.card-bonus {
	font-size: 1.25rem;
	font-weight: 700;
	color: #059669;
}

/* Trust Section */
.trust-section {
	padding: 3rem 0;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.trust-content {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	color: #374151;
	font-size: 0.875rem;
}

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

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-badge {
	display: inline-block;
	background: #dbeafe;
	color: #1e40af;
	padding: 0.5rem 1rem;
	border-radius: 24px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	border: 1px solid #bfdbfe;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: #1a202c;
}

.section-description {
	font-size: 1.125rem;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Modern Featured Platforms */
.featured-platforms-modern {
	padding: 6rem 0;
	background: white;
}

.platforms-grid-modern {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.platform-card-modern {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	position: relative;
	border: 1px solid #e2e8f0;
}
.platform-card-modern1 {
	background: white;
}
.platform-card-modern:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.platform-card-modern.featured {
	border: 2px solid #3b82f6;
	position: relative;
}

.card-badge {
	position: absolute;
	top: 60px;
	right: -20px;
	transform: translateX(-50%);
	background: #3b82f6;
	color: white;
	padding: 0.2rem 1rem;
	border-radius: 16px;
	font-size: 0.75rem;
	font-weight: 600;
	z-index: 1;
	overflow: visible;
	display: block;
}

.platform-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #e2e8f0;
}

.platform-logo-modern {
	height: 40px;
	width: auto;
	object-fit: contain;
}

.platform-rating-modern {
	text-align: right;
}

.rating-stars {
	color: #ffd700;
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.rating-score {
	font-weight: 700;
	color: #ffffff;
	font-size: 1rem;
}

.platform-card-modern h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 1rem;
}

.platform-card-modern p {
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.platform-features {
	margin-bottom: 2rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
}

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

.platform-actions {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

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

/* Why Choose Us */
.why-choose-us {
	padding: 6rem 0;
	background: white;
}

.why-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.why-text h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: #1a1a1a;
}

.why-text p {
	font-size: 1.1rem;
	margin-bottom: 3rem;
	color: #666;
}

.why-features {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.why-feature {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.feature-icon-large {
	font-size: 2.5rem;
	min-width: 60px;
}

.feature-content h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #1a1a1a;
}

.feature-content p {
	color: #666;
	margin: 0;
}

.stats-dashboard {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
	flex-wrap: wrap;
	gap: 1rem;
}

.dashboard-header h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

.status-indicator {
	background: linear-gradient(135deg, #3b82f6, #1e40af);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.dashboard-stats {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.dashboard-stat {
	padding: 1rem;
	background: #fafafa;
	border-radius: 12px;
	color: #000 !important;
}

.stat-label {
	font-size: 0.9rem;
	color: #000000;
	margin-bottom: 0.5rem;
}

.stat-value {
	font-size: 1.8rem;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 0.25rem;
}

.stat-trend {
	font-size: 0.8rem;
	color: #3b82f6;
	font-weight: 600;
}

/* Featured Tournaments Section */
.tournaments-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
}

.tournaments-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 80%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.tournaments-section .section-title {
	color: white;
}

.tournaments-section .section-description {
	color: rgba(255, 255, 255, 0.9);
}

.tournaments-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
	position: relative;
	z-index: 2;
}

.tournament-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transform: perspective(1000px) rotateX(0deg);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
}

.tournament-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		transparent 0%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.tournament-card:hover {
	transform: perspective(1000px) rotateX(5deg) translateY(-15px) scale(1.02);
	box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.25),
		0 25px 45px -10px rgba(0, 0, 0, 0.15);
}

.tournament-card:hover::before {
	opacity: 1;
}

.tournament-card:nth-child(1) {
	animation: slideInUp 0.6s ease-out 0.1s both;
}

.tournament-card:nth-child(2) {
	animation: slideInUp 0.6s ease-out 0.2s both;
}

.tournament-card:nth-child(3) {
	animation: slideInUp 0.6s ease-out 0.3s both;
}

.tournament-card:nth-child(4) {
	animation: slideInUp 0.6s ease-out 0.4s both;
}

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

.tournament-image {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.tournament-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tournament-card:hover .tournament-image img {
	transform: scale(1.1) rotate(2deg);
}

.tournament-image::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
	transition: opacity 0.3s ease;
}

.tournament-content {
	padding: 2rem;
	position: relative;
}

.tournament-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 1rem;
	position: relative;
}

.tournament-content h3::after {
	content: "";
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	border-radius: 2px;
	transition: width 0.4s ease;
}

.tournament-card:hover .tournament-content h3::after {
	width: 60px;
}

.tournament-content p {
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.tournament-content .btn-modern {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.tournament-content .btn-modern::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
	z-index: -1;
}

.tournament-content .btn-modern:hover::before {
	left: 100%;
}

/* Add floating particles effect */
.tournaments-section::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: radial-gradient(
			2px 2px at 20px 30px,
			rgba(255, 255, 255, 0.3),
			transparent
		),
		radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
		radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
		radial-gradient(
			1px 1px at 130px 80px,
			rgba(255, 255, 255, 0.2),
			transparent
		),
		radial-gradient(
			2px 2px at 160px 30px,
			rgba(255, 255, 255, 0.3),
			transparent
		);
	background-repeat: repeat;
	background-size: 200px 100px;
	animation: particleFloat 20s linear infinite;
	pointer-events: none;
}

@keyframes particleFloat {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-100px);
	}
}

/* Responsive design for tournaments grid */
@media (max-width: 768px) {
	.tournaments-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.tournament-card {
		margin: 0 1rem;
	}

	.tournament-image {
		height: 200px;
	}

	.tournament-content {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.tournaments-section {
		padding: 4rem 0;
	}

	.tournament-content {
		padding: 1.25rem;
	}

	.tournament-content h3 {
		font-size: 1.25rem;
	}
}

/* Betting Strategies Section */
.strategies-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, #0f2027 0%, #203a43 25%, #2c5364 100%);
	position: relative;
	overflow: hidden;
}

.strategies-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 25% 25%,
			rgba(255, 215, 0, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 75% 75%,
			rgba(255, 140, 0, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(255, 165, 0, 0.05) 0%,
			transparent 70%
		);
	animation: strategiesGlow 8s ease-in-out infinite alternate;
}

@keyframes strategiesGlow {
	0% {
		opacity: 0.5;
		transform: scale(1);
	}
	100% {
		opacity: 1;
		transform: scale(1.05);
	}
}

.strategies-section .section-title {
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.strategies-section .section-description {
	color: rgba(255, 255, 255, 0.9);
}

.strategies-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
	position: relative;
	z-index: 2;
}

.strategy-card {
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.95),
		rgba(255, 255, 255, 0.85)
	);
	border-radius: 24px;
	padding: 2.5rem;
	position: relative;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	overflow: hidden;
	transform: translateY(0) scale(1);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.strategy-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		#ff6b6b,
		#ffd93d,
		#6bcf7f,
		#4ecdc4,
		#45b7d1
	);
	background-size: 300% 100%;
	animation: gradientShift 3s ease infinite;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}

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

.strategy-card:hover::before {
	transform: scaleX(1);
}

.strategy-card::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(
		from 0deg,
		transparent,
		rgba(255, 215, 0, 0.1),
		transparent,
		rgba(255, 140, 0, 0.1),
		transparent
	);
	animation: rotate 10s linear infinite;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.strategy-card:hover::after {
	opacity: 1;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.strategy-card:hover {
	transform: translateY(-15px) scale(1.03);
	box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.strategy-card:nth-child(1) {
	animation: slideInLeft 0.8s ease-out 0.2s both;
}

.strategy-card:nth-child(2) {
	animation: slideInUp 0.8s ease-out 0.4s both;
}

.strategy-card:nth-child(3) {
	animation: slideInRight 0.8s ease-out 0.6s both;
}

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

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

.strategy-card h3 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 1.25rem;
	position: relative;
	z-index: 3;
}

.strategy-card:hover h3::before {
	opacity: 1;
	left: -2.5rem;
	transform: translateY(-50%) rotate(360deg);
}

.strategy-card p {
	color: #4a5568;
	line-height: 1.7;
	margin-bottom: 2rem;
	font-size: 1rem;
	position: relative;
	z-index: 3;
}

.strategy-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #667eea;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	z-index: 3;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.strategy-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.strategy-link:hover::after {
	width: 100%;
}

.strategy-link:hover {
	color: #764ba2;
	transform: translateX(5px);
}

/* Floating strategic elements */
.strategies-section::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: radial-gradient(
			circle at 10% 20%,
			rgba(255, 215, 0, 0.1) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 90% 80%,
			rgba(255, 140, 0, 0.1) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 50% 10%,
			rgba(255, 165, 0, 0.05) 0%,
			transparent 50%
		);
	animation: strategicFloat 15s ease-in-out infinite;
	pointer-events: none;
}

@keyframes strategicFloat {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	33% {
		transform: translateY(-20px) rotate(1deg);
	}
	66% {
		transform: translateY(10px) rotate(-1deg);
	}
}

/* Responsive design for strategies grid */
@media (max-width: 768px) {
	.strategies-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-top: 3rem;
	}

	.strategy-card {
		padding: 2rem;
		margin: 0 1rem;
	}

	.strategy-card h3::before {
		display: none;
	}
}

@media (max-width: 480px) {
	.strategies-section {
		padding: 4rem 0;
	}

	.strategy-card {
		padding: 1.5rem;
		border-radius: 16px;
	}

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

	.strategies-grid {
		gap: 1.5rem;
	}
}

/* Modern Tennis Tips - Enhanced */
.tennis-tips-modern {
	padding: 6rem 0;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	position: relative;
	overflow: hidden;
}

.tennis-tips-modern::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 40%,
			rgba(255, 255, 255, 0.05) 0%,
			transparent 60%
		);
	animation: tipsFloat 10s ease-in-out infinite alternate;
}

@keyframes tipsFloat {
	0% {
		transform: translateY(0px) scale(1);
	}
	100% {
		transform: translateY(-15px) scale(1.02);
	}
}

.tennis-tips-modern .section-title {
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tennis-tips-modern .section-description {
	color: rgba(255, 255, 255, 0.9);
}

.tips-grid-modern {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2.5rem;
	position: relative;
	z-index: 2;
	margin-top: 4rem;
}

.tip-card-modern {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(15px);
	position: relative;
	transform: perspective(1000px) rotateX(0deg);
}

.tip-card-modern::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 50%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.tip-card-modern:hover::after {
	opacity: 1;
}

.tip-card-modern:hover {
	transform: perspective(1000px) rotateX(5deg) translateY(-15px) scale(1.02);
	box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(0, 0, 0, 0.1);
}

.tip-card-modern:nth-child(1) {
	animation: slideInLeft 0.8s ease-out 0.2s both;
}

.tip-card-modern:nth-child(2) {
	animation: slideInUp 0.8s ease-out 0.4s both;
}

.tip-card-modern:nth-child(3) {
	animation: slideInUp 0.8s ease-out 0.6s both;
}

.tip-card-modern:nth-child(4) {
	animation: slideInRight 0.8s ease-out 0.8s both;
}

/* Tip Card Elements - Enhanced */
.featured-tip {
	grid-row: span 2;
	position: relative;
}

.featured-tip::before {
	content: "✨ FEATURED";
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: linear-gradient(135deg, #ff6b6b, #ee5a24);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	z-index: 10;
	animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
	}
}

.tip-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.featured-tip .tip-image {
	height: 300px;
}

.tip-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tip-card-modern:hover .tip-image img {
	transform: scale(1.1) rotate(2deg);
}

.tip-category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(30, 60, 114, 0.9);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

.tip-card-modern:hover .tip-category {
	transform: translateY(0);
	background: rgba(30, 60, 114, 1);
}

.tip-content-modern {
	padding: 2rem;
	position: relative;
	z-index: 3;
}

.tip-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.reading-time {
	color: #64748b;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.tip-level {
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.tip-content-modern h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 1rem;
	line-height: 1.3;
	position: relative;
}

.tip-content-modern h3::after {
	content: "";
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #1e3c72, #2a5298);
	border-radius: 2px;
	transition: width 0.4s ease;
}

.tip-card-modern:hover .tip-content-modern h3::after {
	width: 80px;
}

.tip-content-modern p {
	color: #4a5568;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.tip-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #1e3c72;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.tip-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #1e3c72, #2a5298);
	transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tip-link:hover::after {
	width: 100%;
}

.tip-link:hover {
	color: #2a5298;
	transform: translateX(5px);
}

.tip-image {
	position: relative;
	overflow: hidden;
}

.tip-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.featured-tip .tip-image img {
	height: 300px;
}

.tip-card-modern:hover .tip-image img {
	transform: scale(1.05);
}

.tip-category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: linear-gradient(135deg, #3b82f6, #1e40af);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.tip-content-modern {
	padding: 2rem;
}

.tip-content-modern h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 1rem;
}

.featured-tip .tip-content-modern h3 {
	font-size: 1.6rem;
}

.tip-content-modern p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.tip-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
}

.reading-time {
	color: #666;
}

.tip-level {
	background: #f0f0f0;
	color: #666;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

.tip-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #3b82f6;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.tip-link:hover {
	color: #2e7d32;
	transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
	color: white;
}

.newsletter-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.newsletter-text h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: white;
}

.newsletter-text p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	color: white;
}

.newsletter-benefits {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 500;
}

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

.newsletter-form-container {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.form-group input {
	flex: 1;
	padding: 1rem 1.5rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 1rem;
	backdrop-filter: blur(10px);
}

.form-group input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.5);
}

.form-disclaimer {
	font-size: 0.9rem;
	opacity: 0.8;
	margin: 0;
	color: white;
}

/* FAQ Section */
.faq-section {
	padding-bottom: 0;
	background: white;
}

.faq-grid {
	display: grid;
	gap: 1rem;
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #fafafa;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: #f0f0f0;
}

.faq-question h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
}

.faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	color: #3b82f6;
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 0 2rem 1.5rem;
	display: none;
}

.faq-answer p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Legacy Styles */
.hero {
	background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
	color: white;
	padding: 4rem 0;
	min-height: 500px;
	display: flex;
	align-items: center;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: white;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.featured-platforms {
	padding: 4rem 0;
	background-color: #f8f9fa;
}

.featured-platforms h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.platforms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.platform-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.platform-logo {
	width: 120px;
	height: 80px;
	object-fit: contain;
	margin-bottom: 1rem;
}

.platform-card h3 {
	color: #1e40af;
	margin-bottom: 1rem;
}

.platform-rating {
	margin: 1rem 0;
}

.stars {
	color: #ffd700;
	font-size: 1.2rem;
	margin-right: 0.5rem;
}

.rating-text {
	font-weight: 600;
	color: #3b82f6;
}

.tennis-tips {
	padding: 4rem 0;
}

.tennis-tips h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.tip-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.tip-card:hover {
	transform: translateY(-5px);
}

.tip-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.tip-content {
	padding: 1.5rem;
}

.tip-content h3 {
	color: #1e40af;
	margin-bottom: 1rem;
}

.read-more {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 500;
}

.read-more:hover {
	text-decoration: underline;
}

/* Footer */
.footer {
	background-color: #050505;
	color: #e2e8f0;
	padding: 4rem 0 2rem;
}

.footer-content {
	display: flex;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
	color: #3b82f6;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-section a:hover {
	color: #3b82f6;
}

.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 8px;
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.2s ease;
	color: #94a3b8;
}

.social-link:hover {
	background: #3b82f6;
	color: white;
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 2rem;
	text-align: center;
	color: #94a3b8;
	font-size: 0.875rem;
}

/* List Page Styles */
.page-header {
	background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
	color: white;
	padding: 3rem 0;
	text-align: center;
}

.page-header h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: white;
}

.page-header p {
	font-size: 1.2rem;
	opacity: 0.9;
}

.comparison-section {
	padding: 4rem 0;
	background-color: #f8f9fa;
}

.comparison-table-wrapper {
	overflow-x: auto;
	margin-bottom: 2rem;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table {
	width: 100%;
	background: white;
	border-collapse: collapse;
	min-width: 800px;
}

.comparison-table th,
.comparison-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.comparison-table th {
	background-color: #1e40af;
	color: white;
	font-weight: 600;
	text-align: center;
}

.comparison-table tbody tr:hover {
	background-color: #f8f9fa;
}

.site-info {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-logo {
	width: 80px;
	height: 50px;
	object-fit: contain;
}

.site-name {
	font-weight: 600;
	color: #1e40af;
}

.rating {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.rating-number {
	font-weight: 600;
	color: #3b82f6;
	font-size: 0.9rem;
}

.bonus {
	font-weight: 600;
	color: #3b82f6;
	text-align: center;
}

.cotes {
	text-align: center;
	font-weight: 500;
}

.streaming {
	text-align: center;
	font-size: 1.1rem;
}

/* Hide mobile cards on desktop */
.mobile-cards-container {
	display: none;
}

.detailed-reviews {
	padding: 4rem 0;
}

.detailed-reviews h2 {
	text-align: center;
	margin-bottom: 3rem;
}

/* Community Reviews Section - Enhanced */
.community-reviews {
	padding: 6rem 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
}

.community-reviews::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 30% 70%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		);
	animation: reviewsFloat 12s ease-in-out infinite alternate;
}

@keyframes reviewsFloat {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	100% {
		transform: translateY(-20px) rotate(2deg);
	}
}

.community-reviews .section-title {
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.community-reviews .section-description {
	color: rgba(255, 255, 255, 0.9);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 2.5rem;
	position: relative;
	z-index: 2;
	margin-top: 4rem;
}

.review-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.review-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		transparent 0%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 100%
	);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.review-card:hover::before {
	transform: translateX(100%);
}

.review-card:hover {
	transform: translateY(-15px) rotateY(5deg) scale(1.02);
	box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(0, 0, 0, 0.1);
}

.review-card:nth-child(1) {
	animation: slideInUp 0.8s ease-out 0.2s both;
}

.review-card:nth-child(2) {
	animation: slideInUp 0.8s ease-out 0.4s both;
}

.review-card:nth-child(3) {
	animation: slideInUp 0.8s ease-out 0.6s both;
}

/* Review Card Elements - Enhanced */
.review-header {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 3;
}

.reviewer-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 1rem;
	position: relative;
	border: 3px solid transparent;
	background: linear-gradient(45deg, #667eea, #764ba2);
	padding: 2px;
	transition: all 0.3s ease;
}

.reviewer-avatar::before {
	content: "";
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	animation: avatarGlow 2s ease-in-out infinite alternate;
}

@keyframes avatarGlow {
	0% {
		opacity: 0;
		transform: scale(1);
	}
	100% {
		opacity: 0.3;
		transform: scale(1.1);
	}
}

.review-card:hover .reviewer-avatar::before {
	opacity: 0.6;
}

.reviewer-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	background: white;
}

.reviewer-info h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a202c;
}

.rating-stars {
	color: #fbbf24;
	font-size: 1.1rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.05);
	}
}

.review-card p {
	font-style: italic;
	color: #4a5568;
	line-height: 1.7;
	font-size: 1rem;
	position: relative;
	z-index: 3;
	margin: 0;
}

.review-card p::before {
	content: '"';
	font-size: 3rem;
	color: rgba(102, 126, 234, 0.2);
	position: absolute;
	top: -1rem;
	left: -1rem;
	font-weight: bold;
	z-index: -1;
}

.review-card p::after {
	content: '"';
	font-size: 3rem;
	color: rgba(102, 126, 234, 0.2);
	position: absolute;
	bottom: -2rem;
	right: -0.5rem;
	font-weight: bold;
	z-index: -1;
}

.review-logo {
	width: 100px;
	height: 60px;
	object-fit: contain;
}

.review-info h3 {
	color: #1e40af;
	margin-bottom: 0.5rem;
}

.review-content p {
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.6;
}

.review-features {
	list-style: none;
	margin-bottom: 2rem;
}

.review-features li {
	padding: 0.5rem 0;
	color: #333;
	font-size: 0.95rem;
}

.betting-guide {
	padding: 4rem 0;
	background-color: #f8f9fa;
}

.betting-guide h2 {
	text-align: center;
	margin-bottom: 3rem;
}

.guide-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.guide-text h3 {
	color: #1e40af;
	margin-bottom: 1rem;
}

.guide-text p {
	margin-bottom: 1.5rem;
	color: #666;
	line-height: 1.6;
}

.guide-text ul {
	list-style: none;
	padding-left: 0;
}

.guide-text li {
	padding: 0.5rem 0;
	color: #333;
	line-height: 1.5;
}

.guide-text strong {
	color: #1e40af;
}

.guide-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Legal Pages Styles */
.legal-content {
	padding: 4rem 0;
	background-color: #fff;
}

.legal-text {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.legal-text h2 {
	color: #1e40af;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #3b82f6;
}

.legal-text h3 {
	color: #1e40af;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-text h4 {
	color: #3b82f6;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.legal-text ul,
.legal-text ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}
.legal-text p {
	color: #050505;
}
.legal-text li {
	margin-bottom: 0.5rem;
}

.warning-box {
	background: linear-gradient(135deg, #ff6b6b, #ee5a52);
	color: white;
	padding: 2rem;
	border-radius: 10px;
	margin: 2rem 0;
	text-align: center;
}

.warning-box h2 {
	color: white;
	border: none;
	margin-bottom: 1rem;
}

.tip-box {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 10px;
	border-left: 4px solid #3b82f6;
}

.tip-box h3 {
	color: #1e40af;
	margin-bottom: 1rem;
	margin-top: 0;
}

.help-section {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 10px;
	margin: 3rem 0;
}

.help-contacts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.help-contact {
	background: white;
	padding: 1.5rem;
	border-radius: 8px;
	border-left: 4px solid #3b82f6;
}

.help-contact h3 {
	color: #1e40af;
	margin-bottom: 1rem;
	margin-top: 0;
}

.commitment-box {
	background: linear-gradient(135deg, #3b82f6, #1e40af);
	color: white;
	padding: 2rem;
	border-radius: 10px;
	margin: 3rem 0;
}

.commitment-box h2 {
	color: white;
	border: none;
	margin-bottom: 1rem;
}

.commitment-box ul {
	color: white;
}

.rights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.right-box {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 10px;
	text-align: center;
	border-top: 4px solid #3b82f6;
}

.right-box h3 {
	color: #1e40af;
	margin-bottom: 1rem;
	margin-top: 0;
}

.cookie-types {
	margin: 2rem 0;
}

.cookie-type {
	background: white;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-type h3 {
	color: #1e40af;
	margin-bottom: 1rem;
	margin-top: 0;
}

.third-party-cookies {
	margin: 2rem 0;
}

.third-party-service {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	border-left: 4px solid #3b82f6;
}

.third-party-service h3 {
	color: #1e40af;
	margin-bottom: 1rem;
	margin-top: 0;
}

.cookie-management {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.management-option {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
}

.management-option h3 {
	color: #1e40af;
	margin-bottom: 1rem;
	margin-top: 0;
}

.browser-instructions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.browser-instruction {
	background: white;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 1.5rem;
}

.browser-instruction h3 {
	color: #1e40af;
	margin-bottom: 1rem;
	margin-top: 0;
}

.consequences-box {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 10px;
	padding: 2rem;
	margin: 2rem 0;
}

.consequences-box h3 {
	color: #856404;
	margin-bottom: 1rem;
	margin-top: 0;
}

.affiliate-notice {
	background: #e3f2fd;
	border: 1px solid #90caf9;
	border-radius: 10px;
	padding: 2rem;
	margin: 2rem 0;
}

.affiliate-notice h4 {
	color: #1565c0;
	margin-bottom: 1rem;
	margin-top: 0;
}

/* Responsible Gaming Section - Enhanced */
.responsible-gaming {
	padding: 6rem 0;
	background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
	position: relative;
	overflow: hidden;
}

.responsible-gaming::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 25% 25%,
			rgba(255, 152, 0, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 75% 75%,
			rgba(245, 124, 0, 0.1) 0%,
			transparent 50%
		),
		linear-gradient(
			45deg,
			transparent 0%,
			rgba(255, 152, 0, 0.05) 50%,
			transparent 100%
		);
	animation: responsibleFloat 15s ease-in-out infinite alternate;
}

@keyframes responsibleFloat {
	0% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0.7;
	}
	100% {
		transform: translateY(-20px) rotate(1deg);
		opacity: 1;
	}
}

.responsible-gaming .section-title {
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.responsible-gaming .section-description {
	color: rgba(255, 255, 255, 0.9);
}

.gaming-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 4rem;
	position: relative;
	z-index: 2;
}

.gaming-text {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	animation: slideInLeft 0.8s ease-out 0.2s both;
}

.gaming-text::before {
	content: "🛡️";
	position: absolute;
	top: -10px;
	right: -10px;
	font-size: 4rem;
	opacity: 0.1;
	transform: rotate(15deg);
	transition: all 0.3s ease;
}

.gaming-text:hover::before {
	opacity: 0.2;
	transform: rotate(25deg) scale(1.1);
}

.gaming-text:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(0, 0, 0, 0.1);
}

.gaming-text h3 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 1.5rem;
	position: relative;
}

.gaming-text h3::after {
	content: "";
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff9800, #f57c00);
	border-radius: 2px;
	transition: width 0.4s ease;
}

.gaming-text:hover h3::after {
	width: 100px;
}

.gaming-text ul {
	color: #4a5568;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.gaming-text li {
	margin-bottom: 0.75rem;
	padding-left: 1rem;
	position: relative;
}

.gaming-text li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: bold;
	font-size: 1.1rem;
}

.gaming-tips {
	background: linear-gradient(
		135deg,
		rgba(255, 152, 0, 0.95),
		rgba(245, 124, 0, 0.95)
	);
	border-radius: 24px;
	padding: 2.5rem;
	color: white;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	animation: slideInRight 0.8s ease-out 0.4s both;
}

.gaming-tips::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(
		from 0deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	animation: rotateResponsible 20s linear infinite;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.gaming-tips:hover::before {
	opacity: 1;
}

@keyframes rotateResponsible {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.gaming-tips::after {
	content: "⚠️";
	position: absolute;
	top: -10px;
	right: -10px;
	font-size: 4rem;
	opacity: 0.2;
	transform: rotate(-15deg);
	transition: all 0.3s ease;
}

.gaming-tips:hover::after {
	opacity: 0.3;
	transform: rotate(-25deg) scale(1.1);
}

.gaming-tips:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 32px 64px rgba(255, 152, 0, 0.3),
		0 16px 32px rgba(245, 124, 0, 0.2);
}

.gaming-tips h3 {
	font-size: 1.75rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 3;
}

.gaming-tips ul {
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.8;
	position: relative;
	z-index: 3;
}

.gaming-tips li {
	margin-bottom: 0.75rem;
	padding-left: 1rem;
	position: relative;
}

.gaming-tips li::before {
	content: "💡";
	position: absolute;
	left: 0;
	font-size: 1rem;
}

.responsible-gaming-notice {
	background: #e3f2fd;
	color: rgb(124, 132, 255);
	padding: 2rem;
	border-radius: 10px;
	margin: 2rem 0;
}

.responsible-gaming-notice h3 {
	color: rgb(0, 0, 0);
	margin-bottom: 1rem;
	margin-top: 0;
}

.responsible-gaming-notice ul {
	color: rgb(0, 0, 0);
}

/* Responsive design for responsible gaming */
@media (max-width: 768px) {
	.gaming-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gaming-text,
	.gaming-tips {
		padding: 2rem;
		margin: 0 1rem;
	}

	.gaming-text h3,
	.gaming-tips h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.responsible-gaming {
		padding: 4rem 0;
	}

	.gaming-text,
	.gaming-tips {
		padding: 1.5rem;
		border-radius: 16px;
	}
}

.last-update {
	text-align: center;
	font-style: italic;
	color: #666;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}

	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: white;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		transition: left 0.3s ease;
		padding-top: 2rem;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-list {
		flex-direction: column;
		gap: 2rem;
	}

	.nav-toggle {
		display: flex;
	}

	.hero-modern .container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-description {
		font-size: 1.125rem;
	}

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

	.hero-stats {
		justify-content: center;
		gap: 1.5rem;
	}

	.hero-card-stack {
		width: 250px;
		height: 300px;
	}

	.hero-card {
		width: 220px;
		height: 140px;
		padding: 1.5rem;
	}

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

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

	.section-description {
		font-size: 1rem;
	}

	.platforms-grid-modern {
		grid-template-columns: 1fr;
	}

	.why-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.tips-grid-modern {
		grid-template-columns: 1fr;
	}

	.newsletter-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.form-group {
		flex-direction: column;
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.page-header h1 {
		font-size: 2rem;
	}

	.comparison-table-wrapper {
		display: none;
	}

	.comparison-table th,
	.comparison-table td {
		padding: 0.5rem;
		font-size: 0.9rem;
	}

	/* Mobile Cards Layout */
	.mobile-cards-container {
		display: block;
	}

	.mobile-card {
		background: white;
		border-radius: 12px;
		margin-bottom: 1rem;
		padding: 1rem;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		border: 1px solid #e5e7eb;
	}

	.mobile-card-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 1rem;
	}

	.mobile-card-logo {
		display: flex;
		align-items: center;
		gap: 0.75rem;
	}

	.mobile-card-logo img {
		width: 80px;
		height: 30px;
		object-fit: contain;
	}

	.mobile-card-logo .site-name {
		font-weight: 600;
		color: #374151;
		font-size: 1rem;
	}

	.mobile-card-bonus {
		background: #3b82f6;
		color: white;
		padding: 0.25rem 0.5rem;
		border-radius: 20px;
		font-size: 0.8rem;
		font-weight: 600;
	}

	.mobile-card-rating {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		margin-bottom: 0.75rem;
	}

	.mobile-card-rating .stars {
		color: #fbbf24;
		font-size: 1rem;
	}

	.mobile-card-rating .rating-number {
		font-weight: 600;
		color: #3b82f6;
		font-size: 0.9rem;
	}

	.mobile-card-features {
		display: flex;
		gap: 1rem;
		margin-bottom: 1rem;
	}

	.mobile-card-feature {
		display: flex;
		align-items: center;
		gap: 0.25rem;
		font-size: 0.8rem;
		color: #10b981;
	}

	.mobile-card-feature i {
		font-size: 0.7rem;
	}

	.mobile-card-feature .text-red-500 {
		color: #ef4444;
	}

	.mobile-card-cotes {
		margin-bottom: 1rem;
	}

	.mobile-card-cotes-label {
		font-size: 0.8rem;
		color: #6b7280;
		margin-bottom: 0.25rem;
	}

	.mobile-card-cotes-value {
		font-weight: 600;
		color: #374151;
	}

	.mobile-card-action {
		display: flex;
		justify-content: center;
	}

	.mobile-card-btn {
		background: #8b5cf6;
		color: white;
		border: none;
		border-radius: 25px;
		padding: 0.75rem 2rem;
		font-weight: 600;
		font-size: 0.9rem;
		width: 100%;
		text-align: center;
		cursor: pointer;
		transition: all 0.3s ease;
		text-decoration: none;
	}

	.mobile-card-btn:hover {
		background: #7c3aed;
		transform: translateY(-1px);
	}

	.site-info {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}

	.site-logo {
		width: 60px;
		height: 40px;
	}

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

	.review-header {
		flex-direction: column;
	}

	/* Responsible Gaming Hero Section */
	.responsible-gaming-hero {
		padding: 8rem 0 4rem;
		background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
		position: relative;
		overflow: hidden;
		min-height: 60vh;
	}

	.hero-background-responsible {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	.hero-gradient-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(45deg, rgba(255, 152, 0, 0.1), transparent 50%);
	}

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

	.hero-badge-responsible {
		display: inline-flex;
		align-items: center;
		gap: 0.75rem;
		background: rgba(255, 152, 0, 0.15);
		color: #ff9800;
		padding: 0.75rem 1.5rem;
		border-radius: 30px;
		font-size: 0.95rem;
		font-weight: 600;
		margin-bottom: 2rem;
		border: 1px solid rgba(255, 152, 0, 0.3);
		backdrop-filter: blur(10px);
		animation: heroFloat 3s ease-in-out infinite alternate;
	}

	@keyframes heroFloat {
		0% {
			transform: translateY(0);
		}
		100% {
			transform: translateY(-10px);
		}
	}

	.hero-title-responsible {
		font-size: 3.5rem;
		font-weight: 800;
		color: white;
		margin-bottom: 1.5rem;
		line-height: 1.2;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	}

	.gradient-text-responsible {
		background: linear-gradient(135deg, #ff9800, #f57c00);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.hero-description-responsible {
		font-size: 1.25rem;
		color: rgba(255, 255, 255, 0.9);
		margin-bottom: 3rem;
		line-height: 1.6;
	}

	.hero-stats {
		display: flex;
		justify-content: center;
		gap: 3rem;
		flex-wrap: wrap;
	}

	.stat-item {
		text-align: center;
		color: white;
	}

	.stat-number {
		font-size: 2.5rem;
		font-weight: 800;
		color: #ff9800;
		margin-bottom: 0.5rem;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	}

	.stat-label {
		font-size: 0.95rem;
		color: rgba(255, 255, 255, 0.8);
		font-weight: 500;
	}

	/* Responsible Gaming Content Styles */
	.responsible-content {
		padding: 1rem 0;
	}

	.content-wrapper {
		display: grid;
		gap: 3rem;
	}

	.warning-section {
		background: linear-gradient(135deg, #fee2e2, #fecaca);
		border: 2px solid #f87171;
		position: relative;
		overflow: hidden;
	}

	.warning-section .warning-icon {
		font-size: 3rem;
		color: #dc2626;
		margin-bottom: 1rem;
		animation: warningPulse 2s ease-in-out infinite;
	}

	@keyframes warningPulse {
		0%,
		100% {
			transform: scale(1);
		}
		50% {
			transform: scale(1.1);
		}
	}

	.warning-main {
		font-size: 1.25rem;
		color: #7f1d1d;
		margin-bottom: 1.5rem;
	}

	.age-restriction {
		display: flex;
		align-items: center;
		gap: 1rem;
		margin-top: 1rem;
	}

	.age-badge {
		background: linear-gradient(135deg, #dc2626, #b91c1c);
		color: white;
		padding: 0.5rem 1rem;
		border-radius: 50px;
		font-weight: 800;
		font-size: 1.5rem;
		box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
	}

	.tips-section {
		margin: 3rem 0;
	}

	.tips-grid-modern {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
		margin-top: 2rem;
	}

	.tip-card-responsible {
		text-align: center;
		padding: 2.5rem;
		position: relative;
		transition: all 0.4s ease;
	}

	.tip-card-responsible:hover {
		transform: translateY(-10px) scale(1.02);
	}

	.tip-icon-large {
		font-size: 3rem;
		color: #10b981;
		margin-bottom: 1.5rem;
		transition: all 0.3s ease;
	}

	.tip-card-responsible:hover .tip-icon-large {
		transform: scale(1.2) rotate(5deg);
	}

	.tip-highlight {
		background: linear-gradient(135deg, #10b981, #059669);
		color: white;
		padding: 0.5rem 1rem;
		border-radius: 20px;
		font-size: 0.85rem;
		font-weight: 600;
		margin-top: 1rem;
		display: inline-block;
	}

	.alert-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1.5rem;
		margin-top: 2rem;
	}

	.alert-item {
		display: flex;
		align-items: flex-start;
		gap: 1rem;
		padding: 1.5rem;
		background: rgba(239, 68, 68, 0.05);
		border-left: 4px solid #ef4444;
		border-radius: 8px;
		transition: all 0.3s ease;
	}

	.alert-item:hover {
		background: rgba(239, 68, 68, 0.1);
		transform: translateX(5px);
	}

	.alert-item .alert-icon {
		color: #dc2626;
		font-size: 1.5rem;
		margin-top: 0.25rem;
	}

	.tools-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 1.5rem;
		margin-top: 2rem;
	}

	.tool-item {
		display: flex;
		align-items: flex-start;
		gap: 1rem;
		padding: 1.5rem;
		background: rgba(59, 130, 246, 0.05);
		border-radius: 12px;
		transition: all 0.3s ease;
	}

	.tool-item:hover {
		background: rgba(59, 130, 246, 0.1);
		transform: translateY(-5px);
	}

	.tool-item .tool-icon {
		color: #ffffff;
		font-size: 2rem;
		margin-top: 0.5rem;
	}

	.help-contacts-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 2rem;
		margin: 2rem 0;
	}

	.help-contact-card {
		text-align: center;
		padding: 2.5rem;
		position: relative;
		transition: all 0.4s ease;
	}

	.help-contact-card:hover {
		transform: translateY(-10px) scale(1.02);
	}

	.help-contact-card .contact-icon {
		font-size: 3rem;
		color: #10b981;
		margin-bottom: 1.5rem;
		transition: all 0.3s ease;
	}

	.help-contact-card:hover .contact-icon {
		transform: scale(1.2) rotate(5deg);
	}

	.contact-info {
		margin: 1.5rem 0;
	}
	.contact-info h2 {
		color: white !important;
	}
	.contact-detail {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		margin: 0.75rem 0;
		font-size: 0.95rem;
	}

	.contact-detail i {
		color: #6b7280;
		width: 16px;
	}

	.contact-detail a {
		color: #3b82f6;
		text-decoration: none;
		font-weight: 500;
	}

	.contact-detail a:hover {
		text-decoration: underline;
	}

	.contact-description {
		color: #6b7280;
		font-size: 0.9rem;
		margin-top: 1rem;
	}

	.emergency-notice {
		background: linear-gradient(135deg, #fee2e2, #fecaca);
		border: 2px solid #f87171;
		text-align: center;
		margin-top: 2rem;
	}

	.emergency-notice .emergency-icon {
		font-size: 2.5rem;
		color: #dc2626;
		margin-bottom: 1rem;
	}

	.commitment-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1.5rem;
		margin-top: 2rem;
	}

	.commitment-item {
		display: flex;
		align-items: center;
		gap: 1rem;
		padding: 1.5rem;
		background: rgba(16, 185, 129, 0.05);
		border-left: 4px solid #10b981;
		border-radius: 8px;
		transition: all 0.3s ease;
	}

	.commitment-item:hover {
		background: rgba(16, 185, 129, 0.1);
		transform: translateX(5px);
	}

	.commitment-item .commitment-icon-small {
		color: #10b981;
		font-size: 1.5rem;
	}

	.responsible-trust .trust-item {
		color: #ff9800;
	}

	.responsible-trust .trust-icon {
		color: #ff9800;
	}
}

.guide-content {
	grid-template-columns: 1fr;
	gap: 2rem;
}

.guide-image {
	order: -1;
}

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

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

.popup-buttons {
	flex-direction: column;
}

.footer-content {
	grid-template-columns: 1fr;
	text-align: center;
}

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

	.hero-modern {
		padding: 2rem 0;
		min-height: 80vh;
	}

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

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

	.trust-content {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.hero {
		padding: 2rem 0;
	}

	.hero-content h1 {
		font-size: 1.8rem;
	}

	.featured-platforms,
	.tennis-tips {
		padding: 2rem 0;
	}
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.mb-1 {
	margin-bottom: 1rem;
}
.mb-2 {
	margin-bottom: 2rem;
}
.mb-3 {
	margin-bottom: 3rem;
}

.mt-1 {
	margin-top: 1rem;
}
.mt-2 {
	margin-top: 2rem;
}
.mt-3 {
	margin-top: 3rem;
}

.hidden {
	display: none;
}

.stat-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #3b82f6, #2c5530);
	border-radius: 50%;
	margin: 0 auto 1rem auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 1.2rem;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #3b82f6, #2c5530);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	min-width: 50px;
}
.hero-flex {
	display: flex;
	flex-direction: row;
	gap: 4rem;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

/* Fancy Hero Section */
.hero-fancy {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-background-fancy {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.geometric-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
}

.shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.1),
		rgba(147, 197, 253, 0.05)
	);
	animation: float 6s ease-in-out infinite;
}

.shape-1 {
	width: 300px;
	height: 300px;
	top: 10%;
	left: -5%;
	animation-delay: 0s;
}

.shape-2 {
	width: 200px;
	height: 200px;
	top: 60%;
	right: -3%;
	animation-delay: 2s;
}

.shape-3 {
	width: 150px;
	height: 150px;
	top: 20%;
	right: 20%;
	animation-delay: 4s;
}

.shape-4 {
	width: 100px;
	height: 100px;
	bottom: 20%;
	left: 15%;
	animation-delay: 1s;
}

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

.hero-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 30% 40%,
			rgba(59, 130, 246, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(147, 197, 253, 0.1) 0%,
			transparent 50%
		);
}

.hero-content-fancy {
	position: relative;
	z-index: 2;
	max-width: 600px;
	animation: fadeInUp 1s ease-out;
}

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

.hero-badge-fancy {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.1),
		rgba(147, 197, 253, 0.1)
	);
	color: #1e40af;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
	border: 1px solid rgba(59, 130, 246, 0.2);
	backdrop-filter: blur(10px);
}

.hero-title-fancy {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
	color: #1a202c;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.gradient-text-fancy {
	background: linear-gradient(135deg, #3b82f6, #1e40af, #2563eb);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 200%;
	animation: gradientShift 3s ease-in-out infinite;
}

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

.hero-description-fancy {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #64748b;
	margin-bottom: 2.5rem;
	max-width: 500px;
}

.hero-cta-fancy {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	margin-top: 3rem;
}

.btn-fancy {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-primary-fancy {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: white;
	box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary-fancy:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-outline-fancy {
	background: rgba(255, 255, 255, 0.9);
	color: #3b82f6;
	border: 2px solid #3b82f6;
	backdrop-filter: blur(10px);
}

.btn-outline-fancy:hover {
	background: #3b82f6;
	color: white;
	transform: translateY(-2px);
}

.hero-metrics-fancy {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.metric-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.metric-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.25rem;
}

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

.metric-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a202c;
	line-height: 1;
}

.metric-label {
	font-size: 0.875rem;
	color: #64748b;
	margin-top: 0.25rem;
}

.hero-visual-fancy {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 400px;
}

.floating-cards {
	position: relative;
	width: 300px;
	height: 450px;
}
.card-1:hover .card-glow {
	background: white !important;
}
.card-2:hover .card-glow {
	background: white !important;
}
.card-3:hover .card-glow {
	background: white !important;
}
.card-4:hover .card-glow {
	background: white !important;
}
.floating-card {
	position: absolute;
	width: 200px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 1.5rem;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	animation: cardFloat 6s ease-in-out infinite;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
}

.card-1 {
	top: 0;
	left: 0;
	z-index: 4;
	animation-delay: 0s;
}

.card-2 {
	top: 80px;
	left: 60px;
	z-index: 3;
	animation-delay: 2s;
}

.card-3 {
	top: 160px;
	left: 20px;
	z-index: 2;
	animation-delay: 4s;
}

.card-4 {
	top: 240px;
	left: 80px;
	z-index: 1;
	animation-delay: 6s;
}

.floating-card:hover {
	z-index: 10;
	transform: scale(1.05);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	background: rgba(255, 255, 255, 1);
	border: 2px solid rgba(59, 130, 246, 0.5);
}

@keyframes cardFloat {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-15px) rotate(2deg);
	}
}

.card-glow {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, #3b82f6, #2563eb, #1e40af);
	border-radius: 22px;
	z-index: -1;
	opacity: 0.3;
	filter: blur(8px);
}

.card-content {
	position: relative;
	text-align: center;
}

.card-logo {
	height: 30px;
	width: auto;
	margin-bottom: 1rem;
}

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

.rating-stars {
	color: #fbbf24;
	font-size: 0.875rem;
}

.rating-score {
	font-weight: 700;
	color: #fff;
	font-size: 1rem;
}

.card-bonus {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.875rem;
}

/* Dropdown Logo Styles */
.logo-dropdown {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 0.5rem;
	padding: 1rem;
	min-width: 200px;
	justify-self: center;
	justify-items: center;
}
p {
	color: wheat;
}
.dropdown-logo {
	height: 50px;
	width: auto;
	padding: 0.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.dropdown-logo:hover {
	background: rgba(59, 130, 246, 0.1);
	transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-fancy {
		min-height: 80vh;
		padding: 2rem 0;
	}

	.hero-title-fancy {
		font-size: 2.5rem;
	}

	.hero-cta-fancy {
		flex-direction: column;
	}

	.hero-metrics-fancy {
		justify-content: center;
	}

	.hero-visual-fancy {
		display: none;
	}

	.logo-dropdown {
		grid-template-columns: 1fr;
	}
}

/* Modern Theme Styles */
.modern-trust {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 2rem 0;
}

.modern-platforms {
	background: white;
}

.modern-badge {
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.1),
		rgba(147, 197, 253, 0.1)
	);
	color: #1e40af;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	border: 1px solid rgba(59, 130, 246, 0.2);
	display: inline-block;
}

.modern-card {
	border: 1px solid rgba(59, 130, 246, 0.1);
	transition: all 0.3s ease;
}

.modern-card:hover {
	border-color: rgba(59, 130, 246, 0.3);
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

/* Legal Pages Specific Styles */

.legal-page {
	min-height: 100vh;
	padding-top: 100px;
	/* Account for fixed header */
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px 80px;
}

.legal-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 40px 0;
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-light);
	position: relative;
	overflow: hidden;
}

.legal-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--clay-orange), var(--lime-green));
}

.legal-title {
	font-family: var(--font-heading);
	font-size: 42px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 15px;
	line-height: 1.2;
}

.legal-subtitle {
	font-size: 18px;
	color: var(--dark-gray);
	margin-bottom: 10px;
	font-weight: 400;
}

.legal-updated {
	font-size: 14px;
	color: var(--cool-blue);
	font-weight: 500;
	background: rgba(2, 136, 209, 0.1);
	padding: 8px 16px;
	border-radius: 20px;
	display: inline-block;
	margin-top: 10px;
}

.legal-content {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-light);
	overflow: hidden;
}

/* Legal Section - Improved Layout with number-title container */

.legal-section {
	padding: 50px 40px;
	border-bottom: 1px solid #2a2a2a;
	position: relative;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	margin-bottom: 2px;
	transition: var(--transition);
}

.legal-section:last-child {
	border-bottom: none;
	border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.legal-section:first-child {
	border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.legal-section:hover {
	background: linear-gradient(135deg, #1f1f1f 0%, #323232 100%);
	transform: translateX(5px);
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

/* Number-Title Container - New div element as requested */

.number-title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 30px;
	padding: 20px;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	border-radius: var(--border-radius);
	border-left: 4px solid var(--clay-orange);
	position: relative;
	overflow: hidden;
}

.number-title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(216, 67, 21, 0.05) 50%,
		transparent 70%
	);
	pointer-events: none;
}

.section-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--clay-orange), #bf360c);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 20px;
	font-family: var(--font-heading);
	box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3);
	margin-right: 20px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.section-number::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, #ff6b35, var(--clay-orange), #bf360c);
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	transition: var(--transition);
}

.number-title:hover .section-number::before {
	opacity: 1;
}

.legal-section h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	color: var(--white);
	margin: 0;
	line-height: 1.3;
	position: relative;
	z-index: 2;
	flex: 1;
}

.legal-section h3 {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 600;
	color: var(--clay-orange);
	margin: 30px 0 20px 0;
	line-height: 1.3;
	position: relative;
	padding-left: 30px;
}

.legal-section h3::before {
	content: "\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--lime-green);
	font-size: 16px;
}

.legal-section h4 {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 25px 0 15px 0;
	line-height: 1.4;
	position: relative;
	padding-left: 25px;
}

.legal-section h4::before {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--cool-blue);
	font-size: 14px;
}

.legal-section p {
	margin: 0 0 20px 0;
	line-height: 1.7;
	color: #e0e0e0;
	font-size: 16px;
}

.legal-section ul,
.legal-section ol {
	margin: 20px 0 20px 20px;
	padding-left: 20px;
}

.legal-section li {
	margin-bottom: 12px;
	line-height: 1.6;
	color: #e0e0e0;
	font-size: 16px;
	position: relative;
}

.legal-section ul li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--lime-green);
	font-size: 12px;
	position: absolute;
	left: -25px;
	top: 6px;
}

.legal-section ol li::marker {
	color: var(--clay-orange);
	font-weight: 600;
}

/* Highlight Boxes - Updated with FontAwesome Icons */

.legal-highlight {
	background: linear-gradient(
		135deg,
		rgba(174, 234, 0, 0.1),
		rgba(2, 136, 209, 0.1)
	);
	border: 1px solid rgba(174, 234, 0, 0.3);
	border-left: 4px solid var(--lime-green);
	padding: 25px 25px 25px 60px;
	margin: 25px 0;
	border-radius: var(--border-radius);
	position: relative;
	backdrop-filter: blur(10px);
}

.legal-highlight::before {
	content: "\f05a";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	top: 25px;
	left: 20px;
	color: var(--lime-green);
	font-size: 18px;
	width: 25px;
	text-align: center;
}

.legal-highlight p {
	margin: 0;
	font-weight: 500;
	color: var(--white);
}

.legal-warning {
	background: linear-gradient(
		135deg,
		rgba(216, 67, 21, 0.15),
		rgba(191, 54, 12, 0.15)
	);
	border: 1px solid rgba(216, 67, 21, 0.3);
	border-left: 4px solid var(--clay-orange);
	padding: 25px 25px 25px 60px;
	margin: 25px 0;
	border-radius: var(--border-radius);
	position: relative;
	backdrop-filter: blur(10px);
}

.legal-warning::before {
	content: "\f071";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	top: 25px;
	left: 20px;
	color: red;
	font-size: 18px;
	width: 25px;
	text-align: center;
}

.legal-warning p {
	margin: 0;
	font-weight: 500;
	color: white;
}

/* Contact Info - Updated Styling */

.contact-info {
	background: white;
	border: 2px solid blueviolet;
	border-radius: 2rem;
	padding: 30px;
	margin: 30px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-info h4 {
	margin: 0 0 20px 0;
	color: white;
	font-size: 20px;
	padding-left: 0;
}

.contact-info h4::before {
	display: none;
}

.contact-info p {
	margin: 10px 0;
	font-weight: 500;
	color: #e0e0e0;
}

.contact-info a {
	color: var(--clay-orange);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.contact-info a:hover {
	color: var(--lime-green);
	text-decoration: underline;
}

/* Support Cards - Updated */

.support-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.support-card {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	border: 2px solid #333333;
	border-radius: var(--border-radius);
	padding: 25px;
	text-align: center;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.support-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--clay-orange), var(--lime-green));
	transform: scaleX(0);
	transition: var(--transition);
}

.support-card:hover {
	border-color: var(--cool-blue);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.support-card:hover::before {
	transform: scaleX(1);
}

.support-card h4 {
	margin: 0 0 15px 0;
	color: var(--white);
	font-size: 18px;
	padding-left: 0;
}

.support-card h4::before {
	display: none;
}

.support-card p {
	margin: 0 0 20px 0;
	font-size: 14px;
	color: #cccccc;
}

.support-card a {
	display: inline-block;
	background: linear-gradient(135deg, var(--clay-orange), #bf360c);
	color: var(--white);
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.support-card a::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: var(--transition);
}

.support-card a:hover::before {
	left: 100%;
}

.support-card a:hover {
	background: linear-gradient(135deg, #bf360c, #8f2709);
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(216, 67, 21, 0.4);
}

/* Tables - Updated for Dark Theme */

.table-responsive {
	overflow-x: auto;
	margin: 25px 0;
	border-radius: var(--border-radius);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	background: #0a0a0a;
}

.legal-table {
	width: 100%;
	border-collapse: collapse;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	font-size: 14px;
}

.legal-table th {
	background: linear-gradient(135deg, var(--clay-orange), #bf360c);
	color: var(--white);
	padding: 15px 12px;
	text-align: left;
	font-weight: 600;
	font-family: var(--font-heading);
	border-bottom: 2px solid #bf360c;
	position: relative;
}

.legal-table th::before {
	content: "\f0ce";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 8px;
	font-size: 12px;
}

.legal-table td {
	padding: 12px;
	border-bottom: 1px solid #333333;
	vertical-align: top;
	color: #e0e0e0;
	background: rgba(26, 26, 26, 0.5);
}

.legal-table tr:nth-child(even) td {
	background: rgba(45, 45, 45, 0.3);
}

.legal-table tr:hover td {
	background: rgba(2, 136, 209, 0.1);
	color: var(--white);
}

/* Age Restriction - Updated */

.age-restriction {
	background: linear-gradient(135deg, var(--clay-orange), #bf360c);
	color: var(--white);
	text-align: center;
	padding: 40px 30px;
	margin: 40px 0;
	border-radius: var(--border-radius);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(216, 67, 21, 0.3);
}

.age-restriction::before {
	content: "\f05a";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	top: -10px;
	right: -10px;
	font-size: 80px;
	opacity: 0.1;
	transform: rotate(15deg);
}

.age-restriction::after {
	content: "18+";
	position: absolute;
	bottom: -20px;
	left: -20px;
	font-size: 120px;
	font-weight: 900;
	opacity: 0.1;
	font-family: var(--font-heading);
}

.age-restriction h3,
.age-restriction h4 {
	margin: 0 0 15px 0;
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
	padding-left: 0;
}

.age-restriction h3::before,
.age-restriction h4::before {
	display: none;
}

.age-restriction p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--white);
}

.breadcrumb {
	background: rgba(255, 255, 255, 0.9);
	padding: 15px 0;
	margin-bottom: 30px;
	border-radius: var(--border-radius);
	backdrop-filter: blur(10px);
}

.breadcrumb-list {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0 20px;
	flex-wrap: wrap;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
	font-size: 14px;
}

.breadcrumb-item:not(:last-child)::after {
	content: "›";
	margin: 0 10px;
	color: var(--dark-gray);
	font-weight: 600;
}

.breadcrumb-link {
	color: var(--cool-blue);
	text-decoration: none;
	transition: var(--transition);
}

.breadcrumb-link:hover {
	color: var(--clay-orange);
	text-decoration: underline;
}

.breadcrumb-current {
	color: var(--text-dark);
	font-weight: 500;
}

/* Responsive Design - Updated for number-title */

@media (max-width: 768px) {
	.footer-logo {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	.legal-container {
		padding: 20px 15px 60px;
	}
	.legal-title {
		font-size: 32px;
	}
	.legal-subtitle {
		font-size: 16px;
	}
	.legal-section {
		padding: 30px 20px;
		text-align: center;
	}
	.number-title {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 25px 20px;
	}
	.section-number {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.legal-section h2 {
		font-size: 24px;
		text-align: center;
	}
	.legal-section h3 {
		font-size: 20px;
		text-align: center;
		padding-left: 0;
	}
	.legal-section h3::before {
		display: none;
	}
	.legal-section h4 {
		text-align: center;
		padding-left: 0;
	}
	.legal-section h4::before {
		display: none;
	}
	.legal-section p,
	.legal-section ul,
	.legal-section ol {
		text-align: left;
		margin-left: 0;
	}
	.legal-section ul,
	.legal-section ol {
		padding-left: 30px;
	}
	.legal-highlight,
	.legal-warning {
		padding: 25px 20px;
		text-align: left;
	}
	.legal-highlight::before,
	.legal-warning::before {
		position: relative;
		display: block;
		margin-bottom: 10px;
		left: 0;
		top: 0;
	}
	.contact-info,
	.support-links,
	.table-responsive {
		margin: 20px 0;
	}
	.support-links {
		grid-template-columns: 1fr;
	}
	.breadcrumb-list {
		padding: 0 15px;
	}
	.legal-table {
		font-size: 12px;
	}
	.legal-table th,
	.legal-table td {
		padding: 8px 6px;
	}
	.age-restriction {
		padding: 30px 20px;
	}
	.age-restriction::before {
		font-size: 60px;
	}
	.age-restriction::after {
		font-size: 80px;
	}
}

@media (max-width: 480px) {
	.legal-title {
		font-size: 28px;
	}
	.legal-section {
		padding: 25px 15px;
	}
	.number-title {
		padding: 20px 15px;
	}
	.legal-section h2 {
		font-size: 22px;
	}
	.legal-section h3 {
		font-size: 18px;
	}
	.age-restriction::before {
		font-size: 80px;
	}
	.section-number {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
}

/* Print Styles */

@media print {
	.legal-page {
		background: white;
		padding-top: 0;
	}
	.legal-header,
	.legal-content,
	.legal-section {
		box-shadow: none;
		border: 1px solid #ccc;
	}
	.section-number {
		background: #333 !important;
	}
	.legal-highlight,
	.legal-warning {
		border: 1px solid #ccc;
		background: #f9f9f9 !important;
	}
	.support-card {
		border: 1px solid #ccc;
		break-inside: avoid;
	}
	.age-restriction {
		background: #333 !important;
		color: white !important;
	}
}

/* Focus and Accessibility - Enhanced for number-title */

.legal-section:focus-within {
	outline: 2px solid var(--cool-blue);
	outline-offset: 2px;
}

.number-title:focus-within {
	box-shadow: 0 0 0 3px rgba(2, 136, 209, 0.3);
}

.support-card a:focus,
.contact-info a:focus {
	outline: 2px solid var(--cool-blue);
	outline-offset: 2px;
	border-radius: 4px;
}

/* High Contrast Mode Support */

@media (prefers-contrast: high) {
	.legal-highlight,
	.legal-warning {
		border-width: 3px;
	}
	.section-number {
		border: 2px solid var(--white);
	}
	.legal-table th {
		border: 2px solid var(--white);
	}
	.legal-section {
		background: #000000;
	}
	.legal-section h2,
	.legal-section p,
	.legal-section li {
		color: #ffffff;
	}
}

/* Reduced Motion Support */

@media (prefers-reduced-motion: reduce) {
	.legal-section,
	.support-card,
	.support-card a,
	.contact-info a,
	.section-number::before,
	.support-card::before,
	.support-card a::before {
		transition: none;
	}
	.legal-section:hover,
	.support-card:hover {
		transform: none;
	}
}

/* Responsive Design Updates */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

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

	.section-header h2,
	.section-header-white h2 {
		font-size: 2rem;
	}

	.steps-container {
		grid-template-columns: 1fr;
	}

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

	.faq-question {
		padding: 1rem 1.5rem;
	}

	.faq-item.active .faq-answer {
		padding: 1rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

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

	.stat-number-large {
		font-size: 2.5rem;
	}
}

.payment-methods-section {
	padding: 3rem 0;
	background: saddlebrown;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.payment-methods-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 25% 50%,
			rgba(25, 118, 210, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 75% 50%,
			rgba(33, 150, 243, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.payment-methods-section h3 {
	color: var(--accent-white);
	margin-bottom: 2rem;
	font-size: 2rem;
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.payment-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}

.payment-logos img {
	height: 55px;
	width: auto;
	max-width: 175px;
	object-fit: contain;
	filter: brightness(0.8) contrast(1.1);
	transition: all 0.3s ease;
	border-radius: 8px;
	padding: 0.5rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-logos img:hover {
	filter: brightness(1.2) contrast(1.2);
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(25, 118, 210, 0.3);
}

@media (max-width: 768px) {
	.payment-logos {
		gap: 1.5rem;
		padding: 0 1rem;
	}

	.payment-logos img {
		height: 35px;
		max-width: 70px;
	}
}

/* Reviews Section Styles */
.reviews-section {
	background: var(--bg-dark);
	padding: 120px 0;
}

.reviews-section .text-white {
	color: var(--text-white) !important;
}

.reviews-section .section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.reviews-section .section-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	position: relative;
}

.reviews-section .section-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--bg-gradient);
	border-radius: var(--radius);
}

.reviews-section .section-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

.reviews-content {
	max-width: 1000px;
	margin: 0 auto;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

@media (max-width: 768px) {
	.reviews-section {
		padding: 80px 0;
	}

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

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

	.review-card {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.reviews-section {
		padding: 60px 0;
	}

	.reviews-section .section-title {
		font-size: 1.75rem;
	}

	.reviews-section .section-subtitle {
		font-size: 1rem;
	}
}

.review-card {
	background: var(--bg-primary);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-xl);
	padding: 2rem;
	transition: var(--transition);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.review-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--bg-gradient);
}

.review-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-2xl);
	border-color: var(--primary-blue-light);
}
.mt-40 {
	margin-top: 200px !important;
}
.review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.reviewer-info {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.reviewer-avatar {
	width: 50px;
	height: 50px;
	background: var(--bg-gradient);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-white);
	font-size: 1.2rem;
	box-shadow: var(--shadow-md);
}

.reviewer-details h4 {
	color: var(--text-primary);
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
	font-weight: 600;
}

.review-date {
	color: var(--text-tertiary);
	font-size: 0.9rem;
}

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

.review-rating .stars {
	color: var(--accent-yellow);
	font-size: 1rem;
}

.review-rating span {
	color: var(--text-secondary);
	font-weight: 600;
}

.review-content h5 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: 600;
}

.review-content p {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.review-site {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid var(--tertiary-black);
}

.review-logo {
	height: 25px;
	width: auto;
}

.review-site span {
	color: var(--text-light);
	font-weight: 600;
}

/* Review Form Section */
.review-form-section {
	margin-top: 4rem;
	position: relative;
}

.review-form-section::before {
	content: "";
	position: absolute;
	top: -2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: var(--bg-gradient);
	border-radius: var(--radius);
}

.form-container {
	max-width: 800px;
	margin: 0 auto;
	background: blue;
	border: 1px solid var(--gray-200);
	border-radius: 2rem;
	padding: 3rem;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: var(--shadow-xl);
}

.form-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(25, 118, 210, 0.05) 0%,
		transparent 25%,
		rgba(33, 150, 243, 0.05) 50%,
		transparent 75%,
		rgba(25, 118, 210, 0.05) 100%
	);
	background-size: 200% 200%;
	animation: formShimmer 12s ease-in-out infinite;
	pointer-events: none;
}

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

.form-container h3 {
	color: white;
	text-align: center;
	margin-bottom: 1rem;
	font-size: 2.2rem;
	font-weight: 800;
	position: relative;
	z-index: 2;
}

.form-container p {
	color: var(--text-secondary);
	text-align: center;
	margin-bottom: 2rem;
	font-size: 1.1rem;
	position: relative;
	z-index: 2;
}

.review-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
	z-index: 2;
	transition: var(--transition);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.form-container {
		padding: 2rem;
	}
}

@media (max-width: 480px) {
	.form-container {
		padding: 1.5rem;
	}

	.form-container h3 {
		font-size: 1.8rem;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	color: white;
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	background: white;
	border: 2px solid #45b7d1;
	border-radius: 4px;
	padding: 1rem;
	color: #000;
	font-size: 1rem;
	font-family: var(--font-body);
	transition: var(--transition);
	width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-blue);
	background: white;
	color: #000;
	box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
	transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #000000;
}

.form-group select option {
	background: blue;
	color: white;
}

/* Rating Input Styles */
.rating-input {
	display: flex;
	gap: 0.25rem;
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.rating-input input[type="radio"] {
	display: none;
}

.rating-input label.star {
	font-size: 2rem;
	color: var(--gray-300);
	cursor: pointer;
	transition: var(--transition);
	padding: 0.25rem;
}

.rating-input label.star:hover,
.rating-input label.star:hover ~ label.star,
.rating-input input[type="radio"]:checked ~ label.star {
	color: var(--accent-yellow);
	transform: scale(1.1);
}

.rating-input label.star:hover {
	filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}

/* Form Submit Button */
.review-form .btn {
	margin-top: 1rem;
	width: 100%;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.1rem;
	padding: 1rem 2rem;
}

@media (max-width: 768px) {
	.rating-input label.star {
		font-size: 1.75rem;
		padding: 0.125rem;
	}
}

@media (max-width: 480px) {
	.rating-input label.star {
		font-size: 1.5rem;
	}
}

/* Success Message */
.form-success-message {
	background: linear-gradient(135deg, var(--accent-green), #0d9488);
	color: var(--text-white);
	padding: 2rem;
	border-radius: var(--radius-xl);
	text-align: center;
	margin-top: 2rem;
	box-shadow: var(--shadow-lg);
	opacity: 0;
	transform: translateY(20px);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	display: none;
}

.form-success-message.show {
	opacity: 1;
	transform: translateY(0);
	display: block;
}

.form-success-message::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.form-success-message i {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
	animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
	0% {
		transform: scale(0) rotate(45deg);
	}
	50% {
		transform: scale(1.2) rotate(45deg);
	}
	100% {
		transform: scale(1) rotate(0deg);
	}
}

.form-success-message h3 {
	color: var(--text-white);
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
}

.form-success-message p {
	color: var(--text-white);
	opacity: 0.9;
	margin-bottom: 0;
	font-size: 1.1rem;
}

@media (max-width: 768px) {
	.form-success-message {
		padding: 1.5rem;
	}

	.form-success-message i {
		font-size: 2.5rem;
	}

	.form-success-message h3 {
		font-size: 1.25rem;
	}

	.form-success-message p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.form-success-message {
		padding: 1rem;
		margin-top: 1rem;
	}

	.form-success-message i {
		font-size: 2rem;
	}

	.form-success-message h3 {
		font-size: 1.125rem;
	}

	.form-success-message p {
		font-size: 0.9rem;
	}
}

/* Modern Responsible Gaming Section */
.responsible-gambling-section {
	background: #1a1a1a;
	position: relative;
	padding: 8rem 0;
	border-top: 3px solid rgba(59, 130, 246, 0.3);
	border-bottom: 3px solid rgba(59, 130, 246, 0.3);
}

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

.responsible-header {
	margin-bottom: 5rem;
}

.responsible-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(244, 67, 54, 0.2);
	backdrop-filter: blur(25px);
	border: 1px solid rgba(244, 67, 54, 0.4);
	border-radius: 50px;
	padding: 0.75rem 1.5rem;
	margin-bottom: 2rem;
	animation: responsibleBadgeWarning 3s ease-in-out infinite;
}

@keyframes responsibleBadgeWarning {
	0%,
	100% {
		box-shadow: 0 4px 20px rgba(244, 67, 54, 0.3);
		border-color: rgba(244, 67, 54, 0.4);
	}
	50% {
		box-shadow: 0 8px 35px rgba(244, 67, 54, 0.6);
		border-color: rgba(244, 67, 54, 0.6);
	}
}

.responsible-badge-icon {
	width: 35px;
	height: 35px;
	background: linear-gradient(135deg, #f44336, #d32f2f);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1rem;
	animation: responsibleBadgeAlert 4s ease-in-out infinite;
}

@keyframes responsibleBadgeAlert {
	0%,
	100% {
		transform: rotate(0deg) scale(1);
	}
	25% {
		transform: rotate(-10deg) scale(1.1);
	}
	50% {
		transform: rotate(0deg) scale(1.2);
	}
	75% {
		transform: rotate(10deg) scale(1.1);
	}
}

.responsible-badge-text {
	color: var(--accent-white);
	font-weight: 600;
	font-size: 1rem;
}

.responsible-title {
	font-size: 3.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #f44336, #ff9800, #ffc107);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: responsibleTitleGlow 4s ease-in-out infinite;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

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

.responsible-subtitle {
	font-size: 1.3rem;
	color: wheat;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
	opacity: 0.9;
}

.responsible-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-bottom: 4rem;
	perspective: 1200px;
}

.responsible-card {
	background: linear-gradient(
		145deg,
		rgba(30, 41, 59, 0.9),
		rgba(51, 65, 85, 0.85)
	);
	backdrop-filter: blur(35px);
	border: 2px solid rgba(59, 130, 246, 0.2);
	border-radius: 28px;
	padding: 3rem;
	text-align: center;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.responsible-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(244, 67, 54, 0.1) 0%,
		transparent 25%,
		rgba(255, 193, 7, 0.1) 50%,
		transparent 75%,
		rgba(244, 67, 54, 0.1) 100%
	);
	opacity: 0;
	transition: opacity 0.6s ease;
	border-radius: 24px;
	z-index: 1;
}

.responsible-card::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(
		from 0deg,
		transparent,
		rgba(244, 67, 54, 0.2),
		transparent
	);
	animation: responsibleCardAlert 15s linear infinite;
	opacity: 0;
	transition: opacity 0.8s ease;
	z-index: 0;
}

@keyframes responsibleCardAlert {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.responsible-card:hover::before {
	opacity: 1;
}

.responsible-card:hover::after {
	opacity: 1;
}

.responsible-card:hover {
	transform: translateY(-15px) rotateY(8deg) rotateX(5deg) scale(1.05);
	border-color: rgba(244, 67, 54, 0.6);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 15px 30px rgba(244, 67, 54, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	background: rgba(26, 26, 26, 0.95);
	color: #fff;
}

.responsible-card-content {
	position: relative;
	z-index: 2;
}

.responsible-card .card-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #f44336, #ff5722);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	font-size: 2.5rem;
	box-shadow: 0 10px 30px rgba(244, 67, 54, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.6s ease;
	animation: responsibleIconPulse 4s ease-in-out infinite;
	position: relative;
}

@keyframes responsibleIconPulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 10px 30px rgba(244, 67, 54, 0.4);
	}
	50% {
		transform: scale(1.1);
		box-shadow: 0 15px 40px rgba(244, 67, 54, 0.6);
	}
}

.responsible-card:hover .card-icon {
	transform: scale(1.2) rotateY(360deg);
	background: linear-gradient(135deg, #ff5722, #ff9800);
	box-shadow: 0 20px 50px rgba(244, 67, 54, 0.6),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	animation-duration: 2s;
}

.responsible-card .card-icon::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background: conic-gradient(
		from 0deg,
		transparent,
		rgba(244, 67, 54, 0.3),
		transparent
	);
	border-radius: 50%;
	animation: responsibleIconGlow 8s linear infinite;
	opacity: 0;
	transition: opacity 0.6s ease;
}

@keyframes responsibleIconGlow {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.responsible-card:hover .card-icon::before {
	opacity: 1;
}

.responsible-card h3 {
	color: #ffffff;
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
	font-weight: 700;
	transition: all 0.4s ease;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.responsible-card:hover h3 {
	color: #ff9800;
	transform: translateY(-5px);
	text-shadow: 0 0 20px rgba(255, 152, 0, 0.5);
}

.responsible-card p {
	color: #cbd5e1;
	line-height: 1.7;
	font-size: 1.05rem;
	transition: all 0.4s ease;
	opacity: 0.95;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.responsible-card:hover p {
	color: #ffffff;
	opacity: 1;
	transform: translateY(-3px);
}

.help-resources {
	background: linear-gradient(
		145deg,
		rgba(30, 41, 59, 0.9),
		rgba(51, 65, 85, 0.8)
	);
	backdrop-filter: blur(30px);
	border: 2px solid rgba(59, 130, 246, 0.2);
	border-radius: 20px;
	padding: 2rem;
	margin-bottom: 2.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.help-intro {
	color: #1565c0;
}
.help-resources::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(244, 67, 54, 0.05) 0%,
		transparent 25%,
		rgba(255, 193, 7, 0.05) 50%,
		transparent 75%,
		rgba(244, 67, 54, 0.05) 100%
	);
	background-size: 200% 200%;
	animation: helpShimmer 12s ease-in-out infinite;
	pointer-events: none;
}

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

.help-resources h3 {
	color: #ffffff;
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-weight: 800;
	text-align: center;
	position: relative;
	z-index: 2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.help-resources p {
	color: #e2e8f0;
	margin-bottom: 1.5rem;
	font-size: 1rem;
	text-align: center;
	position: relative;
	z-index: 2;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.help-contacts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	position: relative;
	z-index: 2;
}

.help-contact {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	transition: all 0.4s ease;
}

.help-contact:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgb(255, 140, 0);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(244, 67, 54, 0.2);
}

.help-contact i {
	color: #ff9800;
	font-size: 2rem;
	width: 50px;
	height: 50px;
	background: rgba(255, 152, 0, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.help-contact:hover i {
	background: transparent;
	transform: scale(1.1) rotate(10deg);
}

.help-contact div {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.help-contact strong {
	color: #ffffff;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.help-contact span {
	color: #e2e8f0;
	opacity: 0.95;
	font-size: 1rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.age-restriction {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	background: linear-gradient(
		145deg,
		rgba(220, 38, 38, 0.9),
		rgba(153, 27, 27, 0.85)
	);
	backdrop-filter: blur(30px);
	border: 2px solid rgba(220, 38, 38, 0.5);
	border-radius: 20px;
	padding: 2rem;
	margin-bottom: 2.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(220, 38, 38, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.age-restriction::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(244, 67, 54, 0.1) 0%,
		transparent 50%,
		rgba(244, 67, 54, 0.1) 100%
	);
	animation: ageShimmer 6s ease-in-out infinite;
	pointer-events: none;
}

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

.age-badge {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #dc2626, #991b1b, #7f1d1d);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 900;
	flex-shrink: 0;
	box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4),
		0 5px 12px rgba(220, 38, 38, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	animation: ageBadgePulse 3s ease-in-out infinite;
	position: relative;
	border: 2px solid rgba(255, 255, 255, 0.2);
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
	z-index: 2;
}

@keyframes ageBadgePulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 15px 40px rgba(244, 67, 54, 0.4);
	}
	50% {
		transform: scale(1.1);
		box-shadow: 0 20px 50px rgba(244, 67, 54, 0.6);
	}
}

.age-text {
	position: relative;
	z-index: 2;
}

.age-text h4 {
	color: #ffffff;
	margin-bottom: 0.75rem;
	font-size: 1.4rem;
	font-weight: 800;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}
.text-white {
	color: white !important;
}
.age-text p {
	color: #ffffff;
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	opacity: 0.9;
}

.responsible-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
	padding: 1.5rem;
	background: rgba(15, 23, 42, 0.5);
	border-radius: 16px;
	border: 1px solid rgba(59, 130, 246, 0.2);
}

.responsible-logos a {
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	padding: 25px 30px;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	background: linear-gradient(
		145deg,
		rgba(59, 130, 246, 0.1),
		rgba(30, 64, 175, 0.05)
	);
	border: 2px solid rgba(59, 130, 246, 0.2);
	backdrop-filter: blur(15px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.responsible-logos a:hover {
	transform: scale(1.1) translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.responsible-logos img {
	height: 30px;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.responsible-logos a:hover img {
	filter: brightness(1.2) invert(1);
	transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.8rem;
	}
	h3 {
		font-size: 1.5rem;
	}

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

	.cookie-consent {
		left: 10px;
		right: 10px;
		bottom: 10px;
		max-width: none;
	}

	.cookie-buttons {
		flex-direction: column;
	}

	.footer-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

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

	.age-restriction {
		flex-direction: column;
		text-align: center;
	}

	.responsible-logos {
		gap: 0.5rem;
	}

	.responsible-logos a {
		min-width: 80px;
		padding: 8px 12px;
	}

	.responsible-logos img {
		height: 20px;
	}
}

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

	.popup-content {
		padding: 1.5rem;
	}

	.popup-buttons {
		flex-direction: column;
	}

	.responsible-logos {
		flex-direction: column;
		gap: 1rem;
		flex-wrap: wrap;
	}

	.responsible-logos a {
		width: 100%;
		max-width: 200px;
		margin: 0 auto;
	}
}
@media (max-width: 768px) {
	.help-resources {
		padding: 2rem; /* Reduce padding for mobile */
		margin-bottom: 2rem;
	}

	.help-resources h3 {
		font-size: 1.6rem; /* Smaller heading */
	}

	.help-resources p {
		font-size: 1rem; /* Smaller paragraph text */
		line-height: 1.5;
	}

	.help-contacts {
		grid-template-columns: 1fr; /* Stack contacts vertically */
		gap: 1.5rem; /* Reduce gap between items */
	}

	.help-contact {
		padding: 1rem; /* Reduce padding */
		flex-direction: row; /* Ensure icon and text stay side-by-side */
		align-items: center;
	}

	.help-contact i {
		font-size: 1.5rem; /* Smaller icon */
		width: 40px; /* Adjust icon container size */
		height: 40px;
	}

	.help-contact strong {
		font-size: 1rem; /* Smaller title */
	}

	.help-contact span {
		font-size: 0.9rem; /* Smaller subtitle */
	}
}

@media (max-width: 480px) {
	.help-resources {
		padding: 1.5rem;
	}

	.help-resources h3 {
		font-size: 1.4rem;
	}

	.help-resources p {
		font-size: 0.9rem;
	}

	.help-contact {
		flex-direction: column; /* Stack icon and text for very small screens */
		text-align: center;
		gap: 0.75rem;
	}
	.footer-logo {
		display: flex;
		align-items: center;
		gap: 12px;
		text-decoration: none;
		color: var(--accent-white);
		font-family: "Montserrat", sans-serif;
		font-weight: 800;
		font-size: 1.5rem;
		justify-content: center;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	.help-contact i {
		font-size: 1.25rem;
		width: 35px;
		height: 35px;
	}
}
@media (max-width: 768px) {
	.responsible-grid {
		grid-template-columns: 1fr; /* Stack cards vertically */
		gap: 1.5rem; /* Reduce gap */
		perspective: none; /* Disable 3D perspective for performance */
	}

	.responsible-card {
		padding: 0.5rem; /* Reduce padding */
		transform: none !important; /* Disable 3D transforms on mobile */
		border-radius: 16px; /* Slightly smaller border radius */
	}

	.responsible-card::before,
	.responsible-card::after {
		animation: none; /* Disable heavy animations for performance */
	}

	.responsible-card .card-icon {
		width: 40px; /* Smaller icon */
		height: 40px;
		font-size: 2rem;
		animation: responsibleIconPulse 3s ease-in-out infinite; /* Shorten animation */
	}

	.responsible-card h3 {
		font-size: 1.4rem; /* Smaller heading */
		margin-bottom: 1rem;
	}

	.responsible-card p {
		font-size: 0.95rem; /* Smaller text */
		line-height: 1.5;
	}

	.responsible-card:hover {
		transform: translateY(-5px) !important; /* Simplified hover effect */
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	}

	.responsible-card:hover .card-icon {
		transform: scale(1.1); /* Simplified hover animation */
		animation-duration: 1.5s;
	}
}

@media (max-width: 480px) {
	.responsible-grid {
		gap: 1rem;
	}
	.stats-grid {
		display: grid;
		grid-template-columns: repeat(1, minmax(250px, 1fr));
		gap: 2rem;
	}
	.responsible-card {
		padding: 0.5rem;
	}

	.responsible-card .card-icon {
		width: 30px;
		height: 30px;
		font-size: 1.5rem;
	}

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

	.responsible-card p {
		font-size: 0.9rem;
	}
}
@media (max-width: 768px) {
	.responsible-grid {
		grid-template-columns: 1fr; /* Stack cards vertically */
		gap: 1.5rem; /* Reduce gap */
		perspective: none; /* Disable 3D perspective for performance */
	}

	.responsible-card {
		padding: 0.5rem; /* Reduce padding */
		transform: none !important; /* Disable 3D transforms on mobile */
		border-radius: 16px; /* Slightly smaller border radius */
	}

	.responsible-card::before,
	.responsible-card::after {
		animation: none; /* Disable heavy animations for performance */
	}

	.responsible-card .card-icon {
		width: 40px; /* Smaller icon */
		height: 40px;
		font-size: 2rem;
		animation: responsibleIconPulse 3s ease-in-out infinite; /* Shorten animation */
	}

	.responsible-card h3 {
		font-size: 1.4rem; /* Smaller heading */
		margin-bottom: 1rem;
	}

	.responsible-card p {
		font-size: 0.95rem; /* Smaller text */
		line-height: 1.5;
	}

	.responsible-card:hover {
		transform: translateY(-5px) !important; /* Simplified hover effect */
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	}

	.responsible-card:hover .card-icon {
		transform: scale(1.1); /* Simplified hover animation */
		animation-duration: 1.5s;
	}
}

@media (max-width: 480px) {
	.responsible-grid {
		gap: 1rem;
	}

	.responsible-card {
		padding: 1rem;
	}

	.responsible-card .card-icon {
		width: 30px;
		height: 30px;
		font-size: 1.5rem;
	}

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

	.responsible-card p {
		font-size: 0.9rem;
	}
}
/* Footer */
.footer {
	background: black;
	color: #e2e8f0;
	padding: 4rem 0 2rem;
	border-top: 3px solid rgba(59, 130, 246, 0.3);
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 20%,
			rgba(59, 130, 246, 0.05),
			transparent 50%
		),
		radial-gradient(
			circle at 70% 80%,
			rgba(147, 51, 234, 0.05),
			transparent 50%
		);
	pointer-events: none;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
	position: relative;
	z-index: 2;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 2rem;
	text-decoration: none;
	color: #f8fafc;
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 1.6rem;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;

	justify-content: center;
}

.footer-logo-img {
	height: 50px;
	width: auto;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo:hover .footer-logo-img {
	transform: scale(1.05);
}

.footer-logo .logo-text {
	color: var(--primary-blue, #1976d2);
}

.footer-section h4 {
	color: #60a5fa;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	z-index: 2;
}
.footer-section p {
	font-size: 1rem;
	color: #cbd5e1;
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

.contact-info {
	margin-top: 1rem;
}

.contact-info p {
	margin-bottom: 0.5rem;
	color: whitesmoke;
	font-size: 0.95rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #cbd5e1;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	font-weight: 500;
	z-index: 2;
}

.footer-links a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: wheat;
	transition: width 0.3s ease;
}

.footer-links a:hover {
	color: #60a5fa;
	transform: translateX(5px);
}

.footer-links a:hover::after {
	width: 100%;
}

.footer-bottom {
	border-top: 2px solid rgba(59, 130, 246, 0.2);
	padding-top: 2.5rem;
	position: relative;
	z-index: 2;
	text-align: center;
}

.footer-text p {
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 1.2rem;
	color: #94a3b8;
	font-weight: 400;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #1a202c;
	color: white;
	padding: 1rem 0;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	border-top: 3px solid #3b82f6;
}

.cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	gap: 2rem;
	flex-wrap: wrap;
}

.cookie-content p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.4;
	flex: 1;
	min-width: 300px;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 0.5rem 1.5rem;
	border: none;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.cookie-accept {
	background: #22c55e;
	color: white;
}

.cookie-accept:hover {
	background: #16a34a;
}

.cookie-decline {
	background: transparent;
	color: #94a3b8;
	border: 1px solid #374151;
}

.cookie-decline:hover {
	background: #374151;
	color: white;
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		padding: 0 1rem;
	}

	.cookie-content p {
		text-align: center;
		min-width: auto;
	}

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

/* Modern Reviews Section */
.modern-reviews {
	padding: 5rem 0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.modern-reviews .section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.modern-reviews .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 1rem;
	position: relative;
}

.modern-reviews .section-subtitle {
	font-size: 1.1rem;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.modern-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(320px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.modern-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f5f9;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}
.modern-card1 {
	background: white;
	border-radius: 16px;
	padding: 0;

	position: relative;
	overflow: hidden;
}
.modern-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #1d4ed8);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.modern-card:hover::before {
	transform: scaleX(1);
}

.modern-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.review-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: linear-gradient(45deg, #22c55e, #16a34a);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.featured-badge {
	background: linear-gradient(45deg, #f59e0b, #d97706);
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.review-logo-container {
	background: #f8fafc;
	padding: 0.75rem;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.review-logo {
	width: 80px;
	height: 50px;
	object-fit: contain;
}

.review-rating .stars-container {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.review-rating .stars {
	margin-top: 1rem;
	font-size: 2rem;
	color: #fbbf24;
	margin-bottom: 0.25rem;
}

.review-rating .rating-number {
	font-size: 1.5rem;
	font-weight: 700;
	margin-right: 10px;
	color: #374151;
}

.review-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.75rem;
}

.review-description {
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.review-highlights {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.highlight-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #f1f5f9;
	padding: 0.5rem 0.75rem;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	font-size: 0.875rem;
	font-weight: 500;
	color: #374151;
}

.highlight-item i {
	color: #3b82f6;
	font-size: 0.875rem;
}

.review-features {
	list-style: none;
	margin-bottom: 2rem;
	padding: 0;
}

.review-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0;
	color: #374151;
	font-size: 0.9rem;
	line-height: 1.4;
}

.review-features i {
	color: #22c55e;
	font-size: 0.875rem;
	width: 16px;
}

.review-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	flex-direction: column;
}

.btn-review {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
	text-align: center;
	flex: 1;
	min-width: 120px;
}

.btn-review.btn-outline {
	background: transparent;
	border: 2px solid #e2e8f0;
	color: #374151;
}

.btn-review.btn-outline:hover {
	border-color: #3b82f6;
	color: #3b82f6;
}

.btn-review.btn-primary {
	background: linear-gradient(45deg, #3b82f6, #1d4ed8);
	color: white;
}

.btn-review.btn-primary:hover {
	background: linear-gradient(45deg, #1d4ed8, #1e40af);
	transform: translateY(-1px);
}

/* Modern Betting Guide */
.modern-guide {
	padding: 5rem 0;
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	color: white;
}

.modern-guide .section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.modern-guide .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1rem;
}

.modern-guide .section-subtitle {
	font-size: 1.1rem;
	color: #cbd5e1;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.modern-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	align-items: start;
}

.guide-section {
	margin-bottom: 2rem;
}

.guide-section .guide-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, #3b82f6, #1d4ed8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.guide-section .guide-icon i {
	font-size: 1.5rem;
	color: white;
}

.guide-section h3 {
	font-size: 1.75rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1rem;
}

.guide-section p {
	color: #cbd5e1;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.criteria-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.criteria-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.criteria-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-4px);
}

.criteria-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, #22c55e, #16a34a);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.criteria-icon i {
	font-size: 1.25rem;
	color: white;
}

.criteria-content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	margin-bottom: 0.5rem;
}

.criteria-content p {
	color: #cbd5e1;
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

.guide-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.guide-tips {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
	backdrop-filter: blur(10px);
}

.tips-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.tips-header i {
	font-size: 1.5rem;
	color: #fbbf24;
}

.tips-header h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: white;
	margin: 0;
}

.tip-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.tip-number {
	width: 32px;
	height: 32px;
	background: linear-gradient(45deg, #3b82f6, #1d4ed8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875rem;
	color: white;
	flex-shrink: 0;
}

.tip-item p {
	color: #cbd5e1;
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

.tip-item strong {
	color: white;
}

.guide-stats {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 2rem;
	backdrop-filter: blur(10px);
}

.guide-stats h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: white;
	margin-bottom: 1.5rem;
	text-align: center;
}

.stat-item {
	text-align: center;
	margin-bottom: 1.5rem;
}

.stat-number {
	font-size: 2rem;
	font-weight: 800;
	color: #22c55e;
	line-height: 1;
	margin-bottom: 0.25rem;
}

.stat-label {
	color: #0a0a0a;
	font-size: 0.875rem;
	font-weight: 500;
}

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

	.guide-sidebar {
		order: -1;
	}

	.criteria-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

@media (max-width: 768px) {
	.modern-reviews {
		padding: 3rem 0;
	}

	.modern-reviews .section-title,
	.modern-guide .section-title {
		font-size: 2rem;
	}

	.modern-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.modern-card {
		padding: 1.5rem;
	}

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

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

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

	.modern-guide {
		padding: 3rem 0;
	}

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

	.criteria-item {
		padding: 1rem;
	}
	.comparison-section {
		padding: 2rem 0;
		background-color: #f8f9fa;
	}

	.guide-tips,
	.guide-stats {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.modern-reviews .section-title,
	.modern-guide .section-title {
		font-size: 1.75rem;
	}

	.modern-card {
		padding: 1rem;
		margin: 0 0.5rem;
	}

	.review-logo {
		width: 60px;
		height: 40px;
	}

	.review-highlights {
		gap: 0.5rem;
	}

	.highlight-item {
		font-size: 0.8rem;
		padding: 0.375rem 0.5rem;
	}

	.btn-review {
		padding: 0.625rem 1rem;
		font-size: 0.8rem;
	}

	.review-actions {
		flex-direction: column;
	}

	.guide-section h3 {
		font-size: 1.5rem;
	}
	.review-rating .stars {
		margin-top: 0.5rem;
		font-size: 1.5rem;
		color: #fbbf24;
		margin-bottom: 0.25rem;
	}

	.review-rating .rating-number {
		font-size: 1.5rem;
		font-weight: 700;
		margin-right: 0px;
		text-align: center;
		color: #374151;
	}
	.review-rating .stars-container {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
