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

:root {
	--primary-color: #73d4ff;
	--secondary-color: #641ada;
	--accent-color: #641ada;
	--bg-dark: #000000;
	--bg-darker: #0a0a0a;
	--bg-card: #111111;
	--text-primary: #ffffff;
	--text-secondary: #a1a1aa;
	--border-color: #1a1a1a;
	--success-color: #641ada;
	--gradient: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	--gradient-2: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	--gradient-3: linear-gradient(135deg, #641ada 0%, #73d4ff 100%);
	--gradient-4: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	--gradient-5: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	--gradient-hero: linear-gradient(
		135deg,
		#000000 0%,
		#0a0a0a 50%,
		#000000 100%
	);
	--gradient-card: linear-gradient(
		145deg,
		rgba(17, 17, 17, 0.9),
		rgba(0, 0, 0, 0.95)
	);
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}
.modern-field select option {
	background: var(--bg-card);
	color: var(--text-primary);
	padding: 0.75rem;
	border: none;
}

.modern-field select option:hover,
.modern-field select option:focus {
	background: var(--primary-color);
	color: #ffffff;
}

/* Webkit browsers (Chrome, Safari) */
.modern-field select option:checked {
	background: var(--primary-color);
	color: #ffffff;
}
/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #1a1a2e;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: all 0.8s ease;
}

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

.loading-spinner {
	position: relative;
	width: 120px;
	height: 120px;
	margin-bottom: 3rem;
}

.spinner-circle {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 4px solid transparent;
	border-radius: 50%;
	background: conic-gradient(from 0deg, #73d4ff, #641ada, #73d4ff);
	animation: spin 2s linear infinite;
}

.spinner-circle::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	right: 4px;
	bottom: 4px;
	background: #1a1a2e;
	border-radius: 50%;
}

.spinner-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2.5rem;
	color: #73d4ff;
	z-index: 1;
}

.loading-brand {
	font-size: 2.5rem;
	font-weight: 700;
	color: #73d4ff;
	margin-bottom: 1rem;
	text-align: center;
}

.loading-text {
	color: #a1a1aa;
	font-size: 1.1rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 3rem;
}

.loading-bars {
	display: flex;
	gap: 0.3rem;
	align-items: end;
	height: 30px;
}

