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

:root {
	--primary-color: #00ffff;
	--secondary-color: #ff6b35;
	--accent-color: #9d4edd;
	--bg-primary: #0a0a0a;
	--bg-secondary: #1a1a1a;
	--bg-tertiary: #2a2a2a;
	--bg-card: rgba(26, 26, 26, 0.8);
	--bg-glass: rgba(15, 15, 15, 0.85);
	--text-primary: #ffffff;
	--text-secondary: #b0b0b0;
	--text-muted: #707070;
	--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	--gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
	--gradient-hero: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(42, 42, 42, 0.85) 100%);
	--gradient-section: linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(15, 15, 15, 1) 100%);
	--gradient-card: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
	--font-heading: 'Rajdhani', sans-serif;
	--font-body: 'Source Sans Pro', sans-serif;
	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--shadow-glow: 0 0 20px rgba(0, 255, 255, 0.3);
	--shadow-ambient: 0 8px 32px rgba(0, 0, 0, 0.3);
	--border-radius: 8px;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--font-body);
	background: var(--bg-primary);
	background-image: radial-gradient(circle at 20% 20%, rgba(157, 78, 221, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Custom Cursor Trail */
.cursor-trail {
	position: fixed;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background: radial-gradient(circle, var(--primary-color), transparent);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.7;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 255, 255, 0.1);
	z-index: 1000;
	padding: 1rem 0;
	transition: var(--transition);
	transform: translateY(-100%);
	opacity: 0;
}

.navbar.show {
	transform: translateY(0);
	opacity: 1;
}

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

.nav-logo {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.nav-logo .logo {
	height: 40px;
	width: auto;
	filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.logo-text,
.logo-text-footer {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.2rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

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

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

.nav-link:hover {
	color: var(--primary-color);
}

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

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.bar {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	transition: var(--transition);
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at 30% 20%, rgba(157, 78, 221, 0.12) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(0, 255, 255, 0.08) 0%, transparent 50%), radial-gradient(ellipse at center, rgba(10, 10, 10, 0.95) 20%, rgba(5, 5, 5, 0.98) 80%);
	backdrop-filter: blur(1px);
}

.grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: gridMove 20s linear infinite;
}

/* Circuit Pattern Background */
.circuit-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 2px, transparent 2px), radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 2px, transparent 2px), radial-gradient(circle at 40% 80%, rgba(157, 78, 221, 0.1) 2px, transparent 2px);
	background-size: 200px 200px, 150px 150px, 100px 100px;
	animation: circuitGlow 4s ease-in-out infinite alternate;
}

@keyframes circuitGlow {
	0% {
		opacity: 0.3;
	}
	100% {
		opacity: 0.6;
	}
}

/* Particle System */
.particle-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--primary-color);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--primary-color);
	animation: particleFloat 6s infinite ease-in-out;
}

.particle:nth-child(1) {
	left: 10%;
	top: 20%;
	animation-delay: 0s;
}
.particle:nth-child(2) {
	left: 20%;
	top: 80%;
	animation-delay: 1s;
}
.particle:nth-child(3) {
	left: 30%;
	top: 40%;
	animation-delay: 2s;
}
.particle:nth-child(4) {
	left: 40%;
	top: 10%;
	animation-delay: 3s;
}
.particle:nth-child(5) {
	left: 50%;
	top: 70%;
	animation-delay: 4s;
}
.particle:nth-child(6) {
	left: 60%;
	top: 30%;
	animation-delay: 5s;
}
.particle:nth-child(7) {
	left: 70%;
	top: 90%;
	animation-delay: 0.5s;
}
.particle:nth-child(8) {
	left: 80%;
	top: 50%;
	animation-delay: 1.5s;
}
.particle:nth-child(9) {
	left: 90%;
	top: 60%;
	animation-delay: 2.5s;
}
.particle:nth-child(10) {
	left: 15%;
	top: 85%;
	animation-delay: 3.5s;
}

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

/* Code Rain Effect */
.code-rain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.1;
}

