/* Bottom toast container */
.spinwheel-win-ticker {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 99999;
  max-width: 92vw;
  pointer-events: none; /* allow clicks to pass except on the toast itself */
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Toast */
.spinwheel-win-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(25, 25, 28, 0.92);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: auto;
  transition: transform .35s ease, opacity .35s ease;
}

/* Visible state */
.spinwheel-win-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Text */
.spinwheel-win-text {
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}

/* Close button */
.spinwheel-win-close {
  background: transparent;
  color: #fff;
  font-size: 18px;
  border: 0;
  margin-left: auto;
  cursor: pointer;
  opacity: .7;
}
.spinwheel-win-close:hover { opacity: 1; }

/* Responsive */
@media (max-width: 480px) {
  .spinwheel-win-text { font-size: 13px; }
}