.loading-bar {
	width: 4px;
	background: linear-gradient(to top, #641ada, #73d4ff);
	border-radius: 2px;
	animation: barChart 1.2s ease-in-out infinite;
}

.loading-bar:nth-child(1) {
	animation-delay: 0s;
}
.loading-bar:nth-child(2) {
	animation-delay: 0.1s;
}
.loading-bar:nth-child(3) {
	animation-delay: 0.2s;
}
.loading-bar:nth-child(4) {
	animation-delay: 0.3s;
}
.loading-bar:nth-child(5) {
	animation-delay: 0.4s;
}

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

@keyframes barChart {
	0%,
	100% {
		height: 8px;
	}
	50% {
		height: 30px;
	}
}

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

/* Header */
header {
	background: rgba(15, 15, 35, 0.8);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid rgba(102, 126, 234, 0.3);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo img {
	height: 40px;
	width: auto;
	vertical-align: middle;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-text {
	display: none;
	font-size: 1.2rem;
	font-weight: 700;
	color: white;
}

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

.nav-links a {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

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

.nav-links a.active {
	color: var(--primary-color);
	font-weight: 600;
}

.user-info {
	display: none;
	align-items: center;
	gap: 1rem;
	color: var(--accent-color);
	font-weight: 600;
}

.auth-buttons {
	display: flex;
	gap: 1rem;
}

.btn {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	cursor: pointer;
}

.auth-buttons .btn,
.auth-btn {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	margin: 0.5rem 0;
}

.btn-primary {
	background: var(--gradient);
	color: white;
	position: relative;
	overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: white;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 100px;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
		url("/assets/images/coin-camp-bg.jpeg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

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

.hero-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2373d4ff" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.2;
	z-index: 2;
}

.hero-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(
		circle,
		rgba(115, 212, 255, 0.1) 0%,
		transparent 70%
	);
	animation: pulse 4s ease-in-out infinite;
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: center;
	min-height: 70vh;
	width: 100%;
}

.page-header {
	text-align: center;
	padding: 8rem 2rem 5rem;
	background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(115, 212, 255, 0.1) 0%,
		transparent 70%
	);
	z-index: 1;
}

.page-header > * {
	position: relative;
	z-index: 2;
}

.page-header h1 {
	font-size: 3.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #ffffff 0%, #73d4ff 50%, #641ada 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0 0 1.5rem 0;
	line-height: 1.2;
	text-shadow: 0 4px 20px rgba(115, 212, 255, 0.3);
	word-wrap: break-word;
	overflow-wrap: break-word;
}

@media (max-width: 768px) {
	.page-header h1 {
		font-size: 2.5rem;
		line-height: 1.1;
		padding: 0 1rem;
	}
}

@media (max-width: 480px) {
	.page-header h1 {
		font-size: 2rem;
		line-height: 1.1;
		padding: 0 0.5rem;
	}
}

@media (max-width: 320px) {
	.page-header h1 {
		font-size: 1.5rem;
		line-height: 1.1;
		padding: 0 0.5rem;
	}
}

/* Mission section h2 mobile responsive */
@media (max-width: 768px) {
	.mission-section h2 {
		font-size: 2.5rem !important;
	}
}

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

@media (max-width: 320px) {
	.mission-section h2 {
		font-size: 1.5rem !important;
	}

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

@media (max-width: 480px) {
	.mission-features {
		grid-template-columns: 1fr !important;
		gap: 1.5rem !important;
	}
}

.page-header p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.5;
}

.hero-left {
	text-align: left;
	padding: 2rem 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 70vh;
	gap: 0.6rem;
}

.hero-badges {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
}

.offer-badge {
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	color: white;
	padding: 0.75rem 1.25rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 8px 25px rgba(115, 212, 255, 0.4);
	position: relative;
	overflow: hidden;
	animation: pulse 2s ease-in-out infinite;
}

.trust-badge {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	padding: 0.75rem 1.25rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
	background: linear-gradient(135deg, #ffffff 0%, #73d4ff 50%, #641ada 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 4px 20px rgba(115, 212, 255, 0.3);
}

.hero-description {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	max-width: 500px;
	margin: 0;
}

.hero-benefits {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	font-size: 1rem;
}

.benefit-item i {
	color: #10b981;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.cta-section {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.btn-hero {
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	min-width: 200px;
	justify-content: center;
}

.btn-hero.btn-primary {
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	color: white;
	border: none;
	box-shadow: 0 10px 30px rgba(115, 212, 255, 0.4);
}

.btn-hero.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(115, 212, 255, 0.6);
}

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

.btn-hero.btn-outline:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
}

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

.avatars {
	display: flex;
	align-items: center;
}

.avatar {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #73d4ff, #641ada);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	margin-left: -8px;
	border: 2px solid #000;
}

.avatar:first-child {
	margin-left: 0;
}

.avatar-more {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 600;
	color: #fff;
	margin-left: -8px;
	border: 2px solid #000;
}

.social-proof span {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	font-weight: 500;
}

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

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

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

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.hero-left {
		text-align: center;
		order: 1;
	}

	.hero-right {
		order: 2;
	}

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

	.cta-section {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.hero {
		padding-top: 80px;
		min-height: 90vh;
	}

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

	.hero-left {
		text-align: center;
		padding: 1rem 0;
		min-height: auto;
	}

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

	.hero-description {
		font-size: 1.1rem;
		max-width: 100%;
	}

	.hero-badges {
		justify-content: center;
		flex-wrap: wrap;
	}

	.offer-badge,
	.trust-badge {
		font-size: 0.8rem;
		padding: 0.6rem 1rem;
	}

	.benefit-item {
		font-size: 0.95rem;
		justify-content: center;
		text-align: center;
	}

	.cta-section {
		flex-direction: column;
		gap: 1rem;
		align-items: stretch;
	}

	.btn-hero {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.social-proof {
		justify-content: center;
		flex-wrap: wrap;
		text-align: center;
	}

	.hero-right {
		display: none;
	}

	.game-preview-cards {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.preview-card:nth-child(3) {
		grid-column: auto;
	}

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

	.hero-stats .stat-item {
		padding: 0.75rem 0.5rem;
	}

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

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

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

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

	.hero-badges {
		flex-direction: column;
		gap: 0.5rem;
	}

	.offer-badge,
	.trust-badge {
		width: 100%;
		max-width: 250px;
		justify-content: center;
	}

	.benefit-item {
		font-size: 0.9rem;
	}

	.btn-hero {
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
	}

	.social-proof span {
		font-size: 0.8rem;
	}
}

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

.hero-visual {
	width: 100%;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.game-preview-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 1rem;
}

.preview-card {
	background: linear-gradient(
		145deg,
		rgba(115, 212, 255, 0.1),
		rgba(100, 26, 218, 0.1)
	);
	border: 1px solid rgba(115, 212, 255, 0.2);
	border-radius: 20px;
	text-align: center;
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
	animation: float 3s ease-in-out infinite;
}

.preview-card:nth-child(1) {
	animation-delay: 0s;
}

.preview-card:nth-child(2) {
	animation-delay: 1s;
}

.preview-card:nth-child(3) {
	grid-column: 1 / -1;
	animation-delay: 2s;
}

.preview-card:hover {
	transform: translateY(-5px) scale(1.05);
	border-color: rgba(115, 212, 255, 0.4);
	box-shadow: 0 10px 30px rgba(115, 212, 255, 0.3);
}

.card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.preview-card:hover .card-image {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(115, 212, 255, 0.4);
}

.card-title {
	color: white;
	font-weight: 600;
	font-size: 0.9rem;
}

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

.hero-stats .stat-item {
	background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
	border: 1px solid rgba(115, 212, 255, 0.2);
	border-radius: 15px;
	padding: 1rem;
	text-align: center;
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
	border-color: rgba(115, 212, 255, 0.4);
	transform: translateY(-3px);
}

.hero-stats .stat-number {
	font-size: 1.5rem;
	font-weight: 800;
	color: #73d4ff;
	margin-bottom: 0.25rem;
}

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

.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.stat-card {
	background: linear-gradient(
		145deg,
		rgba(17, 17, 17, 0.8),
		rgba(0, 0, 0, 0.9)
	);
	border: 1px solid rgba(115, 212, 255, 0.2);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.1),
		rgba(25, 255, 0, 0.05)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.stat-card:hover {
	transform: translateY(-5px);
	border-color: rgba(115, 212, 255, 0.4);
	box-shadow: 0 10px 30px rgba(115, 212, 255, 0.2);
}

.stat-icon {
	font-size: 2rem;
	color: #73d4ff;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
}

.stat-label {
	font-size: 0.9rem;
	color: #a1a1aa;
	font-weight: 500;
	position: relative;
	z-index: 1;
}

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

.feature-highlight {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	background: rgba(17, 17, 17, 0.6);
	border: 1px solid rgba(115, 212, 255, 0.1);
	border-radius: 12px;
	padding: 1rem 1.5rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.feature-highlight:hover {
	border-color: rgba(115, 212, 255, 0.3);
	background: rgba(17, 17, 17, 0.8);
}

.feature-highlight i {
	font-size: 1.2rem;
	color: #641ada;
	width: 20px;
	text-align: center;
}

.feature-highlight span {
	color: #ffffff;
	font-weight: 500;
	font-size: 0.95rem;
}

.hero-animation {
	position: relative;
	width: 400px;
	height: 400px;
}

.hero-bg-animations {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.bg-circle {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
	animation: bgFloat 6s ease-in-out infinite;
}

.circle-1 {
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, #73d4ff, #764ba2);
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.circle-2 {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #f093fb, #f5576c);
	bottom: 20%;
	right: 15%;
	animation-delay: 2s;
}

.circle-3 {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #4facfe, #00f2fe);
	top: 60%;
	left: 20%;
	animation-delay: 4s;
}

.bg-particles {
	position: absolute;
	width: 100%;
	height: 100%;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: #73d4ff;
	border-radius: 50%;
	animation: particleFloat 8s linear infinite;
}

.particle-1 {
	top: 20%;
	left: 30%;
	animation-delay: 0s;
}

.particle-2 {
	top: 40%;
	right: 25%;
	animation-delay: 1.6s;
}

.particle-3 {
	bottom: 30%;
	left: 40%;
	animation-delay: 3.2s;
}

.particle-4 {
	top: 70%;
	right: 40%;
	animation-delay: 4.8s;
}

.particle-5 {
	top: 50%;
	left: 60%;
	animation-delay: 6.4s;
}

.hero-game-cards {
	position: relative;
	z-index: 1;
}

@keyframes bgFloat {
	0%,
	100% {
		transform: translateY(0px) scale(1);
		opacity: 0.1;
	}
	50% {
		transform: translateY(-30px) scale(1.1);
		opacity: 0.2;
	}
}

@keyframes particleFloat {
	0% {
		transform: translateY(0px) translateX(0px);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-100px) translateX(20px);
		opacity: 0;
	}
}

.hero-game-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	max-width: 400px;
	margin: 0 auto;
}

.hero-game-cards .game-card {
	width: 180px;
	height: 210px;
	animation: heroCardFloat 4s ease-in-out infinite;
}

.hero-game-cards .game-card:nth-child(1) {
	animation-delay: 0s;
}

.hero-game-cards .game-card:nth-child(2) {
	animation-delay: 1s;
}

.hero-game-cards .game-card:nth-child(3) {
	animation-delay: 2s;
}

.hero-game-cards .game-card:nth-child(4) {
	animation-delay: 3s;
}

.hero-game-cards .game-image {
	height: 120px;
}

.hero-game-cards .game-info {
	padding: 1rem;
}

.hero-game-cards .game-info h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hero-game-cards .game-info p {
	display: none;
}

.hero-game-cards .game-category {
	font-size: 0.7rem;
	padding: 0.2rem 0.4rem;
}

.hero-game-cards .game-rating {
	font-size: 0.7rem;
}

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

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

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0px) scale(1);
	}
	50% {
		transform: translateY(-15px) scale(1.1);
	}
}

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

.hero h1 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

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

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

.offer-badge {
	background: var(--accent-color);
	color: var(--bg-dark);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: 700;
	margin-bottom: 1rem;
	display: inline-block;
}

/* Features Section */
.features {
	padding: 5rem 0;
	background: #000000;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 1.8rem;
		margin-bottom: 2rem;
	}
}

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

.feature-card {
	background: linear-gradient(
		145deg,
		rgba(26, 26, 26, 0.95),
		rgba(15, 15, 15, 0.98)
	);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	padding: 3rem 2.5rem;
	border-radius: 25px;
	border: 1px solid rgba(115, 212, 255, 0.12);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6),
		0 5px 20px rgba(115, 212, 255, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.feature-card:hover::before {
	opacity: 1;
	animation-play-state: paused;
}

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

.feature-card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 25px 70px rgba(115, 212, 255, 0.25),
		0 10px 30px rgba(100, 26, 218, 0.15), 0 0 0 1px rgba(115, 212, 255, 0.2);
	border-color: rgba(115, 212, 255, 0.3);
}

.feature-card:hover .feature-icon {
	transform: scale(1.15) rotateY(10deg);
	box-shadow: 0 15px 40px rgba(115, 212, 255, 0.4);
}

.feature-card h3 {
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: 800;
	margin: 0 0 1.25rem 0;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
	letter-spacing: 0.5px;
	position: relative;
}

.feature-card h3::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 3px;
	background: linear-gradient(135deg, #73d4ff, #641ada);
	border-radius: 2px;
	opacity: 0;
	transition: all 0.3s ease;
}

.feature-card:hover h3::after {
	opacity: 1;
	width: 60px;
}

.feature-card p {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	font-size: 1rem;
	margin: 0;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.feature-icon {
	font-size: 3.2rem;
	color: #73d4ff;
	margin-bottom: 2rem;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.15),
		rgba(100, 26, 218, 0.1)
	);
	border-radius: 25px;
	margin: 0 auto 2rem;
	position: relative;
	z-index: 2;
	box-shadow: 0 8px 25px rgba(115, 212, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(115, 212, 255, 0.2);
}

.feature-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background: radial-gradient(
		circle,
		rgba(115, 212, 255, 0.2) 0%,
		transparent 70%
	);
	border-radius: 50%;
	z-index: -1;
	transition: all 0.5s ease;
	opacity: 0;
}