.code-line {
	position: absolute;
	font-family: 'Courier New', monospace;
	font-size: 12px;
	color: var(--primary-color);
	white-space: nowrap;
	animation: codeRain 15s linear infinite;
}

.code-line:nth-child(1) {
	left: 5%;
	animation-delay: 0s;
}
.code-line:nth-child(2) {
	left: 25%;
	animation-delay: 3s;
}
.code-line:nth-child(3) {
	left: 45%;
	animation-delay: 6s;
}
.code-line:nth-child(4) {
	left: 65%;
	animation-delay: 9s;
}
.code-line:nth-child(5) {
	left: 85%;
	animation-delay: 12s;
}
.code-line:nth-child(6) {
	left: 15%;
	animation-delay: 2s;
}

@keyframes codeRain {
	0% {
		transform: translateY(-100vh);
		opacity: 0;
	}
	10% {
		opacity: 0.3;
	}
	90% {
		opacity: 0.3;
	}
	100% {
		transform: translateY(100vh);
		opacity: 0;
	}
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(50px, 50px);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 0 2rem;
}

/* Gaming Badge */
.gaming-badge {
	display: inline-block;
	background: rgba(0, 255, 255, 0.1);
	border: 1px solid var(--primary-color);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 2rem;
	animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
	0%,
	100% {
		box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
	}
	50% {
		box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
	}
}

.hero-title {
	font-family: var(--font-heading);
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	margin-bottom: 1rem;
	line-height: 1.1;
}

.glitch {
	position: relative;
	display: inline-block;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: glitch 3s infinite;
}

.glitch.glitch-active {
	animation: glitchIntense 0.3s ease-in-out;
}

