/* 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: var(--text-primary);
	background-color: var(--bg-primary);
	font-optical-sizing: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.75rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1.125rem;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.75rem;
	}
	h3 {
		font-size: 1.5rem;
	}
	h4 {
		font-size: 1.25rem;
	}
	h5 {
		font-size: 1.125rem;
	}
	h6 {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.75rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1.25rem;
	}
	h4 {
		font-size: 1.125rem;
	}
	h5 {
		font-size: 1rem;
	}
	h6 {
		font-size: 0.875rem;
	}
}

p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.mt-150 {
	margin-top: 150px;
}
@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}
	.footer-section {
		display: flex;
		justify-content: center;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}
.main-content {
	margin-top: 60px;
}
@media (max-width: 480px) {
	.container {
		padding: 0 12px;
	}
	.main-content {
		margin-top: 60px;
	}
	.section-header-enhanced h2 {
		font-size: 2rem !important;
	}
}
.main-content {
	margin-top: 100px;
}
/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border: none;
	border-radius: var(--radius-md);
	text-decoration: none;
	font-weight: 600;
	font-family: var(--font-body);
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.025em;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--bg-gradient);
	color: var(--text-white);
	border: none;
	box-shadow: var(--shadow-md);
	border-radius: var(--radius-md);
	font-weight: 600;
	letter-spacing: 0.025em;
}

.btn-primary:hover {
	color: white;
	background: #000000;
	transform: translateY(-3px);
	box-shadow: var(--shadow-xl);
}

.btn-secondary {
	background-color: var(--gray-100);
	color: var(--text-primary);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-md);
	font-weight: 500;
}

.btn-secondary:hover {
	background-color: var(--gray-200);
	border-color: var(--gray-300);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-outline {
	background-color: transparent;
	color: var(--primary-red);
	border: 2px solid var(--primary-red);
	border-radius: var(--radius-md);
	font-weight: 600;
}

.btn-outline:hover {
	background: var(--bg-gradient);
	color: var(--text-white);
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-large {
	padding: 18px 36px;
	font-size: 18px;
	font-weight: 700;
}

@media (max-width: 768px) {
	.btn {
		padding: 12px 24px;
		font-size: 15px;
	}

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

@media (max-width: 480px) {
	.btn {
		padding: 12px 20px;
		font-size: 14px;
	}

	.btn-large {
		padding: 14px 28px;
		font-size: 15px;
	}
}
:root {
	/* Modern Dark Red Color Palette */
	--primary-red: #8b1538;
	--primary-red-dark: #6d1028;
	--primary-red-light: #a91d42;
	--secondary-purple: #860000;
	--accent-red: #8b1538;
	--accent-green: #10b981;
	--accent-yellow: #f59e0b;

	/* Neutral Colors */
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;

	/* Text Colors */
	--text-primary: #111827;
	--text-secondary: #4b5563;
	--text-tertiary: #6b7280;
	--text-white: #ffffff;
	--text-light: #f9fafb;

	/* Background Colors */
	--bg-primary: #ffffff;
	--bg-secondary: #f9fafb;
	--bg-tertiary: #f3f4f6;
	--bg-dark: #111827;
	--bg-gradient: linear-gradient(135deg, #8b1538 0%, #a91d42 100%);

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
		0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
		0 8px 10px -6px rgb(0 0 0 / 0.1);
	--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

	/* Typography */
	--font-heading: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

	/* Transitions */
	--transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	--bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

	/* Border Radius */
	--radius-sm: 6px;
	--radius: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;
}

/* Ultra Modern Header with Glassmorphism */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(15, 15, 25, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100vw;
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(25, 118, 210, 0.1) 0%,
		rgba(33, 150, 243, 0.05) 50%,
		rgba(25, 118, 210, 0.1) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.header.scrolled {
	background: rgba(15, 15, 25, 0.95);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-bottom: 1px solid rgba(25, 118, 210, 0.3);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(25, 118, 210, 0.2);
}

.header.scrolled::before {
	opacity: 1;
}

.navbar {
	padding: 20px 0;
	position: relative;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--text-white);
}

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