.feature-card:hover .feature-icon::before {
	width: 120px;
	height: 120px;
	opacity: 1;
}

.feature-card:hover .feature-icon {
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.25),
		rgba(100, 26, 218, 0.2)
	);
	border-color: rgba(115, 212, 255, 0.4);
	color: #ffffff;
}

/* Games Section */
.games {
	padding: 5rem 0;
	background: #0a0a0a;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
	position: relative;
	perspective: 1000px;
}

.games-grid .game-card {
	position: relative;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	animation: cardFloat 6s ease-in-out infinite;
}

.games-grid .game-card:nth-child(odd) {
	animation-delay: -1s;
}

.games-grid .game-card:nth-child(even) {
	animation-delay: -3s;
}

.game-card {
	background: linear-gradient(
		145deg,
		rgba(115, 212, 255, 0.05) 0%,
		rgba(100, 26, 218, 0.08) 100%
	);
	border-radius: 20px;
	overflow: hidden;
	background-clip: padding-box;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	cursor: pointer;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
		0 5px 15px rgba(115, 212, 255, 0.1);
	height: 420px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.game-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 24px;
	padding: 1px;
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.6) 0%,
		rgba(25, 255, 0, 0.4) 25%,
		rgba(245, 158, 11, 0.5) 50%,
		rgba(139, 92, 246, 0.4) 75%,
		rgba(115, 212, 255, 0.6) 100%
	);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	opacity: 0;
	transition: all 0.5s ease;
	animation: borderGlow 3s ease-in-out infinite;
}

.game-card:hover::before {
	opacity: 1;
	animation-play-state: paused;
}

.game-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 25px 50px rgba(115, 212, 255, 0.3),
		0 10px 25px rgba(100, 26, 218, 0.2);
	border-image: linear-gradient(135deg, #73d4ff, #641ada) 1;
}

.game-card {
	transform-origin: center;
}

.game-card.hidden {
	opacity: 0;
	transform: scale(0);
	pointer-events: none;
}

.game-card.visible {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

/* Games Controls */
.games-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	background: linear-gradient(
		145deg,
		rgba(26, 26, 26, 0.6),
		rgba(13, 13, 13, 0.8)
	);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.search-box {
	position: relative;
	flex: 1;
	max-width: 350px;
}

.search-box input {
	width: 100%;
	padding: 1rem 3.5rem 1rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	background: linear-gradient(
		145deg,
		rgba(26, 26, 26, 0.8),
		rgba(13, 13, 13, 0.9)
	);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-box input:focus {
	outline: none;
	border-color: rgba(115, 212, 255, 0.5);
	box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2),
		0 0 0 3px rgba(115, 212, 255, 0.1);
	background: linear-gradient(
		145deg,
		rgba(26, 26, 26, 0.9),
		rgba(13, 13, 13, 0.95)
	);
}

.search-box i {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(115, 212, 255, 0.7);
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.search-box input:focus + i {
	color: var(--primary-color);
	transform: translateY(-50%) scale(1.1);
}

.filter-buttons {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 1rem 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	background: linear-gradient(
		145deg,
		rgba(26, 26, 26, 0.6),
		rgba(13, 13, 13, 0.8)
	);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	position: relative;
}

.filter-btn:hover {
	color: var(--primary-color);
	transform: translateY(-2px) scale(1.02);
}

.filter-btn.active {
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.9) 0%,
		#641ada 100%
	);
	border: none;
	color: #fff;
	font-weight: 700;
	transform: translateY(-2px) scale(1.05);
}

