.android-install-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: min(360px, calc(100vw - 24px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(24, 35, 23, 0.94);
  color: #fffdf8;
  box-shadow: 0 22px 50px rgba(24, 35, 23, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.android-install-banner[hidden] {
  display: none;
}

.android-install-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  object-fit: contain;
  background: #243126;
  padding: 6px;
}

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

.android-install-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

.android-install-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  line-height: 1.3;
  color: rgba(255, 253, 248, 0.78);
}

.android-install-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.android-install-link,
.android-manage-link,
.android-install-dismiss {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.android-install-link {
  background: #bf6c3d;
  color: #fff;
  font-weight: 700;
}

.android-manage-link {
  background: rgba(255, 255, 255, 0.18);
  color: #fffdf8;
  font-weight: 600;
}

.android-install-dismiss {
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf8;
}

@media (max-width: 640px) {
  .android-install-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    align-items: flex-start;
  }

  .android-install-actions {
    width: 100%;
  }
}