/* FUP Warning Toast */
.fup-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 14px;
  padding: 16px 20px;
  max-width: 380px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fup-toast.show { transform: translateX(0); }
.fup-toast-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.fup-toast-body { flex: 1; }
.fup-toast-title {
  font-size: 14px;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 4px;
}
.fup-toast-msg {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.5;
}
.fup-toast-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 18px;
  cursor: pointer;
  padding: 0 0 0 8px;
  line-height: 1;
}
.fup-toast-close:hover { color: #f9fafb; }
.fup-toast .fup-toast-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s;
}
.fup-toast .fup-toast-cta:hover { transform: translateY(-1px); }

/* FUP Warning Inline */
.fup-inline-warning {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 8px;
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.5;
}
.fup-inline-warning strong { color: #fbbf24; }
.fup-inline-warning a { color: #818cf8; text-decoration: underline; }

@media (max-width: 768px) {
  .fup-toast {
    top: auto;
    bottom: 80px;
    right: 12px;
    left: 12px;
    max-width: none;
  }
}
