/* ============================================
   COLOR PALETTE & DESIGN TOKENS
   ============================================ */

:root {
	--primary: #00d4ff;
	--primary-dark: #0099cc;
	--secondary: #ff006e;
	--accent: #00ff88;
	--accent-purple: #a100f2;
	--dark-bg: #0a0e27;
	--darker-bg: #050812;
	--light-text: #ffffff;
	--muted-text: #a0aec0;
	--border-color: rgba(0, 212, 255, 0.2);

	--gradient-primary: linear-gradient(
		135deg,
		#00d4ff 0%,
		#a100f2 100%
	);
	--gradient-secondary: linear-gradient(
		135deg,
		#ff006e 0%,
		#00d4ff 100%
	);
	--gradient-neon: linear-gradient(
		135deg,
		#00ff88 0%,
		#00d4ff 100%
	);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: var(--dark-bg);
	color: var(--light-text);
	line-height: 1.6;
	overflow-x: hidden;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Orbitron", sans-serif;
	font-weight: 700;
}

.section-title {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--muted-text);
	margin-bottom: 3rem;
}

.gradient-text {
	background: var(--gradient-secondary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border: 2px solid transparent;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	font-family: "Poppins", sans-serif;
}

.btn-primary {
	background: var(--gradient-primary);
	color: var(--dark-bg);
	border-color: var(--primary);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

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

.btn-secondary:hover {
	background: rgba(0, 212, 255, 0.1);
	transform: translateY(-3px);
}

.btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
}

.btn-icon {
	font-size: 1.3rem;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: linear-gradient(
		180deg,
		rgba(10, 14, 39, 0.98) 0%,
		rgba(10, 14, 39, 0.95) 100%
	);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 212, 255, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	padding: 0.75rem 0;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	padding: 0.5rem 0;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	width: 100%;
	flex-wrap: nowrap;
}

.nav-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	font-size: 1.5rem;
	font-weight: 800;
	white-space: nowrap;
	transition: all 0.3s ease;
	flex-shrink: 0;
	min-width: fit-content;
	line-height: 1;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.nav-brand:hover {
	transform: scale(1.08);
}

.logo-icon {
	font-size: 2.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	height: 2.2rem;
	width: 2.2rem;
	flex-shrink: 0;
}

.logo-text {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 0.5px;
	line-height: 1.2;
	padding-top: 0.15rem;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 0.25rem;
	flex: 1 1 auto;
	justify-content: center;
	min-width: 0;
	overflow: hidden;
}

.nav-link {
	color: var(--light-text);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	padding: 0.5rem 0.85rem;
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
	white-space: nowrap;
	flex-shrink: 0;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 1rem;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: var(--primary);
	background: rgba(0, 212, 255, 0.08);
}

.nav-link:hover::after {
	width: calc(100% - 2rem);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	white-space: nowrap;
	flex-shrink: 0;
}

.btn-sm {
	padding: 0.55rem 1rem;
	font-size: 0.85rem;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 0.4rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
	transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
	scale: 1.15;
	transform-origin: center;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 2.5px;
	background: linear-gradient(
		90deg,
		var(--primary),
		var(--accent-purple)
	);
	border-radius: 2px;
	transition: all 0.3s
		cubic-bezier(0.4, 0.1, 0.2, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(10, 14, 39, 0.99) 0%,
		rgba(5, 8, 18, 0.98) 100%
	);
	backdrop-filter: blur(20px);
	z-index: 999;
	overflow-y: auto;
	padding-top: 70px;
	animation: slideDown 0.3s
		cubic-bezier(0.4, 0.1, 0.2, 1);
}

.mobile-menu.active {
	display: block;
}

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

.mobile-nav-links {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.mobile-nav-links li {
	border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

.mobile-nav-links li:last-child {
	border-bottom: none;
}

.mobile-nav-links .nav-link {
	display: block;
	padding: 0.9rem 1.5rem;
	border-radius: 0;
	font-size: 1rem;
	padding-left: 1.5rem;
	transition: all 0.3s ease;
}

.mobile-nav-links .nav-link::after {
	display: none;
}

.mobile-nav-links a:hover {
	background: rgba(0, 212, 255, 0.1);
	padding-left: 2.25rem;
	color: var(--primary);
}

.mobile-nav-actions {
	border-top: 1px solid rgba(0, 212, 255, 0.1);
	padding: 1.25rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: auto;
}

.mobile-nav-actions .btn {
	width: 100%;
	justify-content: center;
}

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

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 60px;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		#0a0e27 0%,
		#1a1f3a 50%,
		#0a0e27 100%
	);
}

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

.stars {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.stars::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 2px;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 100px 100px rgba(255, 255, 255, 0.5),
		200px 50px rgba(255, 255, 255, 0.3),
		300px 200px rgba(255, 255, 255, 0.5),
		50px 300px rgba(255, 255, 255, 0.4),
		150px 250px rgba(255, 255, 255, 0.6),
		400px 150px rgba(255, 255, 255, 0.3);
	animation: twinkle 3s infinite;
}

.gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
	animation: float 8s ease-in-out infinite;
}

.orb-1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		var(--primary),
		transparent
	);
	top: -100px;
	right: -100px;
	animation-delay: 0s;
}

.orb-2 {
	width: 300px;
	height: 300px;
	background: radial-gradient(
		circle,
		var(--accent-purple),
		transparent
	);
	bottom: 100px;
	left: 10%;
	animation-delay: 2s;
}

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

