/* PlayOra Gamix - Neon Cyberpunk Theme (Cyan/Magenta) */

:root {
	--po-cyan: #06b6d4;
	--po-cyan-bright: #22d3ee;
	--po-magenta: #d946ef;
	--po-magenta-bright: #e879f9;
	--po-indigo: #4f46e5;
	--po-dark-bg: #0f1419;
}

/* Typography */
.playora-heading {
	font-family: 'Inter', sans-serif;
	font-weight: 900;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.playora-body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

/* 18+ Warning Banner with Neon */
.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), 0 0 20px rgba(6, 182, 212, 0.4);
	border-bottom: 3px solid #06b6d4;
}

.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), 0 0 15px rgba(6, 182, 212, 0.6);
}

.age-warning-text {
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
}

body.has-warning-banner {
	padding-top: 80px;
}

/* Neon Glow Effect */
.neon-cyan {
	box-shadow: 
		0 0 10px rgba(6, 182, 212, 0.6),
		0 0 20px rgba(6, 182, 212, 0.4),
		0 0 30px rgba(6, 182, 212, 0.2);
}

.neon-magenta {
	box-shadow: 
		0 0 10px rgba(217, 70, 239, 0.6),
		0 0 20px rgba(217, 70, 239, 0.4),
		0 0 30px rgba(217, 70, 239, 0.2);
}

/* Triangle Icon */
.triangle-icon {
	width: 0;
	height: 0;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-bottom: 70px solid;
	border-bottom-color: var(--po-cyan);
	position: relative;
	display: inline-block;
	filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.5));
	transition: all 0.3s;
}

.triangle-icon:hover {
	transform: rotateY(180deg);
	border-bottom-color: var(--po-magenta);
	filter: drop-shadow(0 0 20px rgba(217, 70, 239, 0.7));
}

.triangle-icon-content {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.5rem;
	color: white;
}

/* Flip Card */
.flip-card {
	perspective: 1000px;
	height: 300px;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 20px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.flip-card-front {
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(217, 70, 239, 0.1));
	border: 2px solid var(--po-cyan);
}

.flip-card-back {
	background: linear-gradient(135deg, var(--po-magenta), var(--po-cyan));
	color: white;
	transform: rotateY(180deg);
}

/* Glitch Effect */
.glitch {
	position: relative;
	color: white;
}

.glitch::before,
.glitch::after {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.glitch::before {
	animation: glitch-1 2s infinite;
	color: var(--po-cyan);
	z-index: -1;
}

.glitch::after {
	animation: glitch-2 2s infinite;
	color: var(--po-magenta);
	z-index: -2;
}

@keyframes glitch-1 {
	0%, 100% { transform: translate(0); }
	33% { transform: translate(-2px, 2px); }
	66% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
	0%, 100% { transform: translate(0); }
	33% { transform: translate(2px, -2px); }
	66% { transform: translate(-2px, 2px); }
}

/* Neon Border Card */
.neon-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	padding: 2rem;
	border: 2px solid var(--po-cyan);
	box-shadow: 
		0 0 10px rgba(6, 182, 212, 0.3),
		0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
}

.neon-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(6, 182, 212, 0.1) 50%,
		transparent 70%
	);
	animation: scan 3s linear infinite;
}

@keyframes scan {
	0% { transform: translateX(-100%) translateY(-100%); }
	100% { transform: translateX(100%) translateY(100%); }
}

.neon-card:hover {
	transform: translateY(-8px);
	border-color: var(--po-magenta);
	box-shadow: 
		0 0 20px rgba(217, 70, 239, 0.5),
		0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Hexagon Stats */
.hex-stat {
	width: 120px;
	height: 140px;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	background: linear-gradient(135deg, var(--po-cyan), var(--po-magenta));
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	transition: all 0.3s;
}

.hex-stat:hover {
	transform: scale(1.15) rotate(10deg);
	filter: brightness(1.2);
}

/* Testimonial Neon */
.testimonial-neon {
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(217, 70, 239, 0.05));
	border-radius: 20px;
	padding: 2rem;
	border: 2px solid transparent;
	background-clip: padding-box;
	position: relative;
	transition: all 0.3s;
}

.testimonial-neon::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 20px;
	padding: 2px;
	background: linear-gradient(135deg, var(--po-cyan), var(--po-magenta));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.3s;
}

.testimonial-neon:hover::before {
	opacity: 1;
}

.testimonial-neon:hover {
	box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

/* Pentagon Step */
.pentagon-step {
	position: relative;
	padding-left: 6rem;
	margin-bottom: 3rem;
}

.pentagon-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 80px;
	height: 80px;
	clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
	background: linear-gradient(135deg, var(--po-cyan), var(--po-magenta));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 900;
	color: white;
	filter: drop-shadow(0 10px 20px rgba(6, 182, 212, 0.4));
}

/* Accordion Cyber */
.accordion-cyber {
	background: white;
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	border: 2px solid var(--po-cyan);
	transition: all 0.3s;
	position: relative;
}

