.install-prompt {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: none;
  border: 1px solid rgba(46, 125, 79, 0.45);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.install-prompt.is-visible {
  display: block;
}

.install-prompt-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
}

.install-prompt-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
}

.install-prompt-copy {
  flex: 1;
  min-width: 0;
}

.install-prompt-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8d5a3;
  margin-bottom: 0.28rem;
}

.install-prompt-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #f0ece2;
  line-height: 1.35;
  margin-bottom: 0.3rem;
}

.install-prompt-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #d4d3ce;
}

.install-prompt-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.install-prompt-button,
.install-prompt-dismiss {
  appearance: none;
  border: 1px solid #333333;
  background: transparent;
  color: #d4d3ce;
  cursor: pointer;
  font: inherit;
}

.install-prompt-button {
  padding: 0.7rem 0.95rem;
  border-color: #2e7d4f;
  color: #f0ece2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.install-prompt-dismiss {
  padding: 0.68rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #909090;
}

.install-prompt-close {
  appearance: none;
  border: none;
  background: none;
  color: #909090;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.install-prompt-button:hover,
.install-prompt-dismiss:hover {
  border-color: #e8d5a3;
  color: #f0ece2;
}

.install-prompt-close:hover {
  color: #f0ece2;
}

@media (min-width: 781px) {
  .install-prompt {
    left: auto;
    right: 1.25rem;
    width: min(25rem, calc(100vw - 2rem));
  }
}

@media (min-width: 961px) {
  .install-prompt {
    display: none !important;
  }
}