@keyframes twinkle {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 1;
	}
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-block;
	background: rgba(0, 212, 255, 0.15);
	border: 1px solid rgba(0, 212, 255, 0.3);
	color: var(--primary);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 1.5rem;
	animation: slideInLeft 0.8s ease;
}

.hero-title {
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	animation: slideInLeft 0.8s ease;
	font-weight: 800;
	letter-spacing: -1px;
}

.hero-subtitle {
	font-size: 1.15rem;
	color: var(--muted-text);
	margin-bottom: 2.5rem;
	line-height: 1.6;
	animation: slideInLeft 0.8s ease 0.2s backwards;
}

.hero-stats {
	display: flex;
	gap: 3rem;
	margin-bottom: 2.5rem;
	animation: slideInLeft 0.8s ease 0.3s backwards;
}

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

.stat-number {
	font-size: 1.8rem;
	font-weight: 800;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.stat-label {
	font-size: 0.85rem;
	color: var(--muted-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	animation: slideInLeft 0.8s ease 0.4s backwards;
	flex-wrap: wrap;
}

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

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

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

.game-window {
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.08) 0%,
		rgba(161, 0, 242, 0.08) 100%
	);
	border: 1.5px solid rgba(0, 212, 255, 0.25);
	border-radius: 16px;
	overflow: hidden;
	animation: slideInRight 0.8s ease;
	box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	width: 100%;
	max-width: 450px;
}

.game-header {
	background: var(--gradient-primary);
	color: var(--dark-bg);
	padding: 1rem 1.25rem;
	font-weight: 700;
	text-align: center;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
}

.game-content {
	padding: 2rem 1.5rem;
	background: rgba(0, 0, 0, 0.3);
}

.progress-demo {
	margin-bottom: 2rem;
}

.progress-label {
	font-weight: 600;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	color: var(--light-text);
}

.progress-bar {
	height: 8px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0.5rem;
	border: 1px solid rgba(0, 212, 255, 0.1);
}

.progress-fill {
	height: 100%;
	background: var(--gradient-neon);
	animation: fillProgress 1.5s ease;
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

@keyframes fillProgress {
	from {
		width: 0;
	}
	to {
		width: 65%;
	}
}

.progress-value {
	font-size: 0.85rem;
	color: var(--muted-text);
	font-weight: 500;
}

.achievement-badges {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.badge {
	background: rgba(0, 255, 136, 0.12);
	border: 1px solid rgba(0, 255, 136, 0.3);
	color: var(--accent);
	padding: 0.5rem 0.9rem;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.badge:hover {
	background: rgba(0, 255, 136, 0.18);
	border-color: rgba(0, 255, 136, 0.5);
	transform: translateY(-2px);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
	position: relative;
	background: linear-gradient(
		180deg,
		rgba(10, 14, 39, 0.8) 0%,
		rgba(26, 31, 58, 0.6) 100%
	);
	padding: 6rem 0;
	border-top: 1px solid rgba(0, 212, 255, 0.1);
	border-bottom: 1px solid rgba(0, 212, 255, 0.1);
	overflow: hidden;
}

.stats-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--primary),
		transparent
	);
}

.stats-section::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--primary),
		transparent
	);
}

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

.stats-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.stats-subtitle {
	font-size: 1.1rem;
	color: var(--muted-text);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

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

.stat-card {
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.08) 0%,
		rgba(161, 0, 242, 0.08) 100%
	);
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
	backdrop-filter: blur(10px);
	overflow: hidden;
}

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

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

.stat-card:hover {
	border-color: rgba(0, 212, 255, 0.5);
	box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: translateY(-8px);
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.12) 0%,
		rgba(161, 0, 242, 0.12) 100%
	);
}

.stat-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: inline-block;
	animation: slideInUp 0.6s ease;
}

.stat-number {
	font-size: 2.8rem;
	font-weight: 800;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.75rem;
	letter-spacing: -1px;
	animation: slideInUp 0.6s ease 0.1s backwards;
}

.stat-label {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--light-text);
	margin-bottom: 0.5rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	animation: slideInUp 0.6s ease 0.2s backwards;
}

.stat-description {
	font-size: 0.85rem;
	color: var(--muted-text);
	font-weight: 500;
	animation: slideInUp 0.6s ease 0.3s backwards;
}

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

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

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

.scroll-fade-in,
.scroll-slide-up {
	opacity: 0;
	transform: translateY(30px);
}

.scroll-fade-in.animate {
	animation: scrollFadeIn 1.4s
		cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.community.scroll-fade-in.animate {
	animation: scrollFadeIn 2.2s
		cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

.community.scroll-fade-in.animate
	.community-card {
	will-change: auto;
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.community.scroll-fade-in.animate
	.testimonial-card {
	will-change: auto;
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.scroll-slide-up.animate {
	animation: scrollSlideUp 1.6s
		cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stats-section.animate {
	animation: scrollSlideUp 2.2s
		cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

.stats-section.animate .stat-card {
	will-change: auto;
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
	z-index: 1;
}

.features-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.features-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 14, 39, 0.8) 0%,
		rgba(20, 25, 60, 0.6) 50%,
		rgba(10, 14, 39, 0.8) 100%
	);
}

.features-header {
	text-align: center;
	margin-bottom: 4rem;
	animation: slideInUp 0.8s
		cubic-bezier(0.34, 1.56, 0.64, 1);
}

.features-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--secondary) 50%,
		var(--primary) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.features-subtitle {
	font-size: 1.1rem;
	color: var(--muted-text);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	font-weight: 300;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(360px, 1fr)
	);
	gap: 2rem;
	align-items: stretch;
}

.feature-card {
	position: relative;
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.08) 0%,
		rgba(161, 0, 242, 0.04) 100%
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.feature-card-glow {
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200px;
	height: 200px;
	background: radial-gradient(
		circle,
		rgba(0, 212, 255, 0.3) 0%,
		rgba(161, 0, 242, 0.1) 50%,
		transparent 70%
	);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.feature-card:hover .feature-card-glow {
	opacity: 1;
}

.feature-card::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.6s ease;
}

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

.feature-card:hover {
	border-color: rgba(0, 212, 255, 0.5);
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.15) 0%,
		rgba(161, 0, 242, 0.08) 100%
	);
	box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: translateY(-8px);
}

