/**
 * Smart Publish AI - Smart Optin Frontend Stylesheet
 */

/* Overlay háttér */
#spai-optin-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 23, 42, 0.65);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 99999999;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

#spai-optin-overlay.spai-active {
	opacity: 1;
}

/* Modal kártya */
#spai-optin-modal {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
	width: 90%;
	max-width: 460px;
	padding: 35px 30px;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	transform: scale(0.9) translateY(20px);
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#spai-optin-overlay.spai-active #spai-optin-modal {
	transform: scale(1) translateY(0);
}

/* Bezáró gomb */
#spai-optin-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #f1f5f9;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	color: #64748b;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: all 0.2s ease;
	outline: none;
}

#spai-optin-close:hover {
	background: #e2e8f0;
	color: #0f172a;
	transform: rotate(90deg);
}

/* Kiemelt ikon */
.spai-optin-header-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
	color: #4f46e5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin: 0 auto 20px auto;
	box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.15);
}

/* Címek és szövegek */
#spai-optin-modal h2 {
	margin: 0 0 12px 0;
	padding: 0;
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.3;
}

.spai-optin-content {
	margin-bottom: 25px;
}

.spai-optin-content p {
	margin: 0;
	padding: 0;
	font-size: 15px;
	color: #475569;
	line-height: 1.6;
}

/* Form és gombok */
#spai-optin-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.spai-optin-input-wrapper {
	position: relative;
	width: 100%;
}

.spai-optin-input-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-size: 16px;
	pointer-events: none;
}

#spai-optin-email {
	width: 100% !important;
	box-sizing: border-box !important;
	padding: 12px 16px 12px 42px !important;
	border: 1.5px solid #cbd5e1 !important;
	border-radius: 10px !important;
	font-size: 14px !important;
	height: auto !important;
	background-color: #f8fafc !important;
	color: #0f172a !important;
	transition: all 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
}

#spai-optin-email:focus {
	border-color: #6366f1 !important;
	background-color: #ffffff !important;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12) !important;
}

/* Fő akciógomb */
.spai-optin-btn {
	width: 100% !important;
	padding: 12px 20px !important;
	border: none !important;
	border-radius: 10px !important;
	background: linear-gradient(135deg, #4f46e5 0%, #31108f 100%) !important;
	color: #ffffff !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	cursor: pointer !important;
	box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -1px rgba(79, 70, 229, 0.1) !important;
	transition: all 0.25s ease !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1.4 !important;
	height: auto !important;
}

.spai-optin-btn:hover {
	transform: translateY(-1px) !important;
	box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3), 0 4px 6px -2px rgba(79, 70, 229, 0.2) !important;
	background: linear-gradient(135deg, #4338ca 0%, #240c74 100%) !important;
}

.spai-optin-btn:active {
	transform: translateY(0) !important;
}

.spai-optin-btn:disabled {
	opacity: 0.7 !important;
	cursor: not-allowed !important;
	transform: none !important;
	box-shadow: none !important;
}

/* Töltő ikon gombban */
.spai-optin-loader {
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Hiba / Sikeres üzenet */
#spai-optin-response {
	font-size: 13px;
	padding: 8px 12px;
	border-radius: 6px;
	animation: spaiSlideIn 0.3s ease;
}

@keyframes spaiSlideIn {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobil optimalizálás */
@media (max-width: 480px) {
	#spai-optin-modal {
		width: 95%;
		padding: 30px 20px;
	}
}
