.f3b-embed-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 6px;
	border: none;
	background: #4a9eff;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

.f3b-embed-trigger:hover {
	filter: brightness(1.08);
}

.f3b-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(6, 8, 12, 0.85);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.f3b-popup-overlay.f3b-popup-active {
	opacity: 1;
}

.f3b-popup-overlay.f3b-popup-closing {
	opacity: 0;
}

.f3b-popup-overlay.f3b-popup-light {
	background: rgba(230, 230, 230, 0.85);
}

.f3b-popup-inner {
	position: relative;
	max-width: 96vw;
	max-height: 96vh;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	overflow: hidden;
	transform: scale(0.96);
	transition: transform 0.25s ease;
}

.f3b-popup-overlay.f3b-popup-active .f3b-popup-inner {
	transform: scale(1);
}

.f3b-popup-iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.f3b-popup-close {
	position: absolute;
	top: -14px;
	right: -14px;
	z-index: 1;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: #111;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.f3b-scroll-locked {
	overflow: hidden;
}
