:root {
	--mai-bg-color: #0b0f14;
	--mai-primary-color: #00ff88; /* Неоново-зелёный */
	--mai-secondary-color: #00ff88;
	--mai-text-color: #e6eef9;
	--mai-dark-gray: #0f1420;
	--mai-mid-gray: #182235;
	--mai-light-gray: #2a3b5e;
	--mai-border-radius: 14px;
	--mai-transition-speed: 0.3s;
	--mai-shadow: 0 10px 25px rgba(6, 12, 20, 0.45), 0 2px 8px rgba(6, 12, 20, 0.35);
	--mai-font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	--mai-header-height: 80px;
}

body {
	font-family: var(--mai-font-family);
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background-color: var(--mai-bg-color);
	color: var(--mai-text-color);
}

.thank-you-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: var(--mai-bg-color);
	padding: 20px;
}

.thank-you-content {
	background-color: var(--mai-dark-gray);
	padding: 3rem;
	border-radius: var(--mai-border-radius);
	box-shadow: var(--mai-shadow);
	text-align: center;
	max-width: 400px;
	width: 90%;
}

.check-mark {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
}

.check-mark svg {
	width: 100%;
	height: 100%;
}

.check-mark svg circle {
	stroke: var(--mai-primary-color);
	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(--mai-primary-color);
	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(--mai-primary-color);
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.thank-you-content p {
	color: var(--mai-text-color);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.back-button {
	display: inline-block;
	background-color: var(--mai-primary-color);
	color: #000;
	padding: 12px 24px;
	border-radius: var(--mai-border-radius);
	text-decoration: none;
	font-weight: 600;
	transition: background-color var(--mai-transition-speed) ease, transform var(--mai-transition-speed) ease;
	box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.back-button:hover {
	background-color: #00cc6a;
	transform: translateY(-2px);
}

@media (max-width: 480px) {
	.thank-you-content {
		padding: 2rem;
	}

	.thank-you-content h1 {
		font-size: 2rem;
	}

	.thank-you-content p {
		font-size: 1rem;
	}
}