.filter-btn:hover::before {
	left: 100%;
}

@media (max-width: 768px) {
	.games-controls {
		flex-direction: column;
		align-items: stretch;
	}

	.search-box {
		max-width: none;
	}

	.filter-buttons {
		justify-content: center;
	}

	.filter-btn {
		flex: 1;
		min-width: 80px;
	}

	.leaderboard-table {
		overflow-x: auto;
	}

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

.game-image {
	width: 100%;
	height: 220px;
	position: relative;
	overflow: hidden;
	border-radius: 18px 18px 0 0;
	flex-shrink: 0;
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.1) 0%,
		rgba(100, 26, 218, 0.15) 100%
	);
}

.game-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.game-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.5) 0%,
		rgba(100, 26, 218, 0.5) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.game-card:hover .game-overlay {
	opacity: 1;
}

.game-card.locked {
	position: relative;
}

.game-card.locked::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	border-radius: 16px;
	z-index: 1;
}

.game-card.locked .lock-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 2rem;
	z-index: 2;
}

.play-btn {
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(26, 26, 26, 0.8) 100%
	);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.2);
	padding: 1.2rem 2.5rem;
	border-radius: 60px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.play-btn:hover {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(115, 212, 255, 0.9) 100%
	);
	color: #000;
	transform: scale(1.15) translateY(-2px);
	border-color: rgba(115, 212, 255, 0.6);
	box-shadow: 0 15px 40px rgba(115, 212, 255, 0.4),
		0 8px 20px rgba(255, 255, 255, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

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

.play-btn:hover::before {
	left: 100%;
}

.game-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 0;
}

.game-rating {
	display: none;
}

.game-category {
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	width: fit-content;
	box-shadow: 0 4px 15px rgba(115, 212, 255, 0.4);
	margin-bottom: 0.75rem;
	border: none;
	position: relative;
	transition: all 0.3s ease;
}

.game-card:hover .game-category {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(115, 212, 255, 0.4),
		inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.game-image::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(115, 212, 255, 0.15) 40%,
		rgba(255, 255, 255, 0.1) 50%,
		rgba(25, 255, 0, 0.1) 60%,
		transparent 70%
	);
	animation: shimmer 4s infinite;
	opacity: 0.8;
}

.game-card:hover .game-image::before {
	animation-duration: 1.5s;
	opacity: 1;
}

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

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

@keyframes borderGlow {
	0%,
	100% {
		background: linear-gradient(
			135deg,
			rgba(115, 212, 255, 0.6) 0%,
			rgba(25, 255, 0, 0.4) 25%,
			rgba(245, 158, 11, 0.5) 50%,
			rgba(139, 92, 246, 0.4) 75%,
			rgba(115, 212, 255, 0.6) 100%
		);
	}
	25% {
		background: linear-gradient(
			135deg,
			rgba(25, 255, 0, 0.6) 0%,
			rgba(245, 158, 11, 0.4) 25%,
			rgba(139, 92, 246, 0.5) 50%,
			rgba(115, 212, 255, 0.4) 75%,
			rgba(25, 255, 0, 0.6) 100%
		);
	}
	50% {
		background: linear-gradient(
			135deg,
			rgba(245, 158, 11, 0.6) 0%,
			rgba(139, 92, 246, 0.4) 25%,
			rgba(115, 212, 255, 0.5) 50%,
			rgba(25, 255, 0, 0.4) 75%,
			rgba(245, 158, 11, 0.6) 100%
		);
	}
	75% {
		background: linear-gradient(
			135deg,
			rgba(139, 92, 246, 0.6) 0%,
			rgba(115, 212, 255, 0.4) 25%,
			rgba(25, 255, 0, 0.5) 50%,
			rgba(245, 158, 11, 0.4) 75%,
			rgba(139, 92, 246, 0.6) 100%
		);
	}
}

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

.game-info {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(0, 0, 0, 0.85) 100%
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: relative;
}

.game-info h3 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.2;
	background: linear-gradient(
		135deg,
		#ffffff 0%,
		rgba(115, 212, 255, 0.9) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.5px;
}

.game-info p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Testimonials */
.testimonials {
	padding: 5rem 0;
	background: #000000;
}

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

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

	.testimonial {
		padding: 2rem 1.5rem;
		margin: 0 1rem;
	}

	.about-text {
		font-size: 0.9rem !important;
	}
}

.testimonial {
	background: linear-gradient(
		145deg,
		rgba(26, 26, 26, 0.95),
		rgba(15, 15, 15, 0.98)
	);
	padding: 2.5rem;
	border-radius: 25px;
	border: 1px solid rgba(115, 212, 255, 0.15);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6),
		0 5px 20px rgba(115, 212, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	position: relative;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	overflow: hidden;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 25px;
	padding: 2px;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 50%, #73d4ff 100%);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	opacity: 0;
	transition: opacity 0.5s ease;
	animation: borderGlow 3s ease-in-out infinite;
}

.testimonial::after {
	content: '"';
	position: absolute;
	top: 1.2rem;
	right: 1.8rem;
	font-size: 4rem;
	color: rgba(115, 212, 255, 0.2);
	font-family: "Georgia", serif;
	line-height: 1;
	z-index: 1;
	transform: rotate(15deg);
	transition: all 0.3s ease;
}

.testimonial:hover::before {
	opacity: 1;
	animation-play-state: paused;
}

.testimonial:hover::after {
	color: rgba(115, 212, 255, 0.4);
	transform: rotate(15deg) scale(1.1);
}

.testimonial:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 25px 70px rgba(115, 212, 255, 0.25),
		0 10px 30px rgba(100, 26, 218, 0.15), 0 0 0 1px rgba(115, 212, 255, 0.2);
	border-color: rgba(115, 212, 255, 0.3);
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.15rem;
	line-height: 1.7;
	position: relative;
	z-index: 2;
	padding-left: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.testimonial-text::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(135deg, #73d4ff, #641ada);
	border-radius: 2px;
	opacity: 0.7;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	position: relative;
	z-index: 2;
	padding: 1rem 1.5rem;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 15px;
	border: 1px solid rgba(115, 212, 255, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.testimonial:hover .testimonial-author {
	background: rgba(115, 212, 255, 0.05);
	border-color: rgba(115, 212, 255, 0.2);
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 3px solid #73d4ff;
	object-fit: cover;
	box-shadow: 0 4px 15px rgba(115, 212, 255, 0.3);
	transition: all 0.3s ease;
}

.testimonial:hover .author-avatar {
	border-color: #641ada;
	box-shadow: 0 6px 20px rgba(100, 26, 218, 0.4);
	transform: scale(1.05);
}

.testimonial-author span {
	font-weight: 700;
	color: #ffffff;
	font-size: 1.1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.5px;
}

/* Leaderboard */
.leaderboard {
	padding: 5rem 0;
	background: #0a0a0a;
}

.leaderboard-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin: 0 auto;
	width: 100%;
}

.leaderboard-item {
	background: linear-gradient(
		145deg,
		rgba(26, 26, 26, 0.95),
		rgba(10, 10, 10, 0.98)
	);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-radius: 25px;
	padding: 2rem 2.5rem;
	border: 1px solid rgba(115, 212, 255, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7),
		0 5px 20px rgba(115, 212, 255, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	text-align: center;
}

.player-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 4px solid #73d4ff;
	object-fit: cover;
	box-shadow: 0 8px 25px rgba(115, 212, 255, 0.4), 0 0 0 2px rgba(0, 0, 0, 0.3);
	transition: all 0.4s ease;
	position: relative;
	z-index: 2;
}

.leaderboard-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 25px;
	padding: 2px;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 50%, #73d4ff 100%);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	opacity: 0;
	transition: opacity 0.5s ease;
	animation: borderGlow 4s ease-in-out infinite;
}