.logo-text {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 800;
	background: linear-gradient(135deg, #8b1538, #a91d42, #8b1538);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

/* Modern Navigation Menu */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	position: relative;
}

.nav-link {
	color: var(--text-white);
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.75rem 1.5rem;
	border-radius: 12px;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.nav-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(25, 118, 210, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #8b1538, #a91d42);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover {
	color: #42a5f5;
	background: rgba(25, 118, 210, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(25, 118, 210, 0.3);
}

.nav-link:hover::before {
	left: 100%;
}

.nav-link:hover::after {
	width: 80%;
}

/* Enhanced Dropdown */
.nav-dropdown {
	position: relative;
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.dropdown-arrow {
	transition: transform 0.3s ease;
	font-size: 0.8rem;
}

.nav-dropdown:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 1rem;
	width: 200px;
	max-height: 70vh;
	opacity: 0;
	visibility: hidden;
	transform: translateY(0px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(25, 118, 210, 0.1);
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.dropdown-menu::-webkit-scrollbar {
	width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
	background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
}

.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	color: var(--text-white);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	margin-bottom: 0.5rem;
}

.dropdown-item:last-child {
	margin-bottom: 0;
}

.dropdown-item img {
	height: 36px !important;
	width: auto;
	filter: brightness(1.2);
	transition: all 0.3s ease;
}

.dropdown-item:hover {
	background: rgb(255, 255, 255);
}

.dropdown-item:hover img {
	filter: brightness(1.5);
}

/* Ultra Modern Hamburger Menu */
.nav-hamburger,
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
	position: relative;
	z-index: 1020;
	background: transparent;
	border: none;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.nav-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
}

.nav-toggle .hamburger-icon,
.nav-toggle .close-icon {
	font-size: 20px;
	color: #ffffff;
	transition: all 0.3s ease;
}

.nav-toggle .close-icon {
	display: none;
}

.nav-toggle.active .hamburger-icon {
	display: none;
}

.nav-toggle.active .close-icon {
	display: block;
}

/* Position close button on right when mobile menu is active */
.nav-toggle.active {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1020;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

/* Mobile Menu Overlay */
.nav-menu.mobile-open {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(10, 10, 10, 0.98);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	z-index: 1000;
	animation: mobileMenuSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes mobileMenuSlideIn {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.nav-menu.mobile-open .nav-link {
	font-size: 1.5rem;
	padding: 1rem 2rem;
	border: 1px solid rgba(25, 118, 210, 0.3);
	background: rgba(25, 118, 210, 0.1);
	min-width: 200px;
	text-align: center;
	transform: translateY(50px);
	opacity: 0;
	animation: mobileItemSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-menu.mobile-open .nav-link:nth-child(1) {
	animation-delay: 0.1s;
}
.nav-menu.mobile-open .nav-link:nth-child(2) {
	animation-delay: 0.2s;
}
.nav-menu.mobile-open .nav-link:nth-child(3) {
	animation-delay: 0.3s;
}
.nav-menu.mobile-open .nav-link:nth-child(4) {
	animation-delay: 0.4s;
}

@keyframes mobileItemSlideIn {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-hamburger,
	.nav-toggle {
		display: flex;
	}

	.nav-menu {
		display: none;
	}

	.nav-menu.active {
		display: flex;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 0;
		gap: 1rem;
		z-index: 1000;
		animation: mobileMenuSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		overflow-y: auto;
	}

	.nav-menu.active .nav-link {
		font-size: 1.1rem;
		font-weight: 500;
		padding: 16px 32px;
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 12px;
		min-width: 280px;
		max-width: 320px;
		width: 90%;
		text-align: center;
		transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		color: #ffffff !important;
		text-decoration: none;
		display: block;
		margin: 4px 0;
		position: relative;
		overflow: hidden;
	}

	.nav-menu.active .nav-link::before {
		content: "";
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.1),
			transparent
		);
		transition: left 0.5s;
	}

	.nav-menu.active .nav-link:hover::before {
		left: 100%;
	}

	.nav-menu.active .nav-link:hover {
		background: rgba(139, 21, 56, 0.15);
		border-color: rgba(139, 21, 56, 0.3);
		color: #ffffff !important;
		transform: translateY(-2px) scale(1.02);
		box-shadow: 0 8px 25px rgba(139, 21, 56, 0.2);
	}

	.nav-menu.active .nav-dropdown {
		position: relative;
		width: 90%;
		max-width: 320px;
	}

	.nav-menu.active .nav-dropdown > .nav-link {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		/* Remove special gradient - use same as other buttons */
	}

	.nav-menu.active .nav-dropdown.active .dropdown-arrow {
		transform: rotate(180deg);
	}

	/* Remove the CSS arrow since HTML already has FontAwesome chevron */

	/* This rule will be overridden by the more specific ones below */

	.nav-menu.active .dropdown-item {
		display: flex;
		align-items: center;
		padding: 0.75rem 1rem;
		color: var(--text-white);
		text-decoration: none;
		border-radius: 8px;
		transition: all 0.3s ease;
		margin-bottom: 0.5rem;
		justify-content: center;
	}

	.nav-menu.active .dropdown-item:last-child {
		margin-bottom: 0;
	}

	.nav-menu.active .dropdown-item:hover {
		background: rgba(25, 118, 210, 0.2);
		transform: translateX(5px);
	}

	.nav-menu.active .dropdown-item img {
		height: 24px;
		width: auto;
		filter: brightness(1.2);
		transition: all 0.3s ease;
	}

	.nav-menu.active .dropdown-item:hover img {
		filter: brightness(1.5);
		transform: scale(1.1);
	}

	/* Mobile dropdown - same as desktop */
	.nav-menu.active .nav-dropdown .dropdown-menu {
		display: none;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		max-height: 0;
		overflow: hidden;
		background: rgba(26, 26, 26, 0.95);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 16px;
		margin-top: 8px;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
			0 8px 16px rgba(25, 118, 210, 0.1);
	}

	/* Show dropdown when nav-dropdown has active class */
	.nav-menu.active .nav-dropdown.active .dropdown-menu {
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		max-height: 300px !important;
		overflow: visible !important;
		padding: 1rem;
	}

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

	.navbar {
		padding: 15px 0;
	}

	/* Mobile Menu Animations */
	@keyframes mobileMenuSlideIn {
		0% {
			opacity: 0;
			transform: translateY(-100%);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* Stagger animation for menu items */
	.nav-menu.active .nav-link:nth-child(1) {
		animation-delay: 0.1s;
	}
	.nav-menu.active .nav-link:nth-child(2) {
		animation-delay: 0.2s;
	}
	.nav-menu.active .nav-dropdown:nth-child(3) {
		animation-delay: 0.3s;
	}
	.nav-menu.active .nav-link:nth-child(4) {
		animation-delay: 0.4s;
	}
	.nav-menu.active .nav-link:nth-child(5) {
		animation-delay: 0.5s;
	}

	.nav-menu.active .nav-link,
	.nav-menu.active .nav-dropdown {
		animation: slideInFromLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	}

	@keyframes slideInFromLeft {
		0% {
			opacity: 0;
			transform: translateX(-30px);
		}
		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}
}

.logo-text {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 800;
	transition: var(--transition);
}

.logo-text img {
	width: 150px;
}

.logo-text:hover {
	transform: scale(1.05);
	color: var(--accent-yellow);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav-link {
	color: var(--text-white);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-link:hover {
	color: #a61c41;
	transform: translateY(-2px);
}

/* Dropdown */
.nav-dropdown {
	position: relative;
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.dropdown-arrow {
	transition: var(--transition);
	font-size: 0.8rem;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: black;
	border-radius: 15px;
	padding: 20px 15px;
	box-shadow: 0 15px 35px var(--shadow-dark);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-10px);
	transition: var(--transition);
	min-width: 220px;
	z-index: 1001;
	border: 1px solid rgba(255, 202, 40, 0.2);
}

.dropdown-item {
	display: block;
	padding: 12px 15px;
	text-align: center;
	transition: var(--transition);
	border-radius: 12px;
	margin-bottom: 8px;
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
	border: 1px solid rgba(46, 125, 50, 0.1);
	text-decoration: none;
}

.dropdown-item:hover {
	background: linear-gradient(135deg, var(--accent-yellow), #ffd54f);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 202, 40, 0.3);
}

.dropdown-item:last-child {
	margin-bottom: 0;
}

.dropdown-item img {
	height: 35px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	transition: var(--transition);
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.dropdown-item:hover img {
	transform: scale(1.05);
}

/* Desktop hover only when screen is large enough */
@media (min-width: 769px) {
	.nav-dropdown:hover .dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}
}

/* Duplicate hamburger styles removed - using the Ultra Modern version above */

/* Mobile Menu Styles */
@media (max-width: 768px) {
	.nav-hamburger,
	.nav-toggle {
		display: flex !important;
		position: relative;
		z-index: 1020;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100vw;
		height: 100vh;
		background: rgba(10, 10, 10, 0.98);
		backdrop-filter: blur(30px);
		-webkit-backdrop-filter: blur(30px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0;
		transition: left 0.3s ease-in-out;
		z-index: 1010;
		gap: 2rem;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.nav-menu.active {
		left: 0;
		padding-top: 0;
		padding-bottom: 40px;
	}

	/* Mobile menu header with logo and close button */
	.nav-menu.active::before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 80px;
		background: rgba(15, 15, 25, 0.95);
		backdrop-filter: blur(20px);
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		z-index: 1015;
	}

	.nav-menu.active::after {
		content: "";
		background-image: url("/assets/logo.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		width: 100px;
		height: 50px;
		position: fixed;
		top: 15px;
		left: 20px;
		z-index: 1016;
	}

	/* Prevent body scroll when mobile menu is open */
	body.mobile-menu-open {
		overflow: hidden;
		position: fixed;
		width: 100%;
	}

	.nav-link {
		display: block;
		width: 280px;
		max-width: 90vw;
		text-align: center;
		padding: 16px 32px;
		font-size: 1.2rem;
		font-weight: 500;
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 12px;
		color: #ffffff !important;
		text-decoration: none;
		transition: all 0.3s ease;
	}

	.nav-link:hover {
		background: rgba(255, 255, 255, 0.1);
		transform: none;
	}

	.nav-dropdown {
		width: 280px;
		max-width: 90vw;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.dropdown-toggle {
		justify-content: center;
		width: 100% !important;
		padding: 16px 32px;
		font-size: 1.2rem;
		font-weight: 500;
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 12px;
		color: #ffffff !important;
		text-decoration: none;
		transition: all 0.3s ease;
	}

	.dropdown-menu {
		position: static;
		opacity: 0;
		visibility: hidden;
		transform: none;
		background: rgba(255, 255, 255, 0.08);
		backdrop-filter: blur(10px);
		margin: 8px 0 0 0;
		transition: all 0.3s ease;
		max-height: 0;
		overflow-y: auto;
		overflow-x: hidden;
		border-radius: 12px;
		padding: 0;
		width: 100%;
		border: 1px solid rgba(255, 255, 255, 0.15);
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
		scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
	}

	.dropdown-menu::-webkit-scrollbar {
		width: 4px;
	}

	.dropdown-menu::-webkit-scrollbar-track {
		background: transparent;
	}

	.dropdown-menu::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.3);
		border-radius: 2px;
	}

	.nav-dropdown.active .dropdown-menu {
		opacity: 1;
		visibility: visible;
		max-height: 60vh;
		padding: 12px;
		margin-top: 8px;
	}

	.dropdown-item {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 8px 12px;
		text-align: center;
		transition: all 0.3s ease;
		border-radius: 8px;
		margin-bottom: 6px;
		background: rgba(255, 255, 255, 1);
		border: 1px solid rgba(255, 255, 255, 0.15);
		text-decoration: none;
		color: #ffffff;
	}

	.dropdown-item:hover {
		background: rgba(255, 255, 255, 0.2);
		border-color: rgba(255, 255, 255, 0.3);
	}

	.dropdown-item img {
		max-width: 80px;
		height: auto;
	}

	.dropdown-item:hover,
	.dropdown-item:active {
		background: rgba(255, 255, 255, 0.25);
		transform: scale(1.02);
	}

	.dropdown-item:last-child {
		margin-bottom: 0;
	}

	.dropdown-item img {
		height: 28px;
		max-width: 90px;
		object-fit: contain;
	}
}

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

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

	.nav-menu {
		padding: 60px 15px;
	}

	.dropdown-item img {
		height: 24px;
		max-width: 80px;
	}
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #8b1538 0%, #6d1028 100%);
	color: white;
	padding: 80px 0;
	display: flex;
	align-items: center;
	min-height: 500px;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

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

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

/* Enhanced Featured Platforms - Light Mode */
.featured-platforms-enhanced {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
	position: relative;
	overflow: hidden;
}

.featured-platforms-enhanced::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
		repeat;
}

.elite-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(45deg, #1e40af, #3b82f6);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	font-weight: 600;
	margin: 0 auto 2rem;
	display: flex;
	justify-content: center;
	width: fit-content;
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
	border: 1px solid rgba(59, 130, 246, 0.5);
}

.elite-badge i {
	color: #fbbf24;
	font-size: 1.1rem;
}

.featured-platforms-enhanced h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 4rem;
	color: #1e293b;
	font-weight: 800;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.platforms-grid-enhanced {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
}

.platform-card-enhanced {
	background: var(--bg-primary);
	border-radius: var(--radius-xl);
	padding: 2rem 1.5rem;
	text-align: center;
	position: relative;
	transition: var(--transition);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	min-height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* Rugby-themed subtle texture */
	background-image: radial-gradient(
			circle at 20% 80%,
			rgba(139, 21, 56, 0.02) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(139, 21, 56, 0.02) 0%,
			transparent 50%
		);
}

.platform-card-enhanced::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(139, 21, 56, 0.05),
		transparent
	);
	transform: translateX(-100%);
	transition: var(--transition-slow);
}

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

.platform-card-enhanced:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-2xl);
	border-color: var(--primary-red-light);
}

.featured-card {
	background: linear-gradient(
		145deg,
		rgba(139, 21, 56, 0.05),
		var(--bg-primary)
	);
	border: 2px solid var(--primary-red);
	box-shadow: 0 15px 35px rgba(139, 21, 56, 0.15);
}

.featured-card:hover {
	box-shadow: var(--shadow-2xl), 0 0 0 1px var(--primary-red-light);
	border-color: var(--primary-red-light);
}

.card-badges {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1rem;
	height: 35px;
}

.rank-badge {
	background: linear-gradient(45deg, #3b82f6, #1d4ed8);
	color: white;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.favorite-badge {
	background: linear-gradient(45deg, #ef4444, #dc2626);
	color: white;
	padding: 0.4rem 0.8rem;
	border-radius: 15px;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.8rem;
	font-weight: 600;
	box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.platform-logo-enhanced {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.logo-text {
	font-size: 1.8rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 100%;
}

.bwin-logo {
	color: #f59e0b;
	font-style: italic;
}

.unibet-logo {
	flex-direction: column;
	gap: 0.25rem;
}

.unibet-main {
	color: #1e293b;
	font-size: 1.5rem;
	letter-spacing: 1px;
}

.unibet-dots {
	display: flex;
	gap: 3px;
	justify-content: center;
}

.dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
}

.dot.green {
	background: #10b981;
}

.vbet-logo {
	color: #ec4899;
	align-items: center;
}

.vbet-logo i {
	font-size: 1.2rem;
	margin-right: 0.3rem;
}

.betclic-logo {
	color: #ef4444;
	font-style: italic;
}

.platform-rating-enhanced {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1.5rem;
}

.stars-enhanced {
	display: flex;
	gap: 2px;
}

.stars-enhanced i {
	color: #fbbf24;
	font-size: 1rem;
}

.rating-score {
	color: #1e293b;
	font-weight: 600;
	font-size: 1rem;
}

.bonus-info {
	margin-bottom: 1.5rem;
	color: #1e293b;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bonus-type {
	color: #64748b;
	font-size: 0.85rem;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.bonus-amount {
	font-size: 2.2rem;
	font-weight: 800;
	color: #3b82f6;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

.featured-card .bonus-amount {
	color: #f59e0b;
	text-shadow: 0 2px 10px rgba(245, 158, 11, 0.2);
}

.bonus-details {
	color: #475569;
	font-size: 0.9rem;
}

.platform-actions {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.btn-review {
	background: transparent;
	color: var(--text-secondary);
	border: 1px solid var(--gray-300);
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius-md);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-review:hover {
	background: var(--gray-50);
	color: var(--text-primary);
	border-color: var(--gray-400);
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}

.btn-visit {
	background: var(--bg-gradient);
	color: var(--text-white);
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: var(--radius-md);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.025em;
}

.btn-visit:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
	background: linear-gradient(
		135deg,
		var(--primary-red-dark) 0%,
		var(--secondary-purple) 100%
	);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.platforms-grid-enhanced {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.featured-platforms-enhanced h2 {
		font-size: 2.5rem;
	}

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

	.platform-card-enhanced {
		padding: 1.5rem;
		min-height: 380px;
	}

	.bonus-amount {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.featured-platforms-enhanced {
		padding: 60px 0;
	}

	.featured-platforms-enhanced h2 {
		font-size: 2rem;
	}

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

	.unibet-main {
		font-size: 1.3rem;
	}

	.platform-card-enhanced {
		min-height: 350px;
	}
}

/* Enhanced Tips Section */
.tips-section-enhanced {
	padding: 120px 0;
	background: var(--bg-secondary);
	position: relative;
	overflow: hidden;
}

.tips-section-enhanced::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b35' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E")
		repeat;
}

.section-header-tips {
	text-align: center;
	margin-bottom: 5rem;
	position: relative;
}

.tips-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(45deg, #8b1538, #6d1028);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	margin-bottom: 2rem;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
	animation: tipsBadgePulse 3s ease-in-out infinite;
}

@keyframes tipsBadgePulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
	}
}

.tips-badge i {
	font-size: 1.2rem;
	animation: lightbulbGlow 2s ease-in-out infinite alternate;
}
.section-header-tips h2 {
	color: white !important;
}
@keyframes lightbulbGlow {
	0% {
		color: #fff;
	}
	100% {
		color: #ffc107;
	}
}

.section-header-tips h2 {
	font-size: 3.5rem;
	color: #333;
	margin-bottom: 1.5rem;
	position: relative;
	background: linear-gradient(45deg, #333, #666);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@keyframes underlineExpand {
	0% {
		width: 100px;
	}
	100% {
		width: 150px;
	}
}

.section-header-tips p {
	font-size: 1.3rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.tips-grid-enhanced {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-bottom: 5rem;
	text-decoration: none;
}

.tip-card-enhanced {
	background: white;
	border-radius: 25px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 0;
	transform: translateY(50px) scale(0.9);
	cursor: pointer;
}

.tip-card-enhanced.animate {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.tip-card-enhanced:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

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

.tip-icon-wrapper {
	padding: 2rem 2rem 1rem;
	position: relative;
}

.tip-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #8b1538, #6d1028);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	position: relative;
	overflow: hidden;
	animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	25% {
		transform: translateY(-5px) rotate(2deg);
	}
	50% {
		transform: translateY(0) rotate(0deg);
	}
	75% {
		transform: translateY(-3px) rotate(-2deg);
	}
}

.tip-icon::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transform: rotate(45deg);
	animation: iconShine 3s linear infinite;
}

@keyframes iconShine {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
	100% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
}

.tip-icon i {
	font-size: 2rem;
	color: white;
	z-index: 1;
	position: relative;
}

.tip-category {
	display: inline-block;
	background: rgba(255, 107, 53, 0.1);
	color: #8b1538;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.tip-content-enhanced {
	padding: 0 2rem 2rem;
}

.tip-content-enhanced h3 {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 1rem;
	font-weight: 700;
	line-height: 1.3;
}

.tip-content-enhanced p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.tip-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	color: #999;
}

.tip-meta span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tip-meta i {
	color: #8b1538;
}

.tip-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(144, 0, 0, 0.95),
		rgba(73, 0, 0, 0.95)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.tip-card-enhanced:hover .tip-overlay {
	opacity: 1;
}

.tip-action {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	transform: scale(0.8);
	transition: all 0.3s ease;
}

.tip-card-enhanced:hover .tip-action {
	transform: scale(1);
	animation: actionPulse 1s ease-in-out infinite;
}

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

.tips-cta {
	text-align: center;
	background: white;
	padding: 3rem 2rem;
	border-radius: 25px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.tips-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 107, 53, 0.05),
		transparent
	);
	animation: ctaShine 3s linear infinite;
}

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

.tips-cta h3 {
	font-size: 2rem;
	color: #333;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.tips-cta p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

.tips-cta-btn {
	position: relative;
	z-index: 1;
	background: linear-gradient(45deg, #8b1538, #6d1028);
	border: none;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
	transition: all 0.3s ease;
}

.tips-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
	background: linear-gradient(45deg, #6d1028, #8b1538);
}

.tips-cta-btn i {
	margin-right: 0.5rem;
	animation: rocketBounce 2s ease-in-out infinite;
}

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

/* Responsive Design for Enhanced Tips */
@media (max-width: 768px) {
	.tips-section-enhanced {
		padding: 80px 0;
	}

	.section-header-tips h2 {
		font-size: 2.5rem;
	}

	.tips-grid-enhanced {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tip-card-enhanced {
		margin: 0 1rem;
	}

	.tips-cta {
		margin: 0 1rem;
		padding: 2rem 1.5rem;
	}

	.tips-cta h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.section-header-tips h2 {
		font-size: 2rem;
	}

	.tip-icon {
		width: 60px;
		height: 60px;
	}

	.tip-icon i {
		font-size: 1.5rem;
	}

	.tip-content-enhanced h3 {
		font-size: 1.3rem;
	}

	.tip-meta {
		flex-direction: column;
		gap: 0.5rem;
		align-items: flex-start;
	}
}

/* Footer */
.footer {
	background-color: #2c3e50;
	color: white;
	padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
	color: #8b1538;
}

.footer-section p,
.footer-section li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

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

.footer-section a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: #8b1538;
}

.contact-info p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact-info i {
	color: #8b1538;
	width: 16px;
}

.footer-bottom {
	border-top: 1px solid #34495e;
	padding-top: 2rem;
	text-align: center;
	color: #bdc3c7;
	font-size: 0.9rem;
}

/* Popup Styles */
.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.popup-overlay.active {
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup-overlay-max {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 11000;
	backdrop-filter: blur(5px);
}

.popup-overlay-max.active {
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	max-width: 500px;
	width: 90%;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
	margin-bottom: 1rem;
	color: #333;
}

.popup-content p {
	margin-bottom: 1.5rem;
	color: #666;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}
	.nav-menu.active {
		padding-top: 0;
		gap: 0.8rem;
		display: flex;
		/* justify-items: inherit; */
		align-items: center;
		height: 100vh;
		width: 100%;
		flex-direction: column;
		justify-content: center;
	}
	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	/* Mobile dropdown content improvements */
	.nav-dropdown .dropdown-content {
		position: static !important;
		display: none;
		opacity: 0;
		visibility: hidden;
		transform: none;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		margin: 0;
		transition: all 0.3s ease;
		max-height: 0;
		overflow: hidden;
		border-radius: 10px;
		width: 100%;
		margin-top: 8px;
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

	.nav-dropdown.active .dropdown-content {
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		max-height: 300px !important;
		overflow: visible !important;
		padding: 8px 0;
	}

	.nav-dropdown .dropdown-content a {
		display: block;
		padding: 10px 15px;
		text-align: center;
		transition: var(--transition);
		border-radius: 6px;
		margin: 2px 8px;
		background: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.1);
		text-decoration: none;
		color: var(--text-primary) !important;
		font-size: 0.95rem;
	}

	.nav-dropdown .dropdown-content a:hover,
	.nav-dropdown .dropdown-content a:active {
		background: rgba(139, 21, 56, 0.2);
		border-color: rgba(139, 21, 56, 0.3);
		transform: scale(1.02);
		color: var(--primary-red) !important;
	}

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

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

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

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

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

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

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

	.featured-platforms,
	.tips-section {
		padding: 40px 0;
	}

	.featured-platforms h2,
	.tips-section h2 {
		font-size: 2rem;
	}

	/* Fix small screen navigation */
	.nav-menu.active {
		padding-top: 0;
		gap: 0.8rem;
		display: flex;
		/* justify-items: inherit; */
		align-items: center;
		height: 100vh;
		width: 100%;
		flex-direction: column;
		justify-content: center;
	}

	.nav-menu.active .nav-link {
		font-size: 1rem;
		padding: 14px 28px;
		min-width: 260px;
		max-width: 300px;
	}

	.nav-menu.active .dropdown-item {
		padding: 0.75rem 1rem;
		margin-bottom: 0.5rem;
	}

	.nav-menu.active .dropdown-item img {
		height: 22px;
		width: auto;
	}

	/* Improve button spacing */
	.btn {
		padding: 10px 20px;
		font-size: 14px;
	}

	.btn-large {
		padding: 14px 28px;
		font-size: 16px;
	}
}

/* Modern Hero Section */
.hero-modern {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

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

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1.2);
	}
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(139, 21, 56, 0.9) 0%,
		rgba(169, 29, 66, 0.85) 50%,
		rgba(17, 24, 39, 0.9) 100%
	);
	z-index: -1;
}

.hero-content-modern {
	position: relative;
	z-index: 1;
	width: 100%;
	color: white;
	text-align: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.15);
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease-out 0.2s both;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
}

.hero-badge i {
	color: var(--accent-yellow);
	font-size: 1.1rem;
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease-out 0.4s both;
	background: rgba(255, 255, 255, 0.15);
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

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

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

	.hero-description {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

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

.title-line {
	display: block;
	font-weight: 400;
	color: white;
}

.title-highlight {
	display: block;
	background: linear-gradient(45deg, #a20000, #540000, #790000);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
}

.hero-description {
	font-size: 1.3rem;
	max-width: 600px;
	margin: 0 auto 3rem;
	opacity: 0.95;
	line-height: 1.6;
	animation: fadeInUp 1s ease-out 0.6s both;
	color: white;
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-bottom: 3rem;
	animation: fadeInUp 1s ease-out 0.8s both;
}

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

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--accent-yellow);
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	animation: fadeInUp 1s ease-out 1s both;
}

.hero-cta {
	background: linear-gradient(45deg, #fff, #f8f9fa);
	color: #8b1538;
	border: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transform: translateY(0);
	transition: all 0.3s ease;
}

.hero-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	color: #8b1538;
}

.hero-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.hero-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	transform: translateY(-3px);
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.scroll-arrow {
	width: 40px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: all 0.3s ease;
}

.scroll-arrow:hover {
	border-color: white;
	color: white;
	transform: scale(1.1);
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

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

/* How It Works Section */
.how-it-works {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}

.how-it-works::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
		repeat;
}

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

.section-header h2 {
	font-size: 3rem;
	color: #333;
	margin-bottom: 1rem;
	position: relative;
}

.section-header h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(45deg, #8b1538, #6d1028);
	border-radius: 2px;
}

.section-header p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.steps-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	position: relative;
}

.step-item {
	background: white;
	padding: 2.5rem 2rem;
	border-radius: 20px;
	text-align: center;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(50px);
}

.step-item.animate {
	opacity: 1;
	transform: translateY(0);
}

.step-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-item::before {
	content: attr(data-step);
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	background: linear-gradient(45deg, #8b1538, #6d1028);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 0.9rem;
}

.step-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #8b1538, #6d1028);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	position: relative;
	overflow: hidden;
}

.step-icon::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s ease;
}

.step-item:hover .step-icon::before {
	left: 100%;
}

.step-icon i {
	font-size: 2rem;
	color: white;
	z-index: 1;
}

.step-content h3 {
	font-size: 1.4rem;
	color: #333;
	margin-bottom: 1rem;
}

.step-content p {
	color: #666;
	line-height: 1.6;
}

/* Statistics Section */
.statistics-section {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.stats-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.stats-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.stats-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(17, 24, 39, 0.95) 0%,
		rgba(139, 21, 56, 0.9) 50%,
		rgba(99, 102, 241, 0.9) 100%
	);
	z-index: -1;
}

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

.section-header-white h2 {
	font-size: 3rem;
	margin-bottom: 1rem;
	position: relative;
	color: white;
}

.section-header-white h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(45deg, var(--accent-yellow), var(--accent-red));
	border-radius: var(--radius);
}

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

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

.stat-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 2.5rem 2rem;
	border-radius: 20px;
	text-align: center;
	color: white;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(50px);
}

.stat-card.animate {
	opacity: 1;
	transform: translateY(0);
}

.stat-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, #8b1538, #6d1028);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

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

.stat-number-large {
	font-size: 3rem;
	font-weight: 800;
	color: #ffc107;
	margin-bottom: 0.5rem;
	display: block;
}

.stat-label-large {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: block;
}

.stat-description {
	font-size: 0.9rem;
	opacity: 0.8;
}

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

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #f8f9fa;
	border-radius: 15px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(30px);
}

.faq-item.animate {
	opacity: 1;
	transform: translateY(0);
}

.faq-item:hover {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.faq-question h3 {
	font-size: 1.1rem;
	color: #333;
	margin: 0;
	flex: 1;
}

.faq-icon {
	color: #8b1538;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	background: white;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 1.5rem 2rem;
}

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

/* 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: black;
	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-red-light);
}
.mt-40 {
	margin-top: 200px !important;
}
.review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.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;
	margin-bottom: 3rem;
}

.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: var(--bg-primary);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-xl);
	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: var(--text-primary);
	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: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	background: var(--bg-primary);
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-md);
	padding: 1rem;
	color: var(--text-primary);
	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-red);
	background: var(--bg-primary);
	box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
	transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-tertiary);
}

.form-group select option {
	background: var(--bg-primary);
	color: var(--text-primary);
}

/* 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: #1e293b;
	position: relative;
	overflow: hidden;
	padding: 6rem 0;
}

.responsible-gambling-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 25% 25%,
			rgba(244, 67, 54, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 75% 75%,
			rgba(25, 118, 210, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(255, 193, 7, 0.1) 0%,
			transparent 60%
		);
	animation: responsibleLightPulse 25s ease-in-out infinite;
	pointer-events: none;
}

@keyframes responsibleLightPulse {
	0%,
	100% {
		opacity: 0.8;
		transform: rotate(0deg) scale(1);
	}
	25% {
		opacity: 1;
		transform: rotate(90deg) scale(1.1);
	}
	50% {
		opacity: 0.9;
		transform: rotate(180deg) scale(1.05);
	}
	75% {
		opacity: 1;
		transform: rotate(270deg) scale(1.15);
	}
}

.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: var(--text-light);
	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: rgba(26, 26, 26, 0.9);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(244, 67, 54, 0.3);
	border-radius: 24px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
}

.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: var(--accent-white);
	margin-bottom: 1.5rem;
	font-size: 1.6rem;
	font-weight: 700;
	transition: all 0.4s ease;
}

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

.responsible-card p {
	color: var(--text-light);
	line-height: 1.7;
	font-size: 1.05rem;
	transition: all 0.4s ease;
	opacity: 0.9;
}

.responsible-card:hover p {
	color: var(--accent-white);
	opacity: 1;
	transform: translateY(-3px);
}

.help-resources {
	background: rgba(26, 26, 26, 0.8);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(244, 67, 54, 0.3);
	border-radius: 24px;
	padding: 3rem;
	margin-bottom: 3rem;
	position: relative;
	overflow: hidden;
}

.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: #fff;
	margin-bottom: 1.5rem;
	font-size: 2rem;
	font-weight: 800;
	text-align: center;
	position: relative;
	z-index: 2;
}

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

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

.help-contact {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	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: rgb(255, 153, 0);
	transform: scale(1.1) rotate(10deg);
}

.help-contact div {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.help-contact strong {
	color: white;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
}

.help-contact span {
	color: var(--text-light);
	opacity: 0.9;
	font-size: 1rem;
}

.age-restriction {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	background: rgba(26, 26, 26, 0.8);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(244, 67, 54, 0.4);
	border-radius: 24px;
	padding: 2.5rem;
	margin-bottom: 3rem;
	position: relative;
	overflow: hidden;
}

.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: 100px;
	height: 100px;
	background: linear-gradient(135deg, #f44336, #d32f2f);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 900;
	flex-shrink: 0;
	box-shadow: 0 15px 40px rgba(244, 67, 54, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	animation: ageBadgePulse 3s ease-in-out infinite;
	position: relative;
	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: #fff;
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-weight: 800;
}
.text-white {
	color: white !important;
}
.age-text p {
	color: var(--text-light);
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.6;
}

.responsible-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 3rem;
}

.responsible-logos a {
	transition: all 0.4s ease;
	padding: 20px 25px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.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: 40px;
	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: 1rem;
	}

	.responsible-logos a {
		min-width: 100px;
		padding: 12px 15px;
	}

	.responsible-logos img {
		height: 30px;
	}
}

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

	.responsible-logos a {
		width: 100%;
	}
}
@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;
		width: 100%;
		justify-content: center;
	}
	.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: rgba(0, 0, 0, 0.961);
	color: var(--text-light);
	padding: 3rem 0 1rem;
	border-top: 1px solid var(--tertiary-black);
}

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

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

.footer-logo-img {
	height: 3rem;
	width: auto;
}

.footer-logo .logo-text {
	color: var(--primary-red, #8b1538);
}

.footer-section h4 {
	color: var(--accent-white);
	margin-bottom: 1rem;
	font-size: 1.2rem;
}
.footer-section p {
	font-size: 1rem;
}

.contact-info {
	margin-top: 1rem;
}

.contact-info p {
	margin-bottom: 0.5rem;
	color: var(--text-light);
	font-size: 0.95rem;
}

.footer-links {
	list-style: none;
}

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

.footer-links a {
	color: var(--text-light);
	text-decoration: none;
	transition: var(--transition);
	position: relative;
}

.footer-links a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--accent-white);
	transition: width 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent-white);
}

.footer-links a:hover::after {
	width: 100%;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 2rem;
}

.footer-text p {
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	color: white;
}
/* all 3 section */

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