.pwa-update {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  padding-top: calc(8px + env(safe-area-inset-top, 0px));
  background: #2a2a4a;
  border-bottom: 1px solid #863bff;
  font-size: 13px;
  color: #ede6ff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.pwa-update__text { flex: 1; min-width: 0; line-height: 1.35; }
.pwa-update__hint {
  font-size: 11px;
  color: #b8b0d0;
  margin-top: 2px;
}
.pwa-update__actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.pwa-update__btn {
  padding: 5px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.pwa-update__btn--primary {
  background: #863bff;
  border-color: #863bff;
  color: #fff;
}
.pwa-update__btn:disabled {
  opacity: 0.6;
  cursor: wait;
}
