.mobile-header-message {
  font-size: 11.5px;
  padding: 0 5px;
  border-radius: 5px;
  background-color: #cffddd;
  position: absolute;
  inset: 0;
  margin: 0 auto;
  width: 90%;
  height: 19px;
  z-index: 1000;
  text-align: center;
  line-height: 1.6;
}

.meyou-promo-toast {
  position: fixed;
  z-index: 999999;
  top: calc(12px + env(safe-area-inset-top));
  left: 12px;
  right: 12px;

  display: flex;
  align-items: center;
  gap: 10px;

  max-width: 420px;
  margin: 0 auto;
  padding: 12px 14px;

  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: #f0fdf4;
  color: #166534;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;

  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.meyou-promo-toast--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.meyou-promo-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #16a34a;
}

.meyou-promo-toast__text {
  display: block;
}

.meyou-promo-toast--error {
  border-color: rgba(239, 68, 68, 0.22);
  background: #fef2f2;
  color: #991b1b;
}

.meyou-promo-toast--error .meyou-promo-toast__icon {
  color: #dc2626;
}
