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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #2d2d2d 0%, #8b1a1a 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f5f5f5;
}

.container {
	text-align: center;
	padding: 2rem;
	max-width: 600px;
}

.logo {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	letter-spacing: 2px;
}

.subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.message {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	opacity: 0.85;
}

.email {
	display: inline-block;
	padding: 1rem 2rem;
	background: rgba(139, 26, 26, 0.3);
	border: 1px solid rgba(245, 245, 245, 0.2);
	border-radius: 50px;
	backdrop-filter: blur(10px);
	font-size: 1rem;
	text-decoration: none;
	color: #f5f5f5;
	transition: all 0.3s ease;
}

.email:hover {
	background: rgba(139, 26, 26, 0.5);
	border-color: rgba(245, 245, 245, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(139, 26, 26, 0.3);
}

.footer {
	margin-top: 3rem;
	opacity: 0.7;
	font-size: 0.9rem;
}

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

.container > * {
	animation: fadeIn 0.8s ease-out forwards;
}

.logo { animation-delay: 0.1s; }
.subtitle { animation-delay: 0.2s; }
.message { animation-delay: 0.3s; }
.email { animation-delay: 0.4s; }
.footer { animation-delay: 0.5s; }