.feature-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	display: inline-block;
	filter: drop-shadow(
		0 0 20px rgba(0, 212, 255, 0.4)
	);
	transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(10deg);
	filter: drop-shadow(
		0 0 30px rgba(0, 212, 255, 0.6)
	);
}

.feature-icon:nth-child(1) {
	animation-delay: 0s;
}

.feature-icon:nth-child(2) {
	animation-delay: 0.5s;
}

.feature-icon:nth-child(3) {
	animation-delay: 1s;
}

.feature-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #ffffff;
	letter-spacing: -0.3px;
	transition: color 0.3s ease;
	position: relative;
	z-index: 2;
}

.feature-card:hover .feature-title {
	color: var(--primary);
	text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.feature-description {
	color: var(--muted-text);
	line-height: 1.7;
	font-weight: 300;
	margin-bottom: 1.5rem;
	flex-grow: 1;
	position: relative;
	z-index: 2;
	transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
	color: var(--light-text);
}

.feature-arrow {
	display: inline-block;
	font-size: 1.5rem;
	color: var(--primary);
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	z-index: 2;
}

.feature-card:hover .feature-arrow {
	opacity: 1;
	transform: translateX(0);
}

/* ============================================
   LEADERBOARD SECTION
   ============================================ */

.leaderboard {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
	z-index: 1;
}

.leaderboard-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.leaderboard-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 14, 39, 0.8) 0%,
		rgba(20, 25, 60, 0.6) 50%,
		rgba(10, 14, 39, 0.8) 100%
	);
}

.leaderboard-header {
	text-align: center;
	margin-bottom: 4rem;
	animation: slideInUp 0.8s
		cubic-bezier(0.34, 1.56, 0.64, 1);
}

.leaderboard-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--secondary) 50%,
		var(--primary) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.leaderboard-subtitle {
	font-size: 1.1rem;
	color: var(--muted-text);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	font-weight: 300;
}

.leaderboard-container {
	margin-bottom: 3rem;
}

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

.leaderboard-card {
	position: relative;
	padding: 2rem;
	border-radius: 16px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.08) 0%,
		rgba(161, 0, 242, 0.04) 100%
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	overflow: hidden;
	animation: slideInUp 0.8s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	animation-fill-mode: both;
	display: flex;
	flex-direction: column;
}

.leaderboard-card:nth-child(1) {
	animation-delay: 0.1s;
}

.leaderboard-card:nth-child(2) {
	animation-delay: 0.2s;
}

.leaderboard-card:nth-child(3) {
	animation-delay: 0.3s;
}

.leaderboard-card:nth-child(4) {
	animation-delay: 0.4s;
}

.leaderboard-card:nth-child(5) {
	animation-delay: 0.5s;
}

.leaderboard-card-glow {
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200px;
	height: 200px;
	background: radial-gradient(
		circle,
		rgba(0, 212, 255, 0.3) 0%,
		rgba(161, 0, 242, 0.1) 50%,
		transparent 70%
	);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.leaderboard-card:hover .leaderboard-card-glow {
	opacity: 1;
}

.leaderboard-card::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.6s ease;
}

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

.leaderboard-card:hover {
	border-color: rgba(0, 212, 255, 0.5);
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.15) 0%,
		rgba(161, 0, 242, 0.08) 100%
	);
	box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: translateY(-8px);
}

.rank-1-card {
	grid-column: 1 / -1;
	padding: 2.5rem;
	border: 2px solid rgba(255, 215, 0, 0.4);
	background: linear-gradient(
		135deg,
		rgba(255, 215, 0, 0.1) 0%,
		rgba(255, 215, 0, 0.02) 100%
	);
}

