.yom2-live-launcher {
  position: fixed;
  z-index: 2147482000;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: auto;
  max-width: calc(100vw - 32px);
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16), inset 0 0 0 1px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  font-family: Public Sans, Inter, system-ui, sans-serif;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transform: translateZ(0);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}
.yom2-live-launcher:visited {
  color: #111;
}
.yom2-live-launcher::before,
.yom2-live-launcher::after {
  display: none !important;
  content: none !important;
}
.yom2-live-launcher > :not(.yom2-live-launcher__dot):not(.yom2-live-launcher__title) {
  display: none !important;
}
.yom2-live-launcher:hover,
.yom2-live-launcher:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(0, 0, 0, 0.03);
  outline: none;
}
.yom2-live-launcher__dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #00c874;
  box-shadow: 0 0 0 10px rgba(0, 200, 116, 0.14);
  animation: yom2-launcher-dot 1.4s ease-in-out infinite;
}
.yom2-live-launcher__title {
  display: block;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;
}
@keyframes yom2-launcher-dot {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(0, 200, 116, 0.12);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 13px rgba(0, 200, 116, 0.18);
  }
}
@media (max-width: 640px) {
  .yom2-live-launcher {
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
    min-height: 46px;
    padding: 10px 14px;
    gap: 9px;
  }
  .yom2-live-launcher__title {
    font-size: 13px;
    line-height: 15px;
  }
}
