.lfp-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.4);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	display: flex;
	z-index: 999999;
	font-family: 'Inter', system-ui, sans-serif;
	animation: lfpFadeIn 0.3s ease;
	box-sizing: border-box;
	padding: 20px;
}

/* Positions */
.lfp-pos-center { justify-content: center; align-items: center; }
.lfp-pos-bottom-right { justify-content: flex-end; align-items: flex-end; }
.lfp-pos-bottom-left { justify-content: flex-start; align-items: flex-end; }
.lfp-pos-top-right { justify-content: flex-end; align-items: flex-start; }
.lfp-pos-top-left { justify-content: flex-start; align-items: flex-start; }

.lfp-popup-content {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	padding: 2.5rem;
	border-radius: 1rem;
	width: 100%;
	max-width: 400px;
	position: relative;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	text-align: center;
}

/* Animations */
.lfp-anim-slide-up { animation: lfpSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.lfp-anim-slide-down { animation: lfpSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.lfp-anim-fade { animation: lfpFadeIn 0.4s ease; }
.lfp-anim-zoom { animation: lfpZoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.lfp-anim-bounce { animation: lfpBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.lfp-close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #64748b;
	transition: color 0.2s;
}

.lfp-close-btn:hover {
	color: #0f172a;
}

.lfp-popup-content h3 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	color: #0f172a;
	font-size: 1.5rem;
}

.lfp-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.lfp-form input {
	padding: 0.75rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	font-size: 1rem;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	background: rgba(255, 255, 255, 0.9);
}

.lfp-form input:focus {
	border-color: #6366f1;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.lfp-submit-btn {
	background-color: #6366f1;
	color: white;
	border: none;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.1s;
	box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
}

.lfp-submit-btn:hover {
	background-color: #4f46e5;
	transform: translateY(-1px);
}

.lfp-submit-btn:disabled {
	background-color: #94a3b8;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

@keyframes lfpFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes lfpSlideUp {
	from { opacity: 0; transform: translateY(20px) scale(0.95); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lfpSlideDown {
	from { opacity: 0; transform: translateY(-20px) scale(0.95); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes lfpZoomIn {
	from { opacity: 0; transform: scale(0.9); }
	to { opacity: 1; transform: scale(1); }
}

@keyframes lfpBounce {
	0% { opacity: 0; transform: scale(0.3); }
	50% { opacity: 1; transform: scale(1.05); }
	70% { transform: scale(0.9); }
	100% { transform: scale(1); }
}