.rank-1-card:hover {
	border-color: rgba(255, 215, 0, 0.8);
	box-shadow: 0 20px 60px rgba(255, 215, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rank-2-card,
.rank-3-card {
	grid-column: span 1;
}

.rank-4-card,
.rank-5-card {
	grid-column: span 1;
}

.leaderboard-card-rank {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.rank-1-card .leaderboard-card-rank {
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.rank-badge {
	font-size: 2rem;
	line-height: 1;
	flex-shrink: 0;
}

.rank-1-card .rank-badge {
	font-size: 2.5rem;
}

.rank-number {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--muted-text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding-top: 0.25rem;
}

.rank-1-card .rank-number {
	font-size: 0.9rem;
	padding-top: 0.1rem;
}

.leaderboard-card-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex-grow: 1;
	position: relative;
	z-index: 2;
}

.rank-1-card .leaderboard-card-content {
	gap: 1.5rem;
}

.player-info {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.rank-1-card .player-info {
	gap: 1rem;
}

.player-avatar {
	font-size: 2rem;
	filter: drop-shadow(
		0 0 15px rgba(0, 212, 255, 0.3)
	);
	flex-shrink: 0;
}

.rank-1-card .player-avatar {
	font-size: 2.5rem;
}

.player-details {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.player-name {
	font-size: 1.05rem;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: -0.3px;
	transition: color 0.3s ease;
	line-height: 1.2;
}

.rank-1-card .player-name {
	font-size: 1.2rem;
}

.leaderboard-card:hover .player-name {
	color: var(--primary);
	text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.player-status {
	font-size: 0.8rem;
	color: var(--muted-text);
	transition: color 0.3s ease;
	line-height: 1.1;
}

.rank-1-card .player-status {
	font-size: 0.85rem;
}

.leaderboard-card:hover .player-status {
	color: var(--light-text);
}

.leaderboard-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

.rank-1-card .leaderboard-stats {
	gap: 1rem;
}

.stat-item {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 0.85rem 0.75rem;
	border-radius: 10px;
	background: rgba(0, 212, 255, 0.05);
	border: 1px solid rgba(0, 212, 255, 0.1);
	transition: all 0.3s ease;
	align-items: center;
	text-align: center;
}

.rank-1-card .stat-item {
	padding: 1rem;
	border-radius: 12px;
	gap: 0.5rem;
}

.leaderboard-card:hover .stat-item {
	background: rgba(0, 212, 255, 0.1);
	border-color: rgba(0, 212, 255, 0.3);
}

.stat-label {
	font-size: 0.7rem;
	color: var(--muted-text);
	text-transform: uppercase;
	letter-spacing: 0.4px;
	font-weight: 600;
}

.rank-1-card .stat-label {
	font-size: 0.75rem;
	letter-spacing: 0.5px;
}

.stat-value {
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary);
	transition: color 0.3s ease;
	line-height: 1.1;
}

.rank-1-card .stat-value {
	font-size: 1.1rem;
}

.leaderboard-card:hover .stat-value {
	color: var(--secondary);
}

.leaderboard-cta-section {
	margin-top: 3rem;
	padding: 3rem;
	border-radius: 16px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.08) 0%,
		rgba(161, 0, 242, 0.04) 100%
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	text-align: center;
	animation: slideInUp 0.8s
		cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.leaderboard-cta-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #ffffff;
}

.leaderboard-cta-text {
	font-size: 1rem;
	color: var(--muted-text);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

/* ============================================
/* ============================================
   COMMUNITY SECTION
   ============================================ */

.community {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
	z-index: 1;
}

.community-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.community-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 14, 39, 0.8) 0%,
		rgba(20, 25, 60, 0.6) 50%,
		rgba(10, 14, 39, 0.8) 100%
	);
}

.community-header {
	text-align: center;
	margin-bottom: 4rem;
	animation: slideInUp 0.8s
		cubic-bezier(0.34, 1.56, 0.64, 1);
}

.community-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--secondary) 50%,
		var(--primary) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.community-subtitle {
	font-size: 1.1rem;
	color: var(--muted-text);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	font-weight: 300;
}

.community-grid {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(280px, 1fr)
	);
	gap: 2rem;
	margin-bottom: 4rem;
	align-items: stretch;
}

.community-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2.5rem 2rem;
	border-radius: 16px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.08) 0%,
		rgba(161, 0, 242, 0.04) 100%
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	overflow: hidden;
	height: 100%;
}

.community-card-glow {
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200px;
	height: 200px;
	background: radial-gradient(
		circle,
		rgba(0, 212, 255, 0.3) 0%,
		rgba(161, 0, 242, 0.1) 50%,
		transparent 70%
	);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.community-card:hover .community-card-glow {
	opacity: 1;
}

.community-card::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.6s ease;
}

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

.community-card:hover {
	border-color: rgba(0, 212, 255, 0.5);
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.15) 0%,
		rgba(161, 0, 242, 0.08) 100%
	);
	box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: translateY(-8px);
}

.community-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	display: inline-block;
	filter: drop-shadow(
		0 0 20px rgba(0, 212, 255, 0.4)
	);
	transition: all 0.4s ease;
	animation: float 6s ease-in-out infinite;
}

.community-card:hover .community-icon {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(
		0 0 30px rgba(0, 212, 255, 0.6)
	);
}

.community-card-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #ffffff;
	letter-spacing: -0.3px;
	transition: color 0.3s ease;
	position: relative;
	z-index: 2;
}

.community-card:hover .community-card-title {
	color: var(--primary);
	text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.community-card-description {
	color: var(--muted-text);
	line-height: 1.7;
	font-weight: 300;
	margin-bottom: 1.5rem;
	flex-grow: 1;
	position: relative;
	z-index: 2;
	transition: color 0.3s ease;
}

.community-card:hover
	.community-card-description {
	color: var(--light-text);
}

.community-stats {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.stat-badge {
	font-size: 0.75rem;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	background: rgba(0, 212, 255, 0.1);
	border: 1px solid rgba(0, 212, 255, 0.3);
	color: var(--primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	transition: all 0.3s ease;
}

.community-card:hover .stat-badge {
	background: rgba(0, 212, 255, 0.2);
	border-color: rgba(0, 212, 255, 0.6);
}

.community-link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	display: inline-block;
	margin-top: auto;
	position: relative;
	z-index: 2;
}

.community-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--primary),
		var(--secondary)
	);
	transition: width 0.4s ease;
}

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

.community-card:hover .community-link {
	color: var(--secondary);
	transform: translateX(3px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
	margin-top: 4rem;
}

.testimonials-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
}

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

