/* Mobile-only "get the app" popup. Slides up from the bottom. */

.get-app-popup {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  padding-right: 36px;
  background: linear-gradient(180deg, #1a1a24 0%, #121218 100%);
  border: 1px solid #2a2a38;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 59, 127, 0.1);
  color: #f0f0f5;
  animation: get-app-popup-slide-up 320ms ease-out;
}

@keyframes get-app-popup-slide-up {
  from { transform: translateY(calc(100% + 24px)); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.get-app-popup[hidden] { display: none; }

.get-app-popup__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}

.get-app-popup__body {
  flex: 1;
  min-width: 0;
}

.get-app-popup__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #f0f0f5;
  line-height: 1.2;
}

.get-app-popup__subtitle {
  font-size: 12px;
  color: #9090a0;
  margin-top: 2px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.get-app-popup__cta {
  flex-shrink: 0;
  background: #ff3b7f;
  color: #0a0a0f;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 59, 127, 0.3);
}

.get-app-popup__cta:active { transform: scale(0.96); }

.get-app-popup__close {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: none;
  color: #606070;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.get-app-popup__close:active { color: #f0f0f5; }
