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

body {
	font-family: 'Space Grotesk', sans-serif;
	height: 100vh;
	overflow: hidden;
	background: #000;
}

.container {
	position: relative;
	width: 100%;
	height: 100vh;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('AfuaBigBanner.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.2;
	z-index: 1;
}

.grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(0, 217, 255, 0.3) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 217, 255, 0.3) 1px, transparent 1px);
	background-size: 50px 50px;
	pointer-events: none;
	z-index: 2;
}

.grid-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(255, 0, 64, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(255, 0, 64, 0.15) 0%, transparent 50%);
	animation: glowPulse 7s ease-in-out infinite;
}

@keyframes gridPulse {
	0%, 100% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.8;
	}
}

.grid-line {
	position: absolute;
	background: rgba(0, 217, 255, 0.4);
	pointer-events: none;
	z-index: 2;
}

.grid-tile {
	position: absolute;
	background: rgba(0, 217, 255, 0);
	pointer-events: none;
	z-index: 1;
}

@keyframes tilePulse {
	0%, 100% {
		opacity: 0;
		background-color: rgba(0, 217, 255, 0);
	}
	50% {
		opacity: 1;
		background-color: rgba(0, 217, 255, 0.15);
	}
}

@keyframes glowPulse {
	0%, 100% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.6;
	}
}

.lightcycle {
	position: absolute;
	width: 30px;
	height: 12px;
	z-index: 5;
	pointer-events: none;
	transform-origin: center center;
	display: block;
	visibility: visible;
	left: 0;
	top: 0;
}

.lightcycle-red {
	background: linear-gradient(90deg, transparent 0%, #ff0040 20%, #ff0040 80%, transparent 100%);
	box-shadow: 
		0 0 10px #ff0040,
		0 0 20px #ff0040,
		0 0 30px #ff0040,
		inset 0 0 10px rgba(255, 255, 255, 0.3);
	border: 1px solid #ff0040;
}

.lightcycle-blue {
	background: linear-gradient(90deg, transparent 0%, #00d9ff 20%, #00d9ff 80%, transparent 100%);
	box-shadow: 
		0 0 10px #00d9ff,
		0 0 20px #00d9ff,
		0 0 30px #00d9ff,
		inset 0 0 10px rgba(255, 255, 255, 0.3);
	border: 1px solid #00d9ff;
}

.lightcycle::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 8px currentColor;
}

.content {
	position: relative;
	z-index: 10;
	text-align: center;
	color: #fff;
	text-shadow: 
		0 0 10px rgba(255, 0, 64, 0.8),
		0 0 20px rgba(255, 0, 64, 0.6),
		0 0 30px rgba(255, 0, 64, 0.4);
	animation: textGlow 3.5s ease-in-out infinite;
}

.title {
	font-size: 4.5rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
	color: #ff0040;
	text-transform: uppercase;
}

.subtitle {
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 0.3em;
	color: #ff0040;
	opacity: 0.9;
	animation: subtitlePulse 4.375s ease-in-out infinite;
}

@keyframes textGlow {
	0%, 100% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(1.2);
	}
}

@keyframes subtitlePulse {
	0%, 100% {
		opacity: 0.7;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateY(-5px);
	}
}

@media (max-width: 768px) {
	.title {
		font-size: 3rem;
	}
	
	.subtitle {
		font-size: 1.2rem;
	}
	
	.grid-overlay {
		background-size: 30px 30px;
	}
	
	.grid-overlay::before {
		background-size: 150px 150px;
	}
}

@media (max-width: 480px) {
	.title {
		font-size: 2rem;
	}
	
	.subtitle {
		font-size: 1rem;
		letter-spacing: 0.2em;
	}
}