.testimonial-card {
	display: flex;
	flex-direction: column;
	background: linear-gradient(
		135deg,
		rgba(255, 0, 110, 0.08) 0%,
		rgba(0, 212, 255, 0.08) 100%
	);
	border: 1px solid var(--border-color);
	padding: 2rem;
	border-radius: 12px;
	height: 100%;
}

.testimonial-stars {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	text-align: center;
}

.testimonial-text {
	font-style: italic;
	color: var(--muted-text);
	margin-bottom: 1rem;
	line-height: 1.8;
	flex-grow: 1;
	text-align: center;
}

.testimonial-author {
	font-weight: 600;
	color: var(--primary);
	text-align: center;
	margin-top: auto;
}

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

.cta-section {
	position: relative;
	padding: 7rem 0;
	overflow: hidden;
	z-index: 1;
}

.cta-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.cta-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 14, 39, 0.9) 0%,
		rgba(20, 25, 60, 0.7) 50%,
		rgba(10, 14, 39, 0.9) 100%
	);
}

.cta-orb-1 {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	top: -100px;
	right: -100px;
	background: radial-gradient(
		circle,
		rgba(0, 212, 255, 0.3) 0%,
		rgba(0, 212, 255, 0.1) 50%,
		transparent 70%
	);
	filter: blur(40px);
}

.cta-orb-2 {
	position: absolute;
	width: 350px;
	height: 350px;
	border-radius: 50%;
	bottom: -50px;
	left: -100px;
	background: radial-gradient(
		circle,
		rgba(161, 0, 242, 0.3) 0%,
		rgba(161, 0, 242, 0.1) 50%,
		transparent 70%
	);
	filter: blur(40px);
}

.cta-content {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	animation: slideInUp 0.8s
		cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 0.8rem;
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--secondary) 50%,
		var(--primary) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.cta-subtitle {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 3.5rem;
	line-height: 1.8;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.download-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

.download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem 2.5rem;
	font-size: 1rem;
	background: rgba(0, 212, 255, 0.08);
	border: 2px solid var(--primary);
	color: #ffffff;
	font-weight: 600;
	border-radius: 14px;
	transition: all 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
}

.download-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.2) 0%,
		rgba(0, 212, 255, 0) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.download-btn:hover::before {
	opacity: 1;
}

.download-btn:hover {
	border-color: var(--primary);
	background: rgba(0, 212, 255, 0.15);
	box-shadow: 0 0 40px rgba(0, 212, 255, 0.4),
		inset 0 0 20px rgba(0, 212, 255, 0.1);
	transform: translateY(-3px);
}

.btn-icon {
	font-size: 1.3rem;
}

.contact-info {
	margin-top: 2rem;
	padding-top: 3.5rem;
	border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-info-title {
	font-size: 1.8rem;
	margin-bottom: 2rem;
	color: #ffffff;
	font-weight: 600;
}

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

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 2rem;
	border-radius: 16px;
	background: rgba(0, 212, 255, 0.04);
	border: 1.5px solid rgba(0, 212, 255, 0.15);
	transition: all 0.3s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
}

.contact-method::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.1) 0%,
		transparent 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.contact-method:hover {
	background: rgba(0, 212, 255, 0.08);
	border-color: rgba(0, 212, 255, 0.35);
	box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
	transform: translateY(-5px);
}

.contact-method:hover::before {
	opacity: 1;
}

.contact-icon-wrapper {
	flex-shrink: 0;
}

.contact-icon {
	font-size: 2.5rem;
	display: inline-block;
	filter: drop-shadow(
		0 0 20px rgba(0, 212, 255, 0.4)
	);
	transition: all 0.4s
		cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-method:hover .contact-icon {
	transform: scale(1.2) rotate(5deg);
	filter: drop-shadow(
		0 0 35px rgba(0, 212, 255, 0.8)
	);
}

.contact-method-content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-width: 0;
	flex: 1;
}

.contact-method strong {
	display: block;
	font-size: 1.1rem;
	color: #ffffff;
	font-weight: 600;
}

.contact-method p {
	color: var(--muted-text);
	font-size: 0.95rem;
	line-height: 1.5;
	word-break: break-word;
	margin: 0;
}

.contact-method a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.contact-method a:hover {
	color: var(--secondary);
	transform: translateX(3px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
	position: relative;
	padding: 5rem 0 2.5rem;
	overflow: hidden;
	z-index: 1;
}

.footer-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.footer-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 14, 39, 0.95) 0%,
		rgba(15, 20, 50, 0.8) 50%,
		rgba(10, 14, 39, 0.95) 100%
	);
}

.footer-orb-1 {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	top: -100px;
	right: 10%;
	background: radial-gradient(
		circle,
		rgba(0, 212, 255, 0.2) 0%,
		rgba(0, 212, 255, 0.05) 50%,
		transparent 70%
	);
	filter: blur(50px);
}

.footer-orb-2 {
	position: absolute;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	bottom: -50px;
	left: 5%;
	background: radial-gradient(
		circle,
		rgba(161, 0, 242, 0.15) 0%,
		rgba(161, 0, 242, 0.05) 50%,
		transparent 70%
	);
	filter: blur(50px);
}

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

.footer-top {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 4rem;
	margin-bottom: 3rem;
	align-items: start;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	justify-content: flex-start;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.4rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--primary),
		var(--secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.footer-tagline {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

.footer-socials {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 12px;
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.08),
		rgba(161, 0, 242, 0.05)
	);
	border: 1.5px solid rgba(0, 212, 255, 0.25);
	color: var(--primary);
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.3s
		cubic-bezier(0.16, 1, 0.3, 1);
	line-height: 1;
	position: relative;
	overflow: hidden;
}

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