.glitch::before,
.glitch::after {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.glitch::before {
	animation: glitchTop 3s infinite;
	clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
	animation: glitchBottom 3s infinite;
	clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch {
	2%,
	64% {
		transform: translate(2px, 0) skew(0deg);
	}
	4%,
	60% {
		transform: translate(-2px, 0) skew(0deg);
	}
	62% {
		transform: translate(0, 0) skew(5deg);
	}
}

@keyframes glitchIntense {
	0% {
		transform: translate(0);
		filter: hue-rotate(0deg);
	}
	20% {
		transform: translate(-5px, 2px);
		filter: hue-rotate(90deg);
	}
	40% {
		transform: translate(-5px, -2px);
		filter: hue-rotate(180deg);
	}
	60% {
		transform: translate(5px, 2px);
		filter: hue-rotate(270deg);
	}
	80% {
		transform: translate(5px, -2px);
		filter: hue-rotate(360deg);
	}
	100% {
		transform: translate(0);
		filter: hue-rotate(0deg);
	}
}

@keyframes glitchTop {
	2%,
	64% {
		transform: translate(2px, -2px);
	}
	4%,
	60% {
		transform: translate(-2px, 2px);
	}
	62% {
		transform: translate(13px, -1px) skew(-13deg);
	}
}

@keyframes glitchBottom {
	2%,
	64% {
		transform: translate(-2px, 0);
	}
	4%,
	60% {
		transform: translate(-2px, 0);
	}
	62% {
		transform: translate(-22px, 5px) skew(21deg);
	}
}

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

/* Typing Effect */
.typing-effect {
	display: inline-block;
}

.cursor-blink {
	animation: blink 1s infinite;
	color: var(--primary-color);
}

@keyframes blink {
	0%,
	50% {
		opacity: 1;
	}
	51%,
	100% {
		opacity: 0;
	}
}

/* Hero Stats */
.hero-stats {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.hero-stats .stat-item {
	text-align: center;
	padding: 1rem;
	background: rgba(0, 255, 255, 0.05);
	border: 1px solid rgba(0, 255, 255, 0.2);
	border-radius: var(--border-radius);
	min-width: 120px;
	transition: var(--transition);
}

.hero-stats .stat-item:hover {
	background: rgba(0, 255, 255, 0.1);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.hero-stats .stat-number {
	display: block;
	font-size: 2rem;
	font-weight: 900;
	color: var(--primary-color);
	line-height: 1;
}

.hero-stats .stat-label {
	display: block;
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-top: 0.5rem;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-button {
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.button-icon {
	font-size: 1.1rem;
}

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

.cta-button:hover::before {
	left: 100%;
}

.cta-button.primary {
	background: var(--gradient-primary);
	color: var(--bg-primary);
	box-shadow: var(--shadow-glow);
}

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

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.scroll-text {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 300;
}

.scroll-arrow {
	width: 2px;
	height: 30px;
	background: var(--primary-color);
	position: relative;
}

.scroll-arrow::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -5px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid var(--primary-color);
}

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

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Section Styles */
section {
	padding: 6rem 0;
	position: relative;
}

section:not(:first-child)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
	opacity: 0.3;
}

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

.section-title,
.section-title-2 {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;

	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-title-2 {
	margin-top: 2rem;
}

.title-underline {
	width: 60px;
	height: 4px;
	background: var(--gradient-primary);
	margin: 0 auto;
	border-radius: 2px;
}

/* About Section */
.about {
	background: var(--bg-secondary);
}

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

.about-text .lead {
	font-size: 1.2rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.about-text p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
	line-height: 1.8;
}

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

.stat-item {
	text-align: center;
	padding: 2rem;
	background: var(--bg-tertiary);
	border-radius: var(--border-radius);
	border: 1px solid rgba(0, 255, 255, 0.1);
	transition: var(--transition);
}

.stat-item:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-glow);
}

.stat-number {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

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

.games {
	background: var(--gradient-section);
	background-attachment: fixed;
	position: relative;
	border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.games::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 25% 25%, rgba(157, 78, 221, 0.03) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(0, 255, 255, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

/* Games Section - Minimal */
.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.game-card {
	background: var(--bg-glass);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 255, 255, 0.15);
	border-radius: 16px;
	padding: 0;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-ambient);
	will-change: transform;
}

.game-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-card);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.game-card:hover {
	transform: translateY(-8px) scale(1.02);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-status {
	position: relative;
	padding: 0.3rem 0.7rem;
	border-radius: 15px;
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	white-space: nowrap;
	line-height: 1;
}

.game-status.live {
	background: rgba(0, 255, 136, 0.2);
	color: #00ff88;
	border: 1px solid rgba(0, 255, 136, 0.3);
}

.game-status.dev {
	background: rgba(255, 107, 53, 0.2);
	color: #ff6b35;
	border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Game Badges Container */
.game-badges {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.4rem;
	z-index: 2;
	max-width: 200px;
	justify-content: flex-end;
}

/* Badge Type Styles */
.game-status.genre {
	background: rgba(157, 78, 221, 0.2);
	color: #9d4edd;
	border: 1px solid rgba(157, 78, 221, 0.3);
}

.game-status.platform {
	background: rgba(0, 191, 255, 0.2);
	color: #00bfff;
	border: 1px solid rgba(0, 191, 255, 0.3);
}

.game-status.feature {
	background: rgba(255, 193, 7, 0.2);
	color: #ffc107;
	border: 1px solid rgba(255, 193, 7, 0.3);
}

.game-status.tech {
	background: rgba(40, 167, 69, 0.2);
	color: #28a745;
	border: 1px solid rgba(40, 167, 69, 0.3);
}

.game-content {
	padding: 3.5rem 2rem 2rem 2rem;
	flex-direction: column;
	display: flex;
	flex: 1 1 auto;
}

.game-content .game-cta {
	margin-top: auto;
}

.game-card h3 {
	color: var(--text-primary);
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

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

.game-cta {
	display: inline-block;
	background: var(--gradient-primary);
	color: var(--bg-primary);
	padding: 0.8rem 1.5rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.game-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* Partners Section */
.partners {
	background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(15, 15, 15, 1) 50%, var(--bg-secondary) 100%);
	position: relative;
	border-top: 1px solid rgba(157, 78, 221, 0.1);
}

.partners::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.02) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
	pointer-events: none;
}

.partners-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.8rem;
	margin-top: 1rem;
}

.partner-item {
	position: relative;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(0, 255, 255, 0.1);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	aspect-ratio: 3/1.8;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14rem;
	flex-shrink: 0;
	will-change: transform;
}

.partner-item:hover {
	transform: translateY(-4px);
	border-color: var(--primary-color);
	background: rgba(0, 255, 255, 0.05);
	box-shadow: var(--shadow-glow);
}

.partner-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}

.partner-logo {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	position: relative;
	z-index: 1;
}

.partner-logo img {
	max-width: 65%;
	max-height: 65%;
	object-fit: contain;
	filter: grayscale(100%) brightness(1);
	transition: all 0.3s ease;
}

.partner-item:hover .partner-logo img {
	filter: grayscale(0%) brightness(0);
	transform: scale(1.05);
}

.partner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 2;
}

.partner-item:hover .partner-overlay {
	opacity: 1;
}

.partner-name {
	color: var(--text-primary);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 600;
	text-align: center;
}

/* Contact Section */
.contact {
	background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(20, 20, 20, 1) 50%, var(--bg-primary) 100%);
	position: relative;
	border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 30% 20%, rgba(157, 78, 221, 0.05) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: start;
}

