.gm-pwa-install--redfeed {
  left: 14px;
  right: 14px;
  bottom: calc(92px + env(safe-area-inset-bottom));
  z-index: 99940;
  border-radius: 22px;
  border: 1px solid rgba(255, 23, 77, 0.35);
  background: linear-gradient(135deg, rgba(18, 10, 16, 0.98), rgba(8, 8, 14, 0.98));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 46, 166, 0.12);
}

.gm-pwa-install--redfeed .gm-pwa-install__icon-img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 42px;
  box-shadow: 0 8px 22px rgba(255, 23, 77, 0.28);
}

.gm-pwa-install--redfeed .gm-pwa-install__title {
  color: #fff;
}

.gm-pwa-install--redfeed .gm-pwa-install__text {
  color: rgba(255, 220, 230, 0.82);
}

.gm-pwa-install--redfeed .gm-pwa-install__primary {
  color: #fff;
  background: linear-gradient(135deg, #ff174d, #ff2ea6);
  box-shadow: 0 10px 24px rgba(255, 23, 77, 0.28);
}

.gm-pwa-install--redfeed.gm-pwa-install--busy .gm-pwa-install__primary {
  opacity: 0.75;
  pointer-events: none;
}

.gm-pwa-install--redfeed.gm-pwa-install--help {
  border-color: rgba(255, 205, 86, 0.45);
}

.gm-pwa-install--redfeed.gm-pwa-install--help .gm-pwa-install__text {
  color: #fff;
  line-height: 1.45;
  font-size: 13px;
}

.gm-pwa-install--redfeed .gm-pwa-install__dismiss {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.rf-push-prompt {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(92px + env(safe-area-inset-bottom));
  z-index: 99935;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.rf-push-prompt.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rf-push-prompt__box {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 23, 77, 0.35);
  background: linear-gradient(135deg, rgba(18, 10, 16, 0.98), rgba(8, 8, 14, 0.98));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}
.rf-push-prompt__box img {
  border-radius: 12px;
  width: 44px;
  height: 44px;
  object-fit: cover;
}
.rf-push-prompt__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.rf-push-prompt__text strong {
  color: #fff;
  font-size: 0.92rem;
}
.rf-push-prompt__text span {
  color: rgba(255, 220, 230, 0.82);
  font-size: 0.8rem;
  line-height: 1.4;
}
.rf-push-prompt__actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
}
.rf-push-prompt__yes,
.rf-push-prompt__no {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}
.rf-push-prompt__yes {
  color: #fff;
  background: linear-gradient(135deg, #ff174d, #ff2ea6);
}
.rf-push-prompt__no {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}