.accordion-cyber::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--po-cyan), var(--po-magenta));
	border-radius: 12px 0 0 12px;
	transform: scaleY(0);
	transition: transform 0.3s;
}

.accordion-cyber:hover::before {
	transform: scaleY(1);
}

.accordion-cyber:hover {
	border-color: var(--po-magenta);
	box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
	transform: translateX(8px);
}

/* Scanline Effect */
.scanlines {
	position: relative;
	overflow: hidden;
}

.scanlines::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		transparent 50%,
		rgba(6, 182, 212, 0.02) 51%
	);
	background-size: 100% 4px;
	pointer-events: none;
	animation: scan-move 8s linear infinite;
}

@keyframes scan-move {
	0% { transform: translateY(0); }
	100% { transform: translateY(100%); }
}

/* Bento Grid */
.bento-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
}

.bento-item-large {
	grid-column: span 3;
	grid-row: span 2;
}

.bento-item-medium {
	grid-column: span 2;
}

.bento-item-small {
	grid-column: span 2;
}

@media (max-width: 768px) {
	.bento-grid {
		grid-template-columns: 1fr;
	}
	
	.bento-item-large,
	.bento-item-medium,
	.bento-item-small {
		grid-column: span 1;
		grid-row: span 1;
	}

	.age-warning-text {
		font-size: 0.85rem;
	}

	.age-warning-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	body.has-warning-banner {
		padding-top: 70px;
	}
}

/* Pulsing Neon */
.pulse-neon {
	animation: pulseNeon 2s ease-in-out infinite;
}

@keyframes pulseNeon {
	0%, 100% {
		box-shadow: 
			0 0 10px rgba(6, 182, 212, 0.6),
			0 0 20px rgba(6, 182, 212, 0.4);
	}
	50% {
		box-shadow: 
			0 0 20px rgba(217, 70, 239, 0.8),
			0 0 40px rgba(217, 70, 239, 0.6);
	}
}

/* Gradient Text Animated */
.gradient-text-animated {
	background: linear-gradient(90deg, var(--po-cyan), var(--po-magenta), var(--po-cyan));
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

/* Contact Card Cyber */
.contact-cyber {
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(217, 70, 239, 0.1));
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	border: 2px solid var(--po-cyan);
	transition: all 0.4s;
	position: relative;
}

.contact-cyber::after {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 20px;
	background: linear-gradient(45deg, var(--po-cyan), var(--po-magenta), var(--po-cyan), var(--po-magenta));
	background-size: 400% 400%;
	z-index: -1;
	opacity: 0;
	animation: gradient-rotate 4s linear infinite;
	transition: opacity 0.3s;
}

@keyframes gradient-rotate {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.contact-cyber:hover::after {
	opacity: 1;
}

.contact-cyber:hover {
	transform: scale(1.08);
	border-color: transparent;
}

/* Neon Button */
.btn-neon {
	background: linear-gradient(135deg, var(--po-cyan), var(--po-magenta));
	color: white;
	font-weight: 900;
	padding: 1.25rem 3rem;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	box-shadow: 
		0 10px 30px rgba(6, 182, 212, 0.4),
		0 0 40px rgba(217, 70, 239, 0.3);
	transition: all 0.3s;
	border: none;
	position: relative;
	overflow: hidden;
}

.btn-neon::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s;
}

.btn-neon:hover::before {
	left: 100%;
}

.btn-neon:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 
		0 15px 40px rgba(6, 182, 212, 0.6),
		0 0 60px rgba(217, 70, 239, 0.5);
}

/* Grid Lines Overlay */
.cyber-grid {
	background-image: 
		linear-gradient(rgba(6, 182, 212, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
	background-size: 20px 20px;
}

/* Badge Cyber */
.badge-cyber {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: linear-gradient(135deg, var(--po-cyan), var(--po-magenta));
	color: white;
	border-radius: 30px;
	font-size: 0.875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
	animation: pulse-neon-badge 2s infinite;
}

@keyframes pulse-neon-badge {
	0%, 100% {
		box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
	}
	50% {
		box-shadow: 0 0 30px rgba(217, 70, 239, 0.7);
	}
}

/* Skeleton Loader Effect */
.skeleton-glow {
	animation: skeleton 1.5s ease-in-out infinite;
}

@keyframes skeleton {
	0%, 100% {
		background-position: -200px 0;
	}
	100% {
		background-position: calc(200px + 100%) 0;
	}
}

/* Cyberpunk Divider */
.cyber-divider {
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--po-cyan), var(--po-magenta), transparent);
	margin: 4rem 0;
	position: relative;
}

.cyber-divider::before,
.cyber-divider::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--po-cyan);
	box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

.cyber-divider::before {
	left: 0;
}

.cyber-divider::after {
	right: 0;
	background: var(--po-magenta);
	box-shadow: 0 0 10px rgba(217, 70, 239, 0.8);
}

