/* ========== GUEST PREVIEW BANNER ========== */
/* Styles extraits de navigation-router (avant: <style> inline) */
#guest-preview-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: var(--bg-primary, #282828);
  border-top: 1px solid var(--border-color, #363636);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: 'Satoshi', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  color: var(--text-secondary, #B8B8B8);
  animation: gpb-slide-up .2s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes gpb-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

#gpb-label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  color: var(--text-secondary, #B8B8B8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#gpb-label strong {
  color: var(--text-primary, #fff);
  font-weight: 500;
  margin-right: 4px;
}
