body {
	font-family: var(--ec-font-family-primary);
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background: var(--ec-gradient-primary);
	color: var(--mb-text);
}

/* Центровка блока */
.thank-you-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: var(--ec-spacing-md);
}

/* Белый блок в стиле главной */
.thank-you-content {
	background: #fff;
	padding: 3rem;
	border-radius: var(--ec-border-radius-lg);
	box-shadow: var(--ec-shadow-soft);
	text-align: center;
	max-width: 500px;
	width: 100%;
	animation: fadeInUp 0.6s ease-in-out;
}

/* Анимация появления */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Иконка галочки */
.check-mark {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
}
.check-mark svg {
	width: 100%;
	height: 100%;
}
.check-mark svg circle {
	stroke: var(--mb-primary-dark);
	stroke-width: 2;
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	fill: none;
	animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.check-mark svg path {
	stroke: var(--mb-primary-dark);
	stroke-width: 2;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	fill: none;
	animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
	100% {
		stroke-dashoffset: 0;
	}
}

/* Заголовок */
.thank-you-content h1 {
	color: var(--mb-primary-dark);
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-family: var(--ec-font-family-secondary);
}

/* Текст */
.thank-you-content p {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

/* Кнопка */
.back-button {
	display: inline-block;
	background: var(--mb-primary-dark);
	color: #fff;
	padding: 12px 24px;
	border-radius: var(--ec-border-radius-md);
	text-decoration: none;
	font-weight: 600;
	transition: var(--ec-transition-medium);
}
.back-button:hover {
	background: var(--mb-primary);
}

/* Мобильная адаптация */
@media (max-width: 480px) {
	.thank-you-content {
		padding: 2rem;
	}
	.thank-you-content h1 {
		font-size: 2rem;
	}
	.thank-you-content p {
		font-size: 1rem;
	}
}
