:root {
	--background-color: #0a0a0a;
	--card-background: rgba(255, 255, 255, 0.1);
	--text-primary: #ffffff;
	--text-secondary: #cccccc;
	--icon-color: #ffffff;
	--shadow-color: rgba(0, 0, 0, 0.3);
	--aurora-color-1: #00ff88;
	--aurora-color-2: #0088ff;
	--aurora-color-3: #8800ff;
	--aurora-color-4: #ff0088;
	--aurora-color-5: #ffaa00;
}

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

body {
	font-family: 'Roboto', sans-serif;
	background: var(--background-color);
	color: var(--text-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	text-align: center;
	position: relative;
	overflow: hidden;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		var(--aurora-color-1) 0%,
		var(--aurora-color-2) 20%,
		var(--aurora-color-3) 40%,
		var(--aurora-color-4) 60%,
		var(--aurora-color-5) 80%,
		var(--aurora-color-1) 100%
	);
	background-size: 400% 400%;
	animation: aurora 8s ease-in-out infinite;
	opacity: 0.3;
	z-index: -1;
}

.container {
	background: var(--card-background);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 40px 50px;
	border-radius: 12px;
	box-shadow: 0 8px 32px var(--shadow-color);
	max-width: 500px;
	width: 90%;
	animation: fadeIn 0.5s ease-in-out;
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease-out;
	transform-style: preserve-3d;
}

.icon {
	background: linear-gradient(135deg, var(--aurora-color-1), var(--aurora-color-2));
	border-radius: 50%;
	padding: 15px;
	display: inline-block;
	margin-bottom: 20px;
	animation: iconGlow 3s ease-in-out infinite alternate;
}

.icon svg {
	width: 60px;
	height: 60px;
	color: var(--background-color);
	display: block;
}

h1 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: linear-gradient(135deg, var(--aurora-color-1), var(--aurora-color-2), var(--aurora-color-3));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: titleGlow 4s ease-in-out infinite alternate;
}

p {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.6;
	font-weight: 300;
}

.contact-info {
	margin-top: 25px;
	font-size: 14px;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.info-icon {
	width: 16px;
	height: 16px;
	color: var(--aurora-color-1);
	flex-shrink: 0;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes aurora {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes iconGlow {
	0% {
		box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
		transform: scale(1);
	}
	100% {
		box-shadow: 0 0 30px rgba(0, 136, 255, 0.5);
		transform: scale(1.05);
	}
}

@keyframes titleGlow {
	0% {
		filter: brightness(1);
	}
	100% {
		filter: brightness(1.2);
	}
}