.section-subtitle {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-top: 1rem;
	text-align: center;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-info h3 {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.contact-info p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

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

.contact-icon {
	font-size: 1.5rem;
	width: 50px;
	height: 50px;
	background: var(--bg-tertiary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 255, 255, 0.2);
}

.contact-text strong {
	display: block;
	color: var(--text-primary);
	margin-bottom: 0.2rem;
}

.contact-text span {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.contact-text a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

.contact-text a:hover {
	color: var(--text-primary);
}

.stay-connected {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--bg-glass);
	backdrop-filter: blur(15px);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid rgba(0, 255, 255, 0.2);
	position: relative;
	transition: var(--transition);
	box-shadow: var(--shadow-ambient);
	will-change: transform;
}

.stay-connected::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	margin-left: 6px;
	margin-right: 6px;
}

.stay-connected:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 255, 255, 0.15);
}

.stay-connected h4 {
	color: var(--primary-color);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.stay-connected .newsletter-form {
	margin-bottom: 1.5rem;
	max-width: 400px;
	width: 100%;
}

.stay-connected .social-links {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.stay-connected .social-link {
	display: inline-block;
	width: 45px;
	height: 45px;
	background: var(--bg-tertiary);
	border: 1px solid rgba(0, 255, 255, 0.2);
	border-radius: 50%;
	text-align: center;
	line-height: 45px;
	font-size: 1.2rem;
	color: var(--text-secondary);
	text-decoration: none;
	transition: var(--transition);
}

.stay-connected .social-link:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
}

.stay-connected-description {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	max-width: 400px;
}

.social-text {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	max-width: 350px;
}

.contact-form-wrapper {
	background: var(--bg-glass);
	backdrop-filter: blur(15px);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid rgba(255, 107, 53, 0.2);
	position: relative;
	transition: var(--transition);
	box-shadow: var(--shadow-ambient);
	will-change: transform;
}

.contact-form-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(135deg, #ff6b35, #00ffaa);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	margin-left: 6px;
	margin-right: 6px;
}

.contact-form-wrapper:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.contact-form-wrapper h4 {
	color: var(--primary-color);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	margin-bottom: 1rem;
	font-weight: 600;
	text-align: center;
}

.contact-form-description {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	text-align: center;
}

/* Form Styles */
.contact-form {
	background: transparent;
	padding: 0;
}

.form-group {
	position: relative;
	margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	background: var(--bg-secondary);
	border: 1px solid rgba(0, 255, 255, 0.2);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 1rem;
	transition: var(--transition);
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	color: var(--text-muted);
	pointer-events: none;
	transition: var(--transition);
	background: var(--bg-secondary);
	padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
	top: -0.5rem;
	left: 0.5rem;
	font-size: 0.8rem;
	color: var(--primary-color);
}

.submit-button {
	width: 100%;
	padding: 1rem;
	background: var(--gradient-primary);
	color: var(--bg-primary);
	border: none;
	border-radius: var(--border-radius);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

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

.submit-button:hover::before {
	left: 100%;
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
}

/* Footer */
.footer {
	padding: 1rem;
	border-top: 1px solid rgba(0, 255, 255, 0.2);
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(157, 78, 221, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-logo .logo-text {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.2rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-tagline {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.4;
}

.footer-connect h4 {
	color: var(--text-primary);
	font-family: var(--font-heading);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
}

.newsletter-form input {
	flex: 1;
	padding: 0.75rem 1rem;
	background: var(--bg-tertiary);
	border: 1px solid rgba(0, 255, 255, 0.2);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-size: 0.9rem;
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--primary-color);
}

.newsletter-form button {
	padding: 0.75rem 1rem;
	background: var(--gradient-primary);
	color: var(--bg-primary);
	border: none;
	border-radius: var(--border-radius);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.newsletter-form button:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
}

.newsletter-message {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border-radius: var(--border-radius);
	font-size: 0.9rem;
	text-align: center;
	font-weight: 500;
	animation: slideInFromTop 0.3s ease-out;
}

.newsletter-message.success {
	background: rgba(0, 255, 136, 0.1);
	color: #00ff88;
	border: 1px solid rgba(0, 255, 136, 0.3);
}

.newsletter-message.error {
	background: rgba(255, 107, 53, 0.1);
	color: #ff6b35;
	border: 1px solid rgba(255, 107, 53, 0.3);
}

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

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

.footer-connect .social-link {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: var(--bg-tertiary);
	border: 1px solid rgba(0, 255, 255, 0.2);
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 1.2rem;
	color: var(--text-secondary);
	text-decoration: none;
	transition: var(--transition);
}

.footer-connect .social-link:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
}

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

.footer-bottom p {
	color: var(--text-muted);
	font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: rgba(10, 10, 10, 0.95);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 2rem 0;
		backdrop-filter: blur(10px);
		border-top: 1px solid rgba(0, 255, 255, 0.1);
	}

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

	.hamburger {
		display: flex;
	}

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

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

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

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

	.cta-button {
		width: 100%;
		max-width: 250px;
	}

	.hero-stats {
		gap: 1.5rem;
	}

	.hero-stats .stat-item {
		min-width: 100px;
		padding: 0.8rem;
	}

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

	.code-rain {
		opacity: 0.05;
	}

	.code-line {
		font-size: 10px;
	}

	.particle {
		width: 3px;
		height: 3px;
	}

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

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

	.stay-connected,
	.contact-form-wrapper {
		padding: 2rem;
	}

	.stay-connected-description,
	.contact-form-description {
		font-size: 0.9rem;
	}

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

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

	.partners-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 1.5rem;
	}

	.partner-logo {
		padding: 1.5rem;
	}

	.game-badges {
		max-width: calc(100% - 1rem);
		gap: 0.25rem;
		top: 0.5rem;
		right: 0.5rem;
	}

	.game-status {
		font-size: 0.55rem;
		padding: 0.25rem 0.5rem;
		border-radius: 12px;
	}

	.game-content {
		padding: 3rem 1.5rem 1.5rem 1.5rem;
	}

	section {
		padding: 4rem 0;
	}

	.container {
		padding: 0 1rem;
	}
}

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

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

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

	.stay-connected,
	.contact-form-wrapper {
		padding: 1.5rem;
	}

	.stay-connected-description,
	.contact-form-description {
		font-size: 0.85rem;
		margin-bottom: 1.5rem;
	}

	.partners-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 1rem;
	}

	.partner-logo {
		padding: 1rem;
	}

	.partner-name {
		font-size: 0.9rem;
	}
}