.leaderboard-item::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(115, 212, 255, 0.1) 50%,
		transparent 70%
	);
	animation: shimmer 3s infinite;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.leaderboard-item:hover::before {
	opacity: 1;
	animation-play-state: paused;
}

.leaderboard-item:hover::after {
	opacity: 1;
}

.leaderboard-item:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 25px 60px rgba(115, 212, 255, 0.25),
		0 10px 30px rgba(100, 26, 218, 0.15), 0 0 0 1px rgba(115, 212, 255, 0.2);
	border-color: rgba(115, 212, 255, 0.3);
}

.leaderboard-item:hover .player-avatar {
	transform: scale(1.1);
	border-color: #641ada;
	box-shadow: 0 12px 35px rgba(100, 26, 218, 0.5), 0 0 0 3px rgba(0, 0, 0, 0.4);
}

.leaderboard-item.rank-1 {
	border-color: rgba(255, 215, 0, 0.3);
	background: linear-gradient(
		145deg,
		rgba(255, 215, 0, 0.05),
		rgba(26, 26, 26, 0.95)
	);
}

.leaderboard-item.rank-1::before {
	background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
}

.leaderboard-item.rank-1 .player-avatar {
	border-color: #ffd700;
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 0 0 2px rgba(0, 0, 0, 0.3);
}

.leaderboard-item.rank-1:hover .player-avatar {
	border-color: #ffed4e;
	box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6), 0 0 0 3px rgba(0, 0, 0, 0.4);
}

.leaderboard-item.rank-2 {
	border-color: rgba(192, 192, 192, 0.3);
	background: linear-gradient(
		145deg,
		rgba(192, 192, 192, 0.05),
		rgba(26, 26, 26, 0.95)
	);
}

.leaderboard-item.rank-3 {
	border-color: rgba(205, 127, 50, 0.3);
	background: linear-gradient(
		145deg,
		rgba(205, 127, 50, 0.05),
		rgba(26, 26, 26, 0.95)
	);
}

.rank-badge {
	font-size: 1.2rem;
	font-weight: 800;
	min-width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
	position: relative;
	z-index: 2;
	width: 70px;
	margin: 0 auto;
}

.leaderboard-item.rank-1 .player-info .coins {
	background: linear-gradient(
		135deg,
		rgba(255, 215, 0, 0.2),
		rgba(255, 237, 78, 0.15)
	);
	border-color: rgba(255, 215, 0, 0.4);
	color: #ffd700;
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3),
		inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.leaderboard-item.rank-2 .player-info .coins {
	background: linear-gradient(
		135deg,
		rgba(192, 192, 192, 0.15),
		rgba(220, 220, 220, 0.1)
	);
	border-color: rgba(192, 192, 192, 0.4);
	color: #c0c0c0;
	box-shadow: 0 6px 20px rgba(192, 192, 192, 0.2),
		inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.leaderboard-item.rank-3 .player-info .coins {
	background: linear-gradient(
		135deg,
		rgba(205, 127, 50, 0.15),
		rgba(222, 144, 70, 0.1)
	);
	border-color: rgba(205, 127, 50, 0.4);
	color: #cd7f32;
	box-shadow: 0 6px 20px rgba(205, 127, 50, 0.2),
		inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.player-info {
	position: relative;
	z-index: 2;
	text-align: center;
	width: 100%;
	padding: 1rem 1.5rem;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 20px;
	border: 1px solid rgba(115, 212, 255, 0.1);
	backdrop-filter: blur(15px);
	transition: all 0.3s ease;
}

.leaderboard-item:hover .player-info {
	background: rgba(115, 212, 255, 0.08);
	border-color: rgba(115, 212, 255, 0.2);
	transform: translateY(-2px);
}

.player-info h4 {
	margin: 0 0 0.75rem 0;
	font-size: 1.3rem;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
	letter-spacing: 0.5px;
	position: relative;
}

.player-info h4::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background: linear-gradient(135deg, #73d4ff, #641ada);
	border-radius: 1px;
	opacity: 0.7;
}

.player-info .coins {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	color: #ffd700;
	font-weight: 800;
	font-size: 1.1rem;
	background: linear-gradient(
		135deg,
		rgba(255, 215, 0, 0.15),
		rgba(255, 237, 78, 0.1)
	);
	padding: 0.75rem 1.5rem;
	border-radius: 30px;
	border: 2px solid rgba(255, 215, 0, 0.3);
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.player-info .coins::before {
	content: "💰";
	margin-right: 0.3rem;
	font-size: 1rem;
}

.leaderboard-item:hover .player-info .coins {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3),
		inset 0 2px 0 rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 215, 0, 0.5);
}

@media (max-width: 1024px) and (min-width: 769px) {
	.leaderboard-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}
}

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

	.leaderboard-item {
		padding: 1rem;
		margin: 0 1rem;
		align-items: center;
	}

	.rank-badge {
		font-size: 1rem;
		min-width: 50px;
	}

	.player-info h4 {
		font-size: 1rem;
	}

	.player-info .coins {
		font-size: 0.8rem;
	}
}

/* Footer */
footer {
	background: var(--bg-darker);
	padding: 3rem 0 1rem;
	border-top: 1px solid var(--border-color);
}

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

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

.footer-logo-img {
	height: 40px;
	width: auto;
	margin-bottom: 1rem;
}

.footer-logo h3 {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.footer-logo p {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

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

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

.footer-section h3 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.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: color 0.3s ease;
}

.footer-section ul li {
	color: var(--text-secondary);
}

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

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
	color: var(--text-secondary);
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2000;
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--bg-card);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	max-width: 500px;
	width: 90%;
}

.close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--text-secondary);
}

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

