/* GameLyon France - Unique Teal/Coral Theme with Wave Animations */

:root {
	--gl-teal: #14b8a6;
	--gl-teal-dark: #0d9488;
	--gl-coral: #f43f5e;
	--gl-coral-light: #fb7185;
	--gl-cyan: #06b6d4;
	--gl-pink: #ec4899;
}

/* Typography */
.gamelyon-heading {
	font-family: 'Inter', sans-serif;
	font-weight: 900;
	letter-spacing: -0.025em;
}

.gamelyon-body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

/* 18+ Warning Banner */
.age-warning-banner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
	color: white;
	padding: 0.75rem 0;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
	border-bottom: 3px solid #14b8a6;
}

.age-warning-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.age-warning-icon {
	width: 48px;
	height: 48px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	color: #dc2626;
	font-size: 1.25rem;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.age-warning-text {
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
}

body.has-warning-banner {
	padding-top: 80px;
}

/* Wave Animation Background */
.wave-bg {
	position: relative;
	overflow: hidden;
}

.wave-bg::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 200%;
	height: 200px;
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(244, 63, 94, 0.1));
	border-radius: 50%;
	animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
	0%, 100% { transform: translateX(0) translateY(0); }
	50% { transform: translateX(-25%) translateY(-20px); }
}

/* Asymmetric Card */
.asymmetric-card {
	background: white;
	border-radius: 30px 10px 30px 10px;
	padding: 2.5rem;
	box-shadow: 0 10px 40px rgba(20, 184, 166, 0.15);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	position: relative;
}

.asymmetric-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, var(--gl-teal), var(--gl-coral));
	border-radius: 30px 10px 30px 10px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s;
}

.asymmetric-card:hover::before {
	opacity: 1;
}

.asymmetric-card:hover {
	transform: translateY(-10px) rotate(2deg);
	box-shadow: 0 20px 60px rgba(20, 184, 166, 0.25);
}

/* Circle Icon with Double Border */
.circle-icon-double {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gl-teal), var(--gl-coral));
	padding: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
	transition: all 0.3s;
}

.circle-icon-double:hover {
	transform: scale(1.1) rotate(10deg);
	box-shadow: 0 15px 40px rgba(20, 184, 166, 0.5);
}

.circle-icon-inner {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(244, 63, 94, 0.1));
}

.circle-icon-inner i {
	background: linear-gradient(135deg, var(--gl-teal), var(--gl-coral));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Zigzag Layout */
.zigzag-container > *:nth-child(odd) {
	transform: translateX(-20px);
}

.zigzag-container > *:nth-child(even) {
	transform: translateX(20px);
}

/* Badge Unique */
.badge-teal-coral {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: linear-gradient(135deg, var(--gl-teal), var(--gl-coral));
	color: white;
	border-radius: 40px;
	font-size: 0.875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
	position: relative;
	overflow: hidden;
}

.badge-teal-coral::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.5s, height 0.5s;
}

.badge-teal-coral:hover::after {
	width: 300px;
	height: 300px;
}

/* Gradient Text */
.text-teal-coral-gradient {
	background: linear-gradient(135deg, var(--gl-teal), var(--gl-coral));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Feature Card Masonry Style */
.masonry-card {
	background: white;
	border-radius: 24px;
	padding: 2rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transition: all 0.4s;
	border-top: 4px solid var(--gl-teal);
}

.masonry-card:nth-child(even) {
	border-top-color: var(--gl-coral);
}

.masonry-card:hover {
	transform: scale(1.05);
	box-shadow: 0 20px 50px rgba(20, 184, 166, 0.2);
}

/* Testimonial Bubble Style */
.testimonial-bubble {
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(244, 63, 94, 0.05));
	border-radius: 30px;
	padding: 2rem;
	position: relative;
	border: 2px solid rgba(20, 184, 166, 0.2);
	transition: all 0.3s;
}

.testimonial-bubble::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 40px;
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid rgba(20, 184, 166, 0.05);
}

.testimonial-bubble:hover {
	border-color: var(--gl-teal);
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(244, 63, 94, 0.1));
}

/* Pulsing Effect */
.pulse-teal {
	animation: pulseTeal 2s infinite;
}

@keyframes pulseTeal {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
	}
	50% {
		box-shadow: 0 0 0 15px rgba(20, 184, 166, 0);
	}
}

/* Step Circles */
.step-circle {
	position: relative;
	padding-left: 5rem;
	margin-bottom: 3rem;
}

.step-circle-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gl-teal), var(--gl-coral));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 900;
	color: white;
	box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
	border: 4px solid white;
}

.step-circle::after {
	content: '';
	position: absolute;
	left: 34px;
	top: 70px;
	width: 3px;
	height: calc(100% - 40px);
	background: linear-gradient(180deg, var(--gl-teal), var(--gl-coral));
}

.step-circle:last-child::after {
	display: none;
}

/* Accordion Wave Style */
.accordion-wave {
	background: white;
	border-radius: 20px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	border-left: 5px solid var(--gl-teal);
	transition: all 0.3s;
}

.accordion-wave:nth-child(even) {
	border-left-color: var(--gl-coral);
	border-radius: 20px 20px 20px 5px;
}

.accordion-wave:nth-child(odd) {
	border-radius: 5px 20px 20px 20px;
}

.accordion-wave:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

/* Floating Animation */
.float-animation {
	animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
}

/* Grid Pattern */
.teal-grid-pattern {
	background-image: 
		linear-gradient(rgba(20, 184, 166, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 184, 166, 0.05) 1px, transparent 1px);
	background-size: 30px 30px;
}

/* Contact Card Tilt */
.contact-tilt {
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(244, 63, 94, 0.1));
	border-radius: 24px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.4s;
	border: 2px solid rgba(20, 184, 166, 0.2);
}

.contact-tilt:hover {
	transform: perspective(1000px) rotateY(5deg);
	border-color: var(--gl-teal);
	box-shadow: 0 20px 50px rgba(20, 184, 166, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
	.circle-icon-double {
		width: 70px;
		height: 70px;
	}
	
	.step-circle-number {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
	
	.asymmetric-card {
		border-radius: 20px;
	}

	.zigzag-container > *:nth-child(odd),
	.zigzag-container > *:nth-child(even) {
		transform: translateX(0);
	}

	.age-warning-text {
		font-size: 0.85rem;
	}

	.age-warning-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	body.has-warning-banner {
		padding-top: 70px;
	}
}

/* Glow Teal */
.glow-teal {
	box-shadow: 0 0 30px rgba(20, 184, 166, 0.6);
}

/* Rotating Border */
.rotating-border {
	position: relative;
	background: white;
	border-radius: 20px;
	padding: 2rem;
}

.rotating-border::before {
	content: '';
	position: absolute;
	inset: -3px;
	background: linear-gradient(45deg, var(--gl-teal), var(--gl-coral), var(--gl-teal));
	border-radius: 20px;
	z-index: -1;
	animation: rotate-gradient 4s linear infinite;
	background-size: 200% 200%;
}

@keyframes rotate-gradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Bounce on Scroll */
.bounce-in {
	animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
	}
}

