.rl-install-toast {
	position: fixed;
	left: 50%;
	bottom: calc(20px + env(safe-area-inset-bottom));
	z-index: 100002;
	display: flex;
	align-items: center;
	gap: 12px;
	width: min(440px, calc(100vw - 32px));
	transform: translate(-50%, 16px);
	opacity: 0;
	padding: 16px 20px;
	border-radius: 14px;
	background: rgba(28, 28, 30, 0.94);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
	transition: opacity 0.25s ease, transform 0.25s ease;
	font-family: -apple-system, "SF Pro Text", "Roboto", BlinkMacSystemFont, system-ui, sans-serif;
}

@media (prefers-color-scheme: light) {
	.rl-install-toast {
		background: rgba(255, 255, 255, 0.96);
		color: #1c1c1e;
		border-color: rgba(0, 0, 0, 0.08);
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	}
}

.rl-install-toast.is-android {
	border-radius: 999px;
}

.rl-install-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.rl-install-toast p {
	flex: 1 1 auto;
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
}

.rl-install-toast__icon {
	flex: 0 0 auto;
	display: inline-flex;
	color: #30d158;
}

.rl-install-toast__icon svg {
	width: 28px;
	height: 28px;
}

.rl-install-hint {
	position: fixed;
	left: 50%;
	bottom: calc(20px + env(safe-area-inset-bottom));
	z-index: 100002;
	max-width: min(440px, calc(100vw - 32px));
	transform: translate(-50%, 16px);
	opacity: 0;
	padding: 14px 40px 14px 16px;
	border-radius: 14px;
	background: rgba(28, 28, 30, 0.94);
	color: #fff;
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
	transition: opacity 0.25s ease, transform 0.25s ease;
	font-family: -apple-system, "SF Pro Text", BlinkMacSystemFont, system-ui, sans-serif;
}

.rl-install-hint.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.rl-install-hint p {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
}

.rl-install-hint__icon {
	display: inline-flex;
	vertical-align: middle;
	color: #0a84ff;
}

.rl-install-hint__icon svg {
	width: 18px;
	height: 18px;
}

.rl-install-hint__close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 26px;
	height: 26px;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}
