/* "We're live" pill: bottom-left, above iPhone home indicator. */
.ww-live-pill {
	position: fixed; left: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 990;
	display: inline-flex; align-items: center; gap: 10px;
	padding: 11px 16px 11px 14px; border-radius: 999px;
	background: #14293A; color: #fff; box-shadow: 0 12px 32px rgba(10, 25, 38, .32);
	font: 800 15px/1.2 Manrope, system-ui, sans-serif; text-decoration: none;
	transform: translateY(140%); opacity: 0; transition: transform .35s ease, opacity .35s ease;
}
.ww-live-pill.is-on { transform: none; opacity: 1; }
.ww-live-pill:hover { background: #1D3A52; color: #fff; }
.ww-live-pill__dot { width: 10px; height: 10px; border-radius: 50%; background: #E5484D; box-shadow: 0 0 0 0 rgba(229, 72, 77, .6); animation: ww-live-pulse 1.8s infinite; }
.ww-live-pill--soon .ww-live-pill__dot { background: #F6C445; animation: none; }
.ww-live-pill__go { color: #F6C445; }
.ww-live-pill__x { margin-left: 4px; width: 22px; height: 22px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 14px; line-height: 22px; cursor: pointer; padding: 0; }
@keyframes ww-live-pulse { 70% { box-shadow: 0 0 0 10px rgba(229, 72, 77, 0); } 100% { box-shadow: 0 0 0 0 rgba(229, 72, 77, 0); } }
@media (prefers-reduced-motion: reduce) { .ww-live-pill, .ww-live-pill__dot { transition: none; animation: none; } }
