.rf-brand-download-toast {
  position: fixed;
  left: 50%;
  top: calc(12px + env(safe-area-inset-top, 0px));
  width: min(420px, calc(100% - 24px));
  transform: translate(-50%, -120%);
  z-index: 2147483800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.rf-brand-download-toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
@media (min-width: 761px) {
  .rf-brand-download-toast {
    top: auto;
    bottom: 24px;
    width: min(380px, calc(100% - 28px));
    transform: translate(-50%, 16px);
  }
  .rf-brand-download-toast.is-on {
    transform: translate(-50%, 0);
  }
}
.rf-brand-download-toast-card {
  position: relative;
  width: 100%;
  padding: 14px 16px 14px 52px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(22, 22, 34, 0.97), rgba(10, 10, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 46, 166, 0.12);
  backdrop-filter: blur(16px);
  color: #fff;
}
.rf-brand-download-toast.is-done .rf-brand-download-toast-card {
  border-color: rgba(34, 197, 94, 0.42);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(34, 197, 94, 0.18);
}
.rf-brand-download-toast.is-done .rf-brand-download-toast-ring {
  display: none;
}
.rf-brand-download-toast.is-error .rf-brand-download-toast-card {
  border-color: rgba(239, 68, 68, 0.42);
}
.rf-brand-download-toast-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 3px;
}
.rf-brand-download-toast-card span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}
.rf-brand-download-toast-ring {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: #ff2ea6;
  border-right-color: #ff174d;
  animation: rfBrandDlSpin 0.85s linear infinite;
}
@keyframes rfBrandDlSpin {
  to {
    transform: rotate(360deg);
  }
}
