#bvm-fomo-root {
	position: fixed;
	z-index: 999999;
	pointer-events: none;
}

#bvm-fomo-root.bvm-fomo-bottom-left   { left: 20px;  bottom: 20px; }
#bvm-fomo-root.bvm-fomo-bottom-right  { right: 20px; bottom: 20px; }
#bvm-fomo-root.bvm-fomo-top-left      { left: 20px;  top: 20px; }
#bvm-fomo-root.bvm-fomo-top-right     { right: 20px; top: 20px; }

.bvm-fomo-card {
	pointer-events: auto;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
	padding: 14px 18px 14px 14px;
	max-width: 340px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.bvm-fomo-card.bvm-fomo-visible {
	opacity: 1;
	transform: translateY(0);
}

.bvm-fomo-badge {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bvm-fomo-accent, #1877f2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bvm-fomo-badge svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #ffffff;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bvm-fomo-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.bvm-fomo-name {
	font-weight: 700;
	font-size: 14px;
	color: #1c1e21;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bvm-fomo-message {
	font-size: 13px;
	color: #4b4f56;
	line-height: 1.35;
}

.bvm-fomo-meta {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	color: #8a8d91;
	margin-top: 2px;
}

.bvm-fomo-meta .bvm-fomo-dot-icon {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--bvm-fomo-accent, #1877f2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.bvm-fomo-meta .bvm-fomo-dot-icon svg {
	width: 7px;
	height: 7px;
	fill: none;
	stroke: #ffffff;
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 480px) {
	#bvm-fomo-root.bvm-fomo-bottom-left,
	#bvm-fomo-root.bvm-fomo-bottom-right,
	#bvm-fomo-root.bvm-fomo-top-left,
	#bvm-fomo-root.bvm-fomo-top-right {
		left: 12px;
		right: 12px;
	}
	.bvm-fomo-card {
		max-width: none;
	}
}