/* Forms */
.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	text-align: left;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	background: var(--bg-darker);
	color: var(--text-primary);
}

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

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--bg-card);
	padding: 1rem;
	border-top: 1px solid var(--border-color);
	z-index: 1500;
	display: none;
}

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

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

/* Age Verification */
.age-verification {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.age-content {
	background: var(--bg-card);
	padding: 3rem;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	border: 1px solid var(--border-color);
}

.age-content h2 {
	margin-bottom: 1rem;
	color: var(--primary-color);
}

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

/* Mobile Navbar */
.mobile-navbar {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(15, 15, 35, 0.95);
	backdrop-filter: blur(20px);
	padding: 1rem;
	z-index: 1000;
	border-bottom: 1px solid rgba(102, 126, 234, 0.3);
}

.mobile-nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mobile-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: white;
	font-weight: 700;
	font-size: 1.2rem;
	gap: 8px;
}

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

.mobile-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mobile-user-dropdown {
	position: relative;
}

.mobile-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: #2a2a3e;
	border: 2px solid var(--primary-color);
	border-radius: 15px;
	padding: 15px;
	min-width: 200px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
	display: none;
	margin-top: 5px;
}

.mobile-dropdown.show {
	display: block;
}

.mobile-dropdown-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--primary-color);
}

.mobile-dropdown-header .user-avatar {
	width: 30px;
	height: 30px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}

.mobile-dropdown-info h4 {
	margin: 0;
	color: white;
	font-size: 1rem;
}

.mobile-dropdown-info p {
	margin: 0;
	color: #a1a1aa;
	font-size: 0.8rem;
}

.mobile-dropdown-coins {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 15px;
	color: #ffd700;
	font-weight: 600;
}

.mobile-dropdown-logout {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--primary-color);
	text-decoration: none;
	font-size: 0.9rem;
	cursor: pointer;
}

.mobile-dropdown-logout:hover {
	color: var(--primary-color);
}

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

.mobile-hamburger span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
	background: var(--primary-color);
}

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

.mobile-hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
	background: var(--primary-color);
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 280px;
	height: 100vh;
	min-height: 100vh;
	background: rgba(15, 15, 35, 0.98);
	backdrop-filter: blur(20px);
	padding: 1rem 0;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 1001;
	border-left: 1px solid rgba(102, 126, 234, 0.3);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.mobile-menu-header {
	display: flex;
	justify-content: flex-end;
}

.mobile-menu .mobile-hamburger {
	display: flex;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu .mobile-hamburger span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu.open .mobile-hamburger span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu.open .mobile-hamburger span:nth-child(2) {
	opacity: 0;
}

.mobile-menu.open .mobile-hamburger span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu.open {
	transform: translateX(0);
}

.mobile-menu-links {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0 0;
}

.mobile-menu-links li {
	margin-bottom: 1rem;
}

.mobile-menu-links a {
	display: block;
	color: white;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: color 0.3s ease;
	text-align: center;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
	color: var(--primary-color);
}

.mobile-auth-section {
	margin-top: 2rem;
}

.mobile-auth-section .btn {
	display: block;
	width: 100%;
	margin-bottom: 1rem;
	text-align: center;
	padding: 1rem;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.mobile-auth-section .btn:hover {
	transform: translateY(-2px);
}

.mobile-auth-section .btn-primary {
	background: var(--gradient);
	border: none;
	color: white;
}

.mobile-auth-section .btn-outline {
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.mobile-auth-section .btn-outline:hover {
	background: var(--primary-color);
	color: white;
}

.mobile-user-info {
	text-align: center;
	padding: 2rem 1rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 1rem;
}

.mobile-user-info h4 {
	margin: 0 0 0.5rem 0;
	color: white;
	font-size: 1.5rem;
	font-weight: 600;
}

.mobile-user-info p {
	margin: 0 0 1rem 0;
	color: #a1a1aa;
	font-size: 1rem;
}

.mobile-coins {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: #a1a1aa;
	font-size: 1rem;
}

.mobile-logout-section {
	padding: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: auto;
}

.mobile-logout-btn {
	width: 100%;
	background: transparent;
	border: 2px solid #73d4ff;
	color: #73d4ff;
	padding: 1rem;
	border-radius: 8px;
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.mobile-logout-btn:hover {
	background: rgba(115, 212, 255, 0.1);
}

/* Show mobile navbar only on mobile */
@media (max-width: 768px) {
	.mobile-navbar {
		display: block;
	}

	header {
		display: none;
	}

	.hero {
		padding-top: 70px;
	}

	section:first-of-type {
		padding-top: 70px;
	}

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

	.games-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 1.5rem;
		perspective: 800px;
	}

	.game-card {
		height: 350px;
	}

	.game-image {
		height: 160px;
	}

	.game-info {
		padding: 0.75rem;
	}

	.game-info h3 {
		font-size: 1rem;
		min-height: 2.4rem;
	}

	.game-info p {
		font-size: 0.85rem;
	}

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

	.btn-hero {
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
		white-space: nowrap;
		text-align: center;
		margin: 0 auto;
		width: 100%;
		max-width: 280px;
	}

	/* Ensure mobile menu appears above other content */
	.mobile-menu {
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
	}

	/* Overlay for slide-right menu */
	.mobile-menu-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 998;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}

	.mobile-menu-overlay.show {
		opacity: 1;
		visibility: visible;
	}

	/* Prevent body scroll when mobile menu is open */
	body.mobile-menu-open {
		overflow: hidden;
	}

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

	.hero-left {
		text-align: center;
	}

	.hero-right {
		display: none;
	}

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

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

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

	.hero-animation {
		width: 300px;
		height: 300px;
	}

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

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

	.cookie-content {
		flex-direction: column;
		gap: 1rem;
	}

	.age-content {
		margin: 1rem;
		padding: 2rem;
	}

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

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

	.user-info {
		position: relative;
	}

	.user-circle {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: var(--primary-color);
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		color: white;
		margin: 0.5rem 0;
	}

	.user-dropdown {
		position: absolute;
		top: 50px;
		right: 0;
		background: var(--bg-card);
		border: 1px solid var(--border-color);
		border-radius: 8px;
		padding: 1rem;
		min-width: 200px;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
		display: none;
		z-index: 1000;
	}

	.user-dropdown.show {
		display: block;
	}

	.user-details {
		text-align: center;
		margin-bottom: 1rem;
	}

	.user-details span {
		display: block;
		margin: 0.5rem 0;
	}

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

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

	.cookie-content {
		flex-direction: column;
		gap: 1rem;
	}

	.age-content {
		margin: 1rem;
		padding: 2rem;
	}

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

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

@media (max-width: 480px) {
	.games-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		perspective: 600px;
	}

	.game-card {
		height: 360px;
		max-width: 100%;
	}

	.game-image {
		height: 140px;
	}

	.game-info {
		padding: 0.75rem;
	}

	.game-info h3 {
		font-size: 0.95rem;
		min-height: 2.2rem;
	}

	.game-info p {
		font-size: 0.8rem;
	}
}

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

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

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

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

.pulse {
	animation: pulse 2s infinite;
}

.faq-item {
	background: var(--bg-card);
	border-radius: 12px;
	margin-bottom: 1rem;
	border: 1px solid var(--border-color);
	overflow: hidden;
}

.faq-item h3 {
	color: var(--primary-color);
	margin: 0;
	padding: 0.75rem 1rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
	background: rgba(102, 126, 234, 0.1);
	transition: background-color 0.3s ease;
}

.faq-item h3:hover {
	background: rgba(102, 126, 234, 0.2);
}

.faq-item p {
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
	padding: 0 1rem;
}

.faq-answer.open {
	max-height: 300px;
	padding: 0.75rem 1rem;
}

.faq-item h3 .fa-chevron-down {
	transition: transform 0.5s ease;
}

.faq-item.open h3 .fa-chevron-down {
	transform: rotate(180deg);
}
/* Dark Contact Page Styles */
.support-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.15),
		rgba(100, 26, 218, 0.15)
	);
	border: none;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-size: 1rem;
	margin-bottom: 2rem;
	color: #ffffff;
	font-weight: 600;
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 25px rgba(115, 212, 255, 0.3);
	transition: all 0.3s ease;
}

