.tp-exit-intent-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 16px;
}

.tp-exit-intent-overlay.is-visible {
	display: flex;
}

.tp-exit-intent-modal {
	max-width: 640px;
	width: 100%;
	background: #4d0bbf;
	border-radius: 32px;
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
	position: relative;
	padding: 40px 56px 32px;
	font-family: 'Oswald', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.tp-exit-intent-close {
	position: absolute;
	top: 18px;
	right: 22px;
	border: none;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #ffffff;
}

.tp-exit-intent-content {
	text-align: center;
	color: #ffffff;
}

.tp-exit-graphic {
	margin: 16px 0 20px;
}

.tp-exit-graphic svg {
	max-width: 100%;
	height: auto;
}

.tp-exit-graphic-mobile {
	display: none;
}

.tp-exit-title {
	margin: 0 0 6px;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
}

.tp-exit-subtitle {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.6;
	color: #ffffff;
}

.tp-exit-subtitle-strong {
	font-weight: 700;
}

.tp-exit-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.tp-exit-primary {
	background: #ff2f92;
	color: #ffffff;
	border-radius: 999px;
	padding: 12px 32px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.12s ease;
}

.tp-exit-primary:hover {
	background: #e4237f;
	transform: translateY(-1px);
}

.tp-exit-secondary {
	background: transparent;
	color: #ffffff;
	border-radius: 999px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease;
}

.tp-exit-secondary:hover {
	background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 600px) {
	.tp-exit-intent-modal {
		padding: 40px 28px 24px;
		border-radius: 24px;
	}

	.tp-exit-title {
		font-size: 18px;
		text-align: center;
	}

	.tp-exit-subtitle {
		font-size: 13px;
		text-align: center;
	}

	.tp-exit-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.tp-exit-graphic-desktop {
		display: none;
	}

	.tp-exit-graphic-mobile {
		display: block;
	}

	.tp-exit-primary,
	.tp-exit-secondary {
		width: 100%;
		text-align: center;
	}
}
