.pwa-install-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(22, 26, 36, 0.96);
  border: 1px solid rgba(225, 29, 72, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  color: #e7e9ee;
  backdrop-filter: blur(10px);
}

.pwa-install-banner__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e11d48;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.pwa-install-banner__body {
  flex: 1;
  min-width: 0;
}

.pwa-install-banner__title {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
}

.pwa-install-banner__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #97a0b3;
}

.pwa-install-banner__actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.pwa-install-banner__btn {
  appearance: none;
  border: 0;
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.pwa-install-banner__btn.primary {
  background: #e11d48;
  color: #fff;
}

.pwa-install-banner__btn.ghost {
  background: transparent;
  color: #97a0b3;
  border: 1px solid #3d4659;
}

.pwa-install-banner__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #97a0b3;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.pwa-ios-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  color: #f8fafc;
}

@media (min-width: 900px) {
  .pwa-install-banner {
    left: auto;
    right: 20px;
    bottom: 20px;
    max-width: 380px;
  }
}
