#rally-egg-nudge {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99999;
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 300px;
	background: #0d1f39;
	color: #f5f9ff;
	border: 1px solid rgba(245, 249, 255, 0.14);
	border-radius: 14px;
	padding: 12px 14px;
	box-shadow: 0 12px 32px rgba(1, 27, 53, 0.35);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 13.5px;
	line-height: 1.35;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.35s ease, transform 0.35s ease;
	pointer-events: none;
}

#rally-egg-nudge.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

#rally-egg-nudge.no-motion {
	transition: opacity 0.2s linear;
	transform: none !important;
}

#rally-egg-nudge .rally-egg-text {
	flex: 1;
}

#rally-egg-nudge a.rally-egg-link {
	display: inline-block;
	margin-top: 6px;
	color: #0d1f39;
	background: #c9e356;
	font-weight: 700;
	font-size: 12.5px;
	text-decoration: none;
	padding: 6px 12px;
	border-radius: 999px;
}

#rally-egg-nudge a.rally-egg-link:hover {
	filter: brightness(1.05);
}

#rally-egg-nudge button.rally-egg-dismiss {
	flex: none;
	background: transparent;
	border: 0;
	color: rgba(245, 249, 255, 0.6);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	padding: 2px 4px;
}

#rally-egg-nudge button.rally-egg-dismiss:hover {
	color: #f5f9ff;
}

@media (max-width: 480px) {
	#rally-egg-nudge {
		left: 16px;
		right: 16px;
		bottom: 16px;
		max-width: none;
	}
}
