#live-toast-container {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 10500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100% - 40px);
}

.live-toast {
  pointer-events: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(0,0,0,0.85);
  color: #fff;
  border-left: 6px solid #a9e116;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transform: translateX(-10px);
  opacity: 0;
  transition: transform .36s cubic-bezier(.2,.9,.3,1), opacity .36s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 14px;
  line-height: 1.2;
  max-width: 420px;
  overflow: hidden;
}

.live-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.live-toast .avatar {
  min-width: 44px;
  min-height: 44px;
  width:44px;
  height:44px;
  border-radius: 50%;
  background: linear-gradient(135deg,#1f1f1f,#111);
  display:flex;align-items:center;justify-content:center;font-weight:700;color:#fff;
  font-size:13px;
  flex-shrink:0;
}

.live-toast .text {
  flex:1;
}

.live-toast .time {
  font-size:12px;color:rgba(255,255,255,0.7);margin-left:8px;white-space:nowrap;
}

@media (max-width: 480px) {
  #live-toast-container { left: 10px; right: 10px; bottom: 10px; }
  .live-toast { max-width: 100%; font-size: 13px; padding: 10px; border-radius: 8px; }
}