/* Animations for scroll reveal */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-on-scroll {
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
	opacity: 0;
	visibility: hidden;
}

.loading-content {
	text-align: center;
	max-width: 400px;
}

.loading-text {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.loading-bar {
	width: 100%;
	height: 4px;
	background: var(--bg-tertiary);
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.loading-progress {
	height: 100%;
	background: var(--gradient-primary);
	width: 0%;
	transition: width 0.3s ease;
	position: relative;
}

.loading-progress::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: shimmer 2s infinite;
}

.loading-percentage {
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-weight: 500;
}

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

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

/* Scroll Progress Indicator */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 4px;
	background: var(--gradient-primary);
	z-index: 1001;
	transform-origin: left;
	transform: scaleX(0);
	transition: transform 0.1s ease;
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Navigation Active States */
.nav-link.active {
	color: var(--primary-color);
}

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

/* Enhanced About Section */
.mission-statement {
	background: var(--bg-tertiary);
	padding: 2rem;
	border-radius: var(--border-radius);
	margin-top: 2rem;
	border-left: 4px solid var(--primary-color);
}

.mission-statement h3 {
	font-family: var(--font-heading);
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.section-subtitle {
	color: var(--text-secondary);
	font-size: 1.1rem;
	text-align: center;
	margin-top: 1rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Team Section */
.team {
	background: var(--bg-secondary);
}

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

.team-member {
	background: var(--bg-tertiary);
	border-radius: var(--border-radius);
	padding: 2rem;
	text-align: center;
	border: 1px solid rgba(0, 255, 255, 0.1);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.team-member::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.team-member:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-glow);
}

.team-member:hover::before {
	transform: scaleX(1);
}

.member-image {
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--primary-color);
}

.member-placeholder {
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--bg-primary);
}

