.ios-install-tip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #410348;
  color: white;
  padding: 12px 16px;
  font-size: 14px;
  text-align: center;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.ios-install-tip.show {
  transform: translateY(0);
}

.ios-install-tip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.ios-install-tip-close {
  background: #efe5ea;
  color: #410348;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
  font-size: 12px;
  margin-left: 12px;
  flex-shrink: 0;
}

.ios-install-tip-text {
  flex: 1;
}