.qf-thanks-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 7, 10, 0.75);
	opacity: 0;
	transition: opacity 0.2s ease;
	padding: 1rem;
}

.qf-thanks-overlay.qf-thanks-open {
	opacity: 1;
}

.qf-thanks-card {
	position: relative;
	max-width: 420px;
	width: 100%;
	text-align: center;
	padding: 2.4rem 2rem 2rem;
	border-radius: 14px;
	background: radial-gradient(ellipse at 20% 15%, rgba(123, 47, 247, 0.25), transparent 55%),
		radial-gradient(ellipse at 85% 90%, rgba(255, 45, 149, 0.18), transparent 60%), #0f0d13;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	transform: translateY(12px);
	transition: transform 0.2s ease;
}

.qf-thanks-overlay.qf-thanks-open .qf-thanks-card {
	transform: translateY(0);
}

.qf-thanks-card h3 {
	margin: 0 0 0.75rem;
	font-size: 1.5rem;
	font-weight: 600;
	background: linear-gradient(90deg, #ff2d95, #7b2ff7);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.qf-thanks-card p {
	margin: 0;
	color: #f2f0f5;
	font-size: 1rem;
	line-height: 1.5;
}

.qf-thanks-close {
	position: absolute;
	top: 0.6rem;
	right: 0.75rem;
	background: transparent;
	border: 0;
	color: #f2f0f5;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.3rem 0.5rem;
	border-radius: 50%;
	transition: background 0.2s ease;
}

.qf-thanks-close:hover {
	background: rgba(255, 255, 255, 0.1);
}
