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

body {
	font-family: 'Arial', sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

/* Создаем микро-параллакс для фона */
body::before {
	content: '';
	position: absolute;
	top: -10%;
	left: -10%;
	width: 120%;
	height: 120%;
	background:
			radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
			radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%);
	transform: translateZ(-2px);
	animation: float 20s infinite linear;
}

@keyframes float {
	0% { transform: translateZ(-2px) rotate(0deg); }
	100% { transform: translateZ(-2px) rotate(360deg); }
}

.container {
	text-align: center;
	padding: 2rem;
	position: relative;
	z-index: 2; /* Выше фона */
}

header h1 {
	font-size: 3rem;
	margin-bottom: 0.5rem;
	font-weight: 300;

	/* Эффект 1: Текст с глубиной */
	text-shadow:
			0 2px 10px rgba(0, 0, 0, 0.3),
			0 0 30px rgba(255, 255, 255, 0.2);
}

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

	/* Эффект 1: Легкая глубина */
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin: 2rem 0;

	/* Эффект 2: Многослойность с тенями */
	box-shadow:
			0 8px 32px rgba(0, 0, 0, 0.2),
			inset 0 1px 0 rgba(255, 255, 255, 0.3),
			inset 0 -1px 0 rgba(0, 0, 0, 0.1);

	transform: perspective(1000px) rotateX(5deg);
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: perspective(1000px) rotateX(0deg) translateY(-5px);
	box-shadow:
			0 15px 40px rgba(0, 0, 0, 0.3),
			inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-card h2 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 400;

	/* Эффект 1: Текст ближе к зрителю */
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.email-link {
	color: white;
	font-size: 1.8rem;
	text-decoration: none;

	/* Эффект 2: Многослойное подчеркивание */
	position: relative;
	padding-bottom: 0.3rem;
	transition: all 0.3s ease;

	/* Эффект 1: Глубина текста */
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.email-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg,
	transparent 0%,
	rgba(255, 255, 255, 0.8) 50%,
	transparent 100%);
	transform: scaleX(0.8);
	transition: transform 0.3s ease;
}

.email-link:hover::after {
	transform: scaleX(1);
}

.email-link:hover {
	text-shadow:
			0 2px 15px rgba(0, 0, 0, 0.4),
			0 0 20px rgba(255, 255, 255, 0.3);
}

footer {
	margin-top: 3rem;
	opacity: 0.7;

	/* Эффект 1: Текст дальше от зрителя */
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
	header h1 {
		font-size: 2rem;
	}

	.subtitle {
		font-size: 1.2rem;
	}

	.email-link {
		font-size: 1.3rem;
	}

	.contact-card {
		padding: 2rem;
	}
}