.member-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.member-image:hover .member-overlay {
	opacity: 1;
}

.member-info h3 {
	font-family: var(--font-heading);
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.member-role {
	color: var(--secondary-color);
	font-weight: 600;
	margin-bottom: 1rem;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 1px;
}

.member-bio {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
}

.member-overlay .social-links {
	display: flex;
	gap: 0.5rem;
}

.member-overlay .social-link {
	width: 35px;
	height: 35px;
	background: var(--bg-tertiary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.2rem;
	border: 1px solid var(--primary-color);
	transition: var(--transition);
}

.member-overlay .social-link:hover {
	background: var(--primary-color);
	transform: scale(1.1);
}

/* Enhanced Contact Section */
.social-media {
	margin-top: 2rem;
}

.social-media h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-family: var(--font-heading);
}

.social-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.social-link {
	background: var(--bg-tertiary);
	color: var(--text-primary);
	text-decoration: none;
	border-radius: var(--border-radius);
	border: 1px solid rgba(0, 255, 255, 0.2);
	transition: var(--transition);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.social-link:hover {
	background: var(--primary-color);
	color: var(--bg-primary);
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* Enhanced Form Styles */
.form-group select {
	width: 100%;
	padding: 1rem;
	background: var(--bg-secondary);
	border: 1px solid rgba(0, 255, 255, 0.2);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 1rem;
	transition: var(--transition);
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1rem;
}

.form-group select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group select:focus + label,
.form-group select:valid + label {
	top: -0.5rem;
	left: 0.5rem;
	font-size: 0.8rem;
	color: var(--primary-color);
}

.error-message {
	color: var(--secondary-color);
	font-size: 0.8rem;
	margin-top: 0.5rem;
	display: block;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.error-message.show {
	opacity: 1;
}

.submit-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid transparent;
	border-top: 2px solid var(--bg-primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display: none;
	margin-left: 0.5rem;
}

.submit-button.loading .button-text {
	opacity: 0.7;
}

.submit-button.loading .loading-spinner {
	display: block;
}

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

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

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

.footer-description {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 0.95rem;
}

.footer-email {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.8rem 1rem;
	background: var(--bg-tertiary);
	border-radius: var(--border-radius);
	border: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-email a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
}

.footer-email a:hover {
	text-decoration: underline;
}

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

.live-badge,
.dev-badge {
	font-size: 0.7rem;
	padding: 0.2rem 0.5rem;
	border-radius: 10px;
	font-weight: 600;
	text-transform: uppercase;
}

.live-badge {
	background: rgba(0, 255, 0, 0.2);
	color: #00ff00;
	border: 1px solid rgba(0, 255, 0, 0.3);
}

.dev-badge {
	background: rgba(255, 165, 0, 0.2);
	color: #ffa500;
	border: 1px solid rgba(255, 165, 0, 0.3);
}

.footer-section h4 {
	color: var(--primary-color);
	font-family: var(--font-heading);
	margin-bottom: 1rem;
	font-size: 1rem;
}

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

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

.footer-section ul li a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: var(--transition);
	font-size: 0.9rem;
}

.footer-section ul li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

/* Removed duplicate footer-social styles - now using footer-connect */

.newsletter-signup h5 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	text-align: center;
	font-size: 1rem;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.newsletter-form input {
	padding: 0.8rem;
	background: var(--bg-secondary);
	border: 1px solid rgba(0, 255, 255, 0.2);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-size: 0.9rem;
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.newsletter-form button {
	padding: 0.8rem;
	background: var(--gradient-primary);
	border: none;
	border-radius: var(--border-radius);
	color: var(--bg-primary);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	font-size: 0.9rem;
}

.newsletter-form button:hover {
	transform: translateY(-1px);
	box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-copyright p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 0;
}

.footer-tagline {
	color: var(--text-secondary);
	font-size: 0.8rem;
	margin-top: 0.3rem;
	font-style: italic;
}

.footer-badges {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-badges .badge {
	background: var(--bg-tertiary);
	color: var(--primary-color);
	padding: 0.4rem 0.8rem;
	border-radius: 15px;
	font-size: 0.75rem;
	font-weight: 600;
	border: 1px solid rgba(0, 255, 255, 0.2);
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	color: var(--bg-primary);
	border: none;
	border-radius: 50%;
	font-size: 1.2rem;
	cursor: pointer;
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	box-shadow: var(--shadow-glow);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

/* Loading animation */
@keyframes pulse {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

.loading {
	animation: pulse 2s infinite;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
	.games-minimal {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

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

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

	.footer-connect .social-links {
		grid-template-columns: repeat(6, 1fr);
		max-width: 300px;
		margin: 0 auto 2rem;
	}
}

@media (max-width: 768px) {
	.team-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

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

	.footer-connect .social-links {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}

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

	.loading-logo-img {
		height: 60px;
	}

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

	.games-minimal {
		gap: 1rem;
	}

	.game-item {
		padding: 1.5rem;
	}
}

/* Enhanced Background Animations */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
}

@keyframes pulse-glow {
	0%,
	100% {
		opacity: 0.3;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.1);
	}
}

@keyframes drift {
	0% {
		transform: translateX(-100px) translateY(0px);
	}
	50% {
		transform: translateX(100px) translateY(-50px);
	}
	100% {
		transform: translateX(-100px) translateY(0px);
	}
}

/* Floating background elements */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.02) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(157, 78, 221, 0.02) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.01) 0%, transparent 50%);
	animation: drift 30s linear infinite;
	pointer-events: none;
	z-index: -1;
}

/* Improved glass morphism effect */
.game-card::after,
.stay-connected::after,
.contact-form-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
	border-radius: inherit;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.game-card:hover::after,
.stay-connected:hover::after,
.contact-form-wrapper:hover::after {
	opacity: 1;
}

.footer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0 1rem 0;
}

.footer-logo-image {
	max-width: 200px;
	height: auto;
	opacity: 0.8;
	transition: var(--transition);
	filter: brightness(0.9);
}

.footer-logo-image:hover {
	opacity: 1;
	filter: brightness(1);
	transform: scale(1.05);
}
