@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

.contact-hero {
	text-align: center;
	padding: 60px 20px;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
				repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 0, 0.1) 2px, rgba(0, 255, 0, 0.1) 4px);
	margin-bottom: 40px;
	position: relative;
	overflow: hidden;
}

.contact-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
	pointer-events: none;
}

.contact-hero h1 {
	font-family: "Press Start 2P", cursive;
	color: #0f0;
	font-size: 2.5em;
	margin-bottom: 20px;
	text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
	animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
	font-family: "VT323", monospace;
	color: #fff;
	font-size: 1.5em;
	margin-bottom: 40px;
}

.contact-stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 40px;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #0f0;
}

.stat-item i {
	font-size: 2em;
	margin-bottom: 10px;
	animation: pulse 2s infinite;
}

.stat-item span {
	font-family: "VT323", monospace;
	font-size: 1.2em;
}

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

.contact-info {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.info-card {
	flex: 1;
	min-width: 250px;
	background: rgba(0, 0, 0, 0.7);
	border: 2px solid #0f0;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.info-card i {
	font-size: 2em;
	color: #0f0;
	margin-bottom: 15px;
}

.info-card h3 {
	font-family: "Press Start 2P", cursive;
	color: #f0f;
	font-size: 1.2em;
	margin-bottom: 10px;
	text-shadow: 2px 2px 0 #0ff;
}

.info-card p {
	font-family: "VT323", monospace;
	color: #fff;
	font-size: 1.1em;
	margin: 5px 0;
}

.contact-form-container {
	background: rgba(0, 0, 0, 0.7);
	border: 2px solid #0f0;
	padding: 30px;
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.contact-form {
	display: grid;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-family: "VT323", monospace;
	color: #0f0;
	font-size: 1.2em;
}

.contact-form-txt,
.contact-form-textarea {
	background: rgba(0, 0, 0, 0.5);
	border: 2px solid #0f0;
	padding: 12px;
	color: #fff;
	font-family: "VT323", monospace;
	font-size: 1.1em;
	transition: all 0.3s ease;
}

.contact-form-txt:focus,
.contact-form-textarea:focus {
	outline: none;
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
	border-color: #f0f;
}

.contact-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form-btn {
	background: transparent;
	border: 2px solid #0f0;
	color: #0f0;
	padding: 15px 30px;
	font-family: "Press Start 2P", cursive;
	font-size: 1em;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

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

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

.contact-form-btn:hover {
	background: #0f0;
	color: #000;
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.contact-form-btn i {
	font-size: 1.2em;
}

@keyframes glow {
	from {
		text-shadow: 0 0 5px #0f0, 0 0 10px #0f0, 0 0 15px #0f0;
	}
	to {
		text-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0;
	}
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
	.contact-hero h1 {
		font-size: 2em;
	}

	.hero-subtitle {
		font-size: 1.2em;
	}

	.contact-stats {
		flex-direction: column;
		gap: 20px;
	}

	.contact-info {
		flex-direction: column;
	}

	.info-card {
		width: 100%;
	}

	.contact-form-container {
		padding: 20px;
	}
}

@media screen and (max-width: 480px) {
	.contact-hero {
		padding: 40px 15px;
	}

	.contact-hero h1 {
		font-size: 1.5em;
	}

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

	.stat-item i {
		font-size: 1.5em;
	}

	.stat-item span {
		font-size: 1em;
	}

	.info-card {
		padding: 15px;
	}

	.info-card h3 {
		font-size: 1em;
	}

	.info-card p {
		font-size: 1em;
	}

	.contact-form-txt,
	.contact-form-textarea {
		font-size: 1em;
		padding: 10px;
	}

	.contact-form-btn {
		font-size: 0.9em;
		padding: 12px 24px;
	}
}