.jr-toast-stack {
  position: fixed;
  top: 76px;
  right: 22px;
  z-index: 99999;
  display: grid;
  gap: 10px;
  width: min(380px, calc(100vw - 28px));
  pointer-events: none;
}

.jr-toast {
  pointer-events: auto;
  text-align: left;
  border: 1px solid rgba(59, 190, 255, .34);
  border-radius: 12px;
  padding: 14px 15px;
  color: #eef8ff;
  background: linear-gradient(135deg, rgba(7, 18, 36, .97), rgba(10, 35, 58, .96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, .45), 0 0 28px rgba(34, 211, 238, .12);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .22s ease, transform .22s ease, border-color .18s ease;
  cursor: pointer;
}

.jr-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.jr-toast:hover {
  border-color: rgba(255, 216, 107, .72);
}

.jr-toast-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: #092033;
  background: linear-gradient(135deg, #fff07a, #25d8ff);
  font-size: 12px;
  font-weight: 900;
}

.jr-toast-title {
  display: block;
  margin-top: 9px;
  color: #fff8d8;
  font-size: 15px;
  line-height: 1.35;
}

.jr-toast-content {
  display: -webkit-box;
  margin-top: 6px;
  color: #a9c0d4;
  font-size: 13px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 720px) {
  .jr-toast-stack {
    top: 64px;
    right: 14px;
    left: 14px;
    width: auto;
  }
}