.support-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(115, 212, 255, 0.4);
}

.support-badge i {
	color: #73d4ff;
	font-size: 1.2rem;
}

/* Contact Methods Section */
.contact-methods-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

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

.method-card {
	background: linear-gradient(
		145deg,
		rgba(115, 212, 255, 0.05),
		rgba(100, 26, 218, 0.08)
	);
	border: none;
	padding: 3rem 2rem;
	border-radius: 25px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	backdrop-filter: blur(20px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.method-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 25px;
	padding: 2px;
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.3),
		rgba(100, 26, 218, 0.3)
	);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.method-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 25px 50px rgba(115, 212, 255, 0.2);
}

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

.method-icon-large {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	color: #ffffff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	box-shadow: 0 10px 30px rgba(115, 212, 255, 0.4);
	transition: all 0.3s ease;
}

.method-card:hover .method-icon-large {
	transform: scale(1.1);
	box-shadow: 0 15px 40px rgba(115, 212, 255, 0.6);
}

.method-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

/* Contact Form Section */
.contact-form-section {
	padding: 5rem 0;
	background: #000000;
}

.form-container {
	max-width: 900px;
	margin: 0 auto;
	background: linear-gradient(
		145deg,
		rgba(17, 17, 17, 0.8),
		rgba(0, 0, 0, 0.9)
	);
	border: none;
	padding: 4rem;
	border-radius: 30px;
	backdrop-filter: blur(30px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
	position: relative;
	overflow: hidden;
}

.form-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 30px;
	padding: 2px;
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.2),
		rgba(100, 26, 218, 0.2)
	);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0.5;
}

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

.form-header p {
	color: var(--text-secondary);
}

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

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

.modern-field {
	position: relative;
}

.modern-field input,
.modern-field select,
.modern-field textarea {
	width: 100%;
	padding: 1rem 0;
	border: none;
	border-bottom: 2px solid var(--border-color);
	background: transparent;
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.modern-field label {
	position: absolute;
	left: 0;
	top: 1rem;
	color: var(--text-secondary);
	transition: all 0.3s ease;
	pointer-events: none;
}

.modern-field input:focus + label,
.modern-field input:not(:placeholder-shown) + label,
.modern-field textarea:focus + label,
.modern-field textarea:not(:placeholder-shown) + label {
	transform: translateY(-1.5rem) scale(0.875);
	color: var(--primary-color);
}

.modern-field select:focus + label,
.modern-field select:valid + label {
	transform: translateY(-1.5rem) scale(0.875);
	color: var(--primary-color);
}

.modern-field select:not([value=""]) + label {
	transform: translateY(-1.5rem) scale(0.875);
	color: var(--primary-color);
}

.field-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.modern-field input:focus ~ .field-line,
.modern-field select:focus ~ .field-line,
.modern-field textarea:focus ~ .field-line {
	width: 100%;
}

.modern-field input,
.modern-field select,
.modern-field textarea {
	border-bottom: 2px solid rgba(115, 212, 255, 0.2);
}

.modern-field input:focus,
.modern-field select:focus,
.modern-field textarea:focus {
	border-bottom-color: var(--primary-color);
}

.contact-submit {
	width: 100%;
	padding: 1rem 2rem;
	background: var(--primary-color);
	border: none;
	border-radius: 8px;
	color: var(--bg-dark);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #fff;
}

.contact-submit:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

/* Contact Info Section */
.contact-info-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

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

.info-card {
	background: linear-gradient(
		145deg,
		rgba(115, 212, 255, 0.05),
		rgba(100, 26, 218, 0.08)
	);
	border: none;
	padding: 3rem 2.5rem;
	border-radius: 25px;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	backdrop-filter: blur(20px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.info-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 25px;
	padding: 2px;
	background: linear-gradient(
		135deg,
		rgba(115, 212, 255, 0.3),
		rgba(100, 26, 218, 0.3)
	);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.info-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 25px 50px rgba(115, 212, 255, 0.2);
}

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

.info-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	color: #ffffff;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.75rem;
	box-shadow: 0 10px 30px rgba(115, 212, 255, 0.4);
	transition: all 0.3s ease;
}

.info-card:hover .info-icon {
	transform: scale(1.1);
	box-shadow: 0 15px 40px rgba(115, 212, 255, 0.6);
}

.location-details p {
	margin-bottom: 0.25rem;
	color: var(--text-secondary);
}

.hours-details {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hours-row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--border-color);
}

.hours-row span:first-child {
	font-weight: 500;
	color: var(--text-primary);
}

.hours-row span:last-child {
	color: var(--text-secondary);
	font-size: 0.875rem;
}

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

	.form-container {
		padding: 2rem;
	}

	.info-card {
		text-align: center;
	}

	.info-icon {
		margin: 0 auto 1rem;
	}

	.hours-row span:first-child {
		font-size: 0.875rem;
	}
}
/* FAQ Page Styles */
.faq-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

/* FAQ Categories */
.faq-categories {
	padding: 3rem 0;
	background: var(--bg-darker);
}

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

.category-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
}

.category-card:hover {
	transform: translateY(-4px);
	border-color: var(--primary-color);
}

.category-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	color: var(--bg-dark);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
	padding: 4rem 0;
	background: var(--bg-dark);
}

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

.faq-item {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: var(--primary-color);
}

