.sltn-live {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 999999;
}

.sltn-live__toasts {
	position: fixed;
	top: 18px;
	right: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: min(420px, calc(100vw - 24px));
}

.sltn-live__toast {
	display: block;
	pointer-events: auto;
	text-decoration: none;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: linear-gradient(135deg, #8b0000 0%, #d13c00 100%);
	color: #ffffff;
	padding: 12px 14px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
	transform: translate3d(0, -8px, 0);
	opacity: 0;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.sltn-live__toast.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.sltn-live__toast-title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin-bottom: 4px;
}

.sltn-live__toast-message {
	font-size: 14px;
	line-height: 1.35;
}

.sltn-live__ticker {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: auto;
	background: #111111;
	border-top: 2px solid #d13c00;
	overflow: hidden;
	padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
}

.sltn-live__ticker-track {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	min-width: 100%;
	width: max-content;
	animation: sltn-live-ticker 34s linear infinite;
	will-change: transform;
}

.sltn-live__ticker:hover .sltn-live__ticker-track {
	animation-play-state: paused;
}

.sltn-live__ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-left: 18px;
	font-size: 13px;
	text-decoration: none;
	color: #ffffff;
	white-space: nowrap;
}

.sltn-live__ticker-item:hover {
	color: #ffffff;
	text-decoration: underline;
}

.sltn-live__ticker-label {
	font-weight: 700;
	color: #ffa56b;
	letter-spacing: 0.03em;
}

.sltn-live__ticker-message {
	opacity: 0.95;
}

@keyframes sltn-live-ticker {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 767px) {
	.sltn-live__toasts {
		display: none;
	}
}

@media (min-width: 768px) {
	.sltn-live__ticker {
		display: none;
	}
}