.social-link svg {
	width: 20px;
	height: 20px;
	stroke: none;
	fill: currentColor;
	position: relative;
	z-index: 1;
	transition: transform 0.3s
		cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
	background: linear-gradient(
		135deg,
		rgba(0, 212, 255, 0.15),
		rgba(161, 0, 242, 0.1)
	);
	border-color: rgba(0, 212, 255, 0.5);
	box-shadow: 0 8px 20px rgba(0, 212, 255, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: translateY(-4px);
}

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

.social-link:hover svg {
	transform: scale(1.15);
}

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

.footer-section {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer-title {
	font-size: 1rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--primary),
		var(--secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0;
	letter-spacing: 0.5px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links li {
	margin: 0;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.footer-links a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--primary),
		var(--secondary)
	);
	transition: width 0.3s ease;
}

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

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

.footer-divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 212, 255, 0.3),
		transparent
	);
	margin: 2.5rem 0;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

.footer-copyright {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
	letter-spacing: 0.3px;
}

.footer-credits {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.heart {
	display: inline-block;
	transition: transform 0.3s ease;
}

.footer-credits:hover .heart {
	transform: scale(1.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
	.nav-links {
		gap: 0.15rem;
	}

	.nav-link {
		padding: 0.5rem 0.75rem;
		font-size: 0.85rem;
	}

	.btn-sm {
		padding: 0.5rem 0.9rem;
		font-size: 0.8rem;
	}

	.hero {
		padding: 100px 0 50px;
	}

	.hero-content {
		gap: 3rem;
	}

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

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

	.hero-stats {
		gap: 2.5rem;
	}

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

	.game-window {
		max-width: 400px;
	}

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

	.stats-title {
		font-size: 2.2rem;
	}

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

	.stats-grid {
		gap: 1.5rem;
	}

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

	.stat-icon {
		font-size: 2.5rem;
		margin-bottom: 0.8rem;
	}

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

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

	.features {
		padding: 6rem 0;
	}

	.features-title {
		font-size: 2.2rem;
	}

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

	.features-grid {
		gap: 1.5rem;
	}

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

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

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

	.feature-description {
		font-size: 0.9rem;
	}

	.community {
		padding: 6rem 0;
	}

	.community-title {
		font-size: 2.2rem;
	}

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

	.community-grid {
		gap: 1.5rem;
	}

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

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

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

	.community-card-description {
		font-size: 0.9rem;
	}

	.cta-section {
		padding: 6rem 0;
	}

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

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

	.download-buttons {
		gap: 1.25rem;
	}

	.contact-info-title {
		font-size: 1.5rem;
	}

	.contact-method {
		padding: 1.5rem;
		gap: 1.2rem;
	}

	.contact-icon {
		font-size: 2.2rem;
	}

	.contact-method strong {
		font-size: 1rem;
	}

	.footer {
		padding: 4rem 0 2rem;
	}

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

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

	.footer-orb-1 {
		width: 250px;
		height: 250px;
		top: -80px;
		right: 5%;
	}

	.footer-orb-2 {
		width: 200px;
		height: 200px;
		bottom: -40px;
		left: 2%;
	}

	.footer-divider {
		margin: 2rem 0;
	}
}

@media (max-width: 768px) {
	.navbar {
		padding: 0.6rem 0;
	}

	.nav-container {
		gap: 0.75rem;
	}

	.logo-icon {
		font-size: 2rem;
		height: 2rem;
		width: 2rem;
	}

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

	.mobile-menu-toggle {
		display: flex;
	}

	.nav-links,
	.nav-actions {
		display: none;
	}

	.hero {
		padding: 90px 0 40px;
		min-height: auto;
	}

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

	.hero-badge {
		font-size: 0.8rem;
		margin-bottom: 1rem;
	}

	.hero-title {
		font-size: 2.3rem;
		line-height: 1.3;
		margin-bottom: 1.2rem;
	}

	.hero-subtitle {
		font-size: 0.95rem;
		margin-bottom: 1.8rem;
		line-height: 1.5;
	}

	.hero-stats {
		gap: 1.5rem;
		margin-bottom: 1.8rem;
		flex-wrap: wrap;
	}

	.stat-item {
		flex: 1;
		min-width: 100px;
	}

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

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

	.hero-cta {
		flex-direction: column;
		width: 100%;
		gap: 0.75rem;
	}

	.hero-cta .btn {
		width: 100%;
		justify-content: center;
	}

	.game-window {
		margin-top: 1.5rem;
		max-width: 100%;
		width: 100%;
	}

	.orb-1 {
		width: 300px;
		height: 300px;
		top: -80px;
		right: -80px;
	}

	.orb-2 {
		width: 250px;
		height: 250px;
		bottom: 50px;
		left: 5%;
	}

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

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

	.stats-header {
		margin-bottom: 2.5rem;
	}

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

	.stats-subtitle {
		font-size: 0.95rem;
	}

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

	.stat-card {
		padding: 1.75rem 1.25rem;
	}

	.stat-icon {
		font-size: 2.2rem;
		margin-bottom: 0.75rem;
	}

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

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

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

	.features {
		padding: 4rem 0;
	}

	.features-header {
		margin-bottom: 3rem;
	}

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

	.features-subtitle {
		font-size: 0.95rem;
	}

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

	.feature-card {
		padding: 1.75rem 1.25rem;
	}

	.feature-icon {
		font-size: 2.8rem;
		margin-bottom: 0.75rem;
	}

	.feature-title {
		font-size: 1.15rem;
		margin-bottom: 0.75rem;
	}

	.feature-description {
		font-size: 0.85rem;
		line-height: 1.6;
	}

	.features-grid,
	.community-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.community {
		padding: 4rem 0;
	}

	.community-header {
		margin-bottom: 3rem;
	}

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

	.community-subtitle {
		font-size: 0.95rem;
	}

	.community-card {
		padding: 1.75rem 1.25rem;
	}

	.community-icon {
		font-size: 2.8rem;
		margin-bottom: 0.75rem;
	}

	.community-card-title {
		font-size: 1.15rem;
		margin-bottom: 0.75rem;
	}

	.community-card-description {
		font-size: 0.85rem;
		line-height: 1.6;
		margin-bottom: 1rem;
	}

	.community-stats {
		gap: 0.5rem;
		margin-bottom: 1rem;
	}

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

	.cta-title {
		font-size: 1.8rem;
		margin-bottom: 0.75rem;
	}

	.cta-subtitle {
		font-size: 0.95rem;
		margin-bottom: 2rem;
	}

	.download-buttons {
		gap: 1rem;
		margin-bottom: 3rem;
	}

	.download-btn {
		width: 100%;
		justify-content: center;
	}

	.contact-info-title {
		font-size: 1.3rem;
		margin-bottom: 2rem;
	}

	.contact-methods {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.contact-method {
		padding: 1.5rem 1.25rem;
		gap: 1rem;
	}

	.contact-icon {
		font-size: 2rem;
	}

	.contact-method strong {
		font-size: 1rem;
		margin-bottom: 0.35rem;
	}

	.contact-method p {
		font-size: 0.8rem;
	}

	.stat-badge {
		font-size: 0.7rem;
		padding: 0.4rem 0.75rem;
	}

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

	.download-buttons .btn {
		width: 100%;
		justify-content: center;
	}

	.contact-methods {
		grid-template-columns: 1fr;
	}

	.leaderboard {
		padding: 4rem 0;
	}

	.leaderboard-header {
		margin-bottom: 3rem;
	}

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

	.leaderboard-subtitle {
		font-size: 0.95rem;
	}

	.leaderboard-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.leaderboard-card {
		padding: 1.75rem 1.25rem;
	}

	.rank-1-card {
		grid-column: 1 / -1;
	}

	.leaderboard-card-rank {
		margin-bottom: 1rem;
	}

	.rank-badge {
		font-size: 1.8rem;
	}

	.player-avatar {
		font-size: 2rem;
	}

	.player-name {
		font-size: 1.1rem;
	}

	.leaderboard-stats {
		gap: 0.75rem;
	}

	.stat-item {
		padding: 0.75rem;
	}

	.stat-value {
		font-size: 1rem;
	}

	.leaderboard-cta-section {
		padding: 2rem;
		margin-top: 2rem;
	}

	.leaderboard-cta-title {
		font-size: 1.5rem;
	}

	.leaderboard-cta-text {
		font-size: 0.95rem;
	}

	.footer {
		padding: 3rem 0 1.5rem;
		text-align: center;
	}

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

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

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

	.footer-logo {
		font-size: 1.2rem;
		justify-content: center;
	}

	.footer-tagline {
		font-size: 0.9rem;
	}

	.footer-socials {
		gap: 0.75rem;
		justify-content: center;
	}

	.social-link {
		width: 2.25rem;
		height: 2.25rem;
		font-size: 1rem;
	}

	.footer-title {
		font-size: 0.95rem;
	}

	.footer-links {
		gap: 0.6rem;
	}

	.footer-links a {
		font-size: 0.85rem;
	}

	.footer-divider {
		margin: 1.5rem 0;
	}

	.footer-copyright {
		font-size: 0.8rem;
	}

	.footer-credits {
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.navbar {
		padding: 0.5rem 0;
	}

	.nav-container {
		gap: 0.5rem;
	}

	.logo-icon {
		font-size: 1.8rem;
		height: 1.8rem;
		width: 1.8rem;
	}

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

	.mobile-menu-toggle {
		display: flex;
		padding: 0.4rem;
	}

	.mobile-menu-toggle span {
		width: 22px;
		height: 2px;
	}

	.nav-links {
		display: none;
	}

	.nav-actions {
		display: none;
	}

	.mobile-nav-links .nav-link {
		padding: 0.8rem 1.25rem;
		font-size: 0.95rem;
	}

	.mobile-nav-actions {
		padding: 1rem 1.25rem;
	}

	.hero {
		padding: 70px 0 30px;
		min-height: auto;
	}

	.hero-content {
		gap: 1.5rem;
	}

	.hero-badge {
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
		margin-bottom: 0.8rem;
	}

	.hero-title {
		font-size: 1.7rem;
		margin-bottom: 0.8rem;
		line-height: 1.3;
		letter-spacing: -0.5px;
	}

	.hero-subtitle {
		font-size: 0.9rem;
		margin-bottom: 1.2rem;
		line-height: 1.5;
	}

	.hero-stats {
		gap: 1rem;
		margin-bottom: 1.2rem;
	}

	.stat-item {
		flex-shrink: 0;
	}

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

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

	.hero-cta {
		flex-direction: column;
		gap: 0.6rem;
	}

	.hero-cta .btn {
		width: 100%;
		padding: 0.7rem 1rem;
		font-size: 0.85rem;
	}

	.game-window {
		margin-top: 1.2rem;
		max-width: 100%;
		width: 100%;
	}

	.game-header {
		padding: 0.8rem 1rem;
		font-size: 0.9rem;
	}

	.game-content {
		padding: 1rem 0.8rem;
	}

	.progress-label {
		font-size: 0.85rem;
	}

	.progress-bar {
		height: 6px;
	}

	.stats-section {
		padding: 2rem 0;
	}

	.stats-header {
		margin-bottom: 1.5rem;
	}

	.stats-title {
		font-size: 1.5rem;
	}

	.stats-subtitle {
		font-size: 0.9rem;
	}

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

	.stat-card {
		padding: 1.5rem 1rem;
		border-radius: 12px;
	}

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

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

	.stat-label {
		font-size: 0.8rem;
		margin-bottom: 0.25rem;
	}

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

	.features {
		padding: 2.5rem 0;
	}

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

	.features-title {
		font-size: 1.5rem;
	}

	.features-subtitle {
		font-size: 0.9rem;
	}

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

	.feature-card {
		padding: 1.5rem 1rem;
		border-radius: 14px;
	}

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

	.feature-title {
		font-size: 1.05rem;
		margin-bottom: 0.5rem;
	}

	.feature-description {
		font-size: 0.85rem;
		line-height: 1.5;
		margin-bottom: 1rem;
	}

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

	.orb-1 {
		width: 200px;
		height: 200px;
		top: -60px;
		right: -60px;
	}

	.orb-2 {
		width: 150px;
		height: 150px;
		bottom: 30px;
		left: 0;
	}

	.game-content {
		padding: 1.25rem 1rem;
	}

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

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

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

	.leaderboard {
		padding: 2.5rem 0;
	}

	.leaderboard-header {
		margin-bottom: 2rem;
	}

	.leaderboard-title {
		font-size: 1.5rem;
	}

	.leaderboard-subtitle {
		font-size: 0.9rem;
	}

	.leaderboard-cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.leaderboard-card {
		padding: 1.5rem 1rem;
		border-radius: 14px;
	}

	.rank-1-card {
		grid-column: 1;
	}

	.leaderboard-card-rank {
		margin-bottom: 1rem;
	}

	.rank-badge {
		font-size: 1.5rem;
	}

	.rank-number {
		font-size: 0.8rem;
	}

	.player-avatar {
		font-size: 2rem;
	}

	.player-name {
		font-size: 1rem;
		margin-bottom: 0.25rem;
	}

	.player-status {
		font-size: 0.8rem;
	}

	.leaderboard-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}

	.stat-item {
		padding: 0.6rem;
		border-radius: 8px;
	}

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

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

	.leaderboard-cta-section {
		padding: 1.5rem;
		margin-top: 1.5rem;
		border-radius: 12px;
	}

	.leaderboard-cta-title {
		font-size: 1.3rem;
		margin-bottom: 0.75rem;
	}

	.leaderboard-cta-text {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	.community {
		padding: 2.5rem 0;
	}

	.community-header {
		margin-bottom: 2rem;
	}

	.community-title {
		font-size: 1.5rem;
	}

	.community-subtitle {
		font-size: 0.9rem;
	}

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

	.community-card {
		padding: 1.5rem 1rem;
		border-radius: 14px;
	}

	.community-icon {
		font-size: 2.5rem;
		margin-bottom: 0.75rem;
	}

	.community-card-title {
		font-size: 1.05rem;
		margin-bottom: 0.5rem;
	}

	.community-card-description {
		font-size: 0.85rem;
		line-height: 1.5;
		margin-bottom: 0.75rem;
	}

	.community-stats {
		gap: 0.4rem;
		margin-bottom: 1rem;
	}

	.stat-badge {
		font-size: 0.65rem;
		padding: 0.35rem 0.6rem;
	}

	.community-link {
		font-size: 0.9rem;
	}

	.cta-section {
		padding: 2.5rem 0;
	}

	.cta-title {
		font-size: 1.5rem;
		margin-bottom: 0.6rem;
	}

	.cta-subtitle {
		font-size: 0.9rem;
		margin-bottom: 1.5rem;
	}

	.download-buttons {
		flex-direction: column;
		gap: 0.75rem;
		margin-bottom: 2.5rem;
	}

	.download-btn {
		width: 100%;
		justify-content: center;
		padding: 0.8rem 1.2rem;
		font-size: 0.9rem;
		gap: 0.6rem;
	}

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

	.contact-info-title {
		font-size: 1.2rem;
		margin-bottom: 1.5rem;
	}

	.contact-methods {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.contact-method {
		padding: 1.25rem 1rem;
		gap: 0.8rem;
	}

	.contact-icon-wrapper {
		min-width: 2.2rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.contact-icon {
		font-size: 2rem;
	}

	.contact-method strong {
		font-size: 0.95rem;
	}

	.contact-method p {
		font-size: 0.8rem;
		margin: 0;
	}

	.footer {
		padding: 2.5rem 0 1.5rem;
		text-align: center;
	}

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

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

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

	.footer-logo {
		font-size: 1rem;
		justify-content: center;
	}

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

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

	.footer-socials {
		gap: 0.6rem;
		justify-content: center;
	}

	.social-link {
		width: 2rem;
		height: 2rem;
		font-size: 0.9rem;
	}

	.footer-section {
		gap: 1rem;
	}

	.footer-title {
		font-size: 0.9rem;
	}

	.footer-links {
		gap: 0.5rem;
	}

	.footer-links a {
		font-size: 0.8rem;
	}

	.footer-divider {
		margin: 1.5rem 0;
	}

	.footer-bottom {
		gap: 0.75rem;
	}

	.footer-copyright {
		font-size: 0.75rem;
	}

	.footer-credits {
		font-size: 0.75rem;
	}
}