.faq-item h3 {
	color: var(--text-primary);
	margin: 0;
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--bg-card);
	transition: all 0.3s ease;
	font-size: 1.1rem;
	font-weight: 600;
}

.faq-item h3:hover {
	background: var(--bg-darker);
}

.faq-icon {
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: var(--bg-dark);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.faq-item h3 .fa-chevron-down {
	margin-left: auto;
	transition: transform 0.3s ease;
	color: var(--text-secondary);
}

.faq-item.open h3 .fa-chevron-down {
	transform: rotate(180deg);
	color: var(--primary-color);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: var(--bg-darker);
}

.faq-answer p {
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
	padding: 1.5rem;
}

/* Help Section */
.help-section {
	padding: 3rem 0;
	background: var(--bg-darker);
}

.help-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	padding: 3rem;
	border-radius: 12px;
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
}

.help-icon {
	width: 80px;
	height: 80px;
	background: var(--primary-color);
	color: var(--bg-dark);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
}

.help-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--primary-color);
	color: var(--bg-dark);
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 1rem;
	color: #fff;
}

.help-btn:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.faq-item h3 {
		padding: 1rem;
		font-size: 1rem;
	}

	.faq-answer p {
		padding: 1rem;
	}

	.help-card {
		padding: 2rem;
	}
}
/* About Page Styles */
.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	margin-bottom: 1rem;
	color: #fff;
	font-weight: 600;
	box-shadow: 0 8px 25px rgba(115, 212, 255, 0.3);
}

/* Mission Section */
.mission-section {
	padding: 6rem 0;
	background: var(--bg-darker);
}

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

.mission-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mission-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

.mission-features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

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

.feature-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	color: var(--bg-dark);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}

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

.feature-text p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin: 0;
}

.mission-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.stat-card {
	background: linear-gradient(
		145deg,
		rgba(115, 212, 255, 0.1),
		rgba(100, 26, 218, 0.1)
	);
	border: 2px solid;
	border-image: linear-gradient(135deg, #73d4ff, #641ada) 1;
	padding: 2rem;
	border-radius: 20px;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.stat-card:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 15px 40px rgba(115, 212, 255, 0.3);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Values Section */
.values-section {
	padding: 4rem 0;
	background: var(--bg-dark);
}

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

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-header p {
	font-size: 1.1rem;
	color: var(--text-secondary);
}

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

.value-card {
	background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
	padding: 2rem;
	border-radius: 20px;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(15px);
}

.value-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(115, 212, 255, 0.2);
}

.value-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	color: #fff;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
	box-shadow: 0 8px 25px rgba(115, 212, 255, 0.4);
}

.value-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.value-card p {
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Team Section */
.team-section {
	padding: 4rem 0;
	background: var(--bg-darker);
}

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

.team-member {
	background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));

	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(15px);
	border-radius: 20px;
}

.team-member:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(115, 212, 255, 0.2);
}

.member-avatar {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	box-shadow: 0 8px 25px rgba(115, 212, 255, 0.4);
}

.team-member h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.member-role {
	font-size: 1rem;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 600;
	margin-bottom: 1rem;
}

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

/* CTA Section */

.cta-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-content p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.cta-btn.primary {
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	color: #ffffff;
	box-shadow: 0 8px 25px rgba(115, 212, 255, 0.4);
}

.cta-btn.primary:hover {
	background: linear-gradient(135deg, #641ada 0%, #73d4ff 100%);
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(115, 212, 255, 0.5);
}

.cta-btn.secondary {
	background: transparent;
	color: #73d4ff;
	border: 2px solid;
}

.cta-btn.secondary:hover {
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	color: #ffffff;
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(115, 212, 255, 0.3);
}

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

	.mission-content h2,
	.section-header h2,
	.cta-content h2 {
		font-size: 2rem;
	}

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

	.cta-btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
}
/* Hero Left New Styles */
.hero-badges {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
}

.offer-badge {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--primary-color)
	);
	color: white;
	padding: 0.75rem 1.25rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	overflow: hidden;
}

.trust-badge {
	background: linear-gradient(135deg, #641ada, #73d4ff);
	color: white;
	padding: 0.75rem 1.25rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.brand-highlight {
	background: linear-gradient(135deg, #73d4ff 0%, #641ada 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	max-width: 500px;
}

.hero-benefits {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.benefit-item i {
	color: #641ada;
	font-size: 1.1rem;
}

.cta-section {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	align-items: center;
	width: 100%;
}

@media (max-width: 768px) {
	.cta-section {
		flex-direction: column !important;
		gap: 1rem !important;
		align-items: stretch !important;
	}
}

.btn-cta-section small {
	font-size: 1rem;
	font-weight: 500;
	opacity: 0.8;
	text-align: center;
	margin: 0 auto;
}

.cta-info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.cta-note {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	font-style: italic;
}

.social-proof {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.avatars {
	display: flex;
	align-items: center;
}

.avatar {
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #73d4ff, #641ada);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	margin-left: -8px;
	border: 2px solid #000;
}

.avatar:first-child {
	margin-left: 0;
}

.avatar-more {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 600;
	color: #fff;
	margin-left: -8px;
	border: 2px solid #000;
}

.social-proof span {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	font-weight: 500;
}
.cta-section .btn {
	padding: 1rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: center;
	flex: 1;
}

.cta-section .btn:hover {
	transform: translateY(-2px);
}
/* Game Stats Section */
.game-stats-section {
	text-align: center;
}

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

.stats-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

.stats-description {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 3rem;
}

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

.stat-item {
	background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
	padding: 2rem 1.5rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
	text-align: center;
}

.stat-item:hover {
	transform: translateY(-5px);
	border-color: rgba(115, 212, 255, 0.3);
	box-shadow: 0 10px 30px rgba(115, 212, 255, 0.2);
}

.stat-icon {
	font-size: 2.5rem;
	color: #73d4ff;
	margin-bottom: 1rem;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

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

@media (max-width: 1024px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

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

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

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

	.stat-item {
		padding: 1.5rem 1rem;
	}

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

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

	.stat-label {
		font-size: 0.9rem;
	}
}
/* About Page Rounded Borders */
.stat-card {
	border: 2px solid;
	border-image: linear-gradient(135deg, #73d4ff, #641ada) 1;
	border-radius: 25px !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.value-card {
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.team-member {
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
/* Round borders for stat cards */
.mission-stats .stat-card {
	border-radius: 20px !important;
	border: 2px solid #73d4ff;
}

.stat-card {
	border-radius: 20px !important;
}
.value-card {
	border-radius: 15px !important;
	-webkit-border-radius: 15px !important;
	-moz-border-radius: 15px !important;
}

.value-card[style] {
	border-radius: 15px !important;
}
