.premium-upsell {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 12px calc(var(--mobile-nav-h, 64px) + env(safe-area-inset-bottom, 0px) + 12px);
  pointer-events: none;
}
.premium-upsell[hidden] {
  display: none !important;
}
.premium-upsell__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(6, 6, 12, 0.48);
  cursor: pointer;
  pointer-events: auto;
}
.premium-upsell__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(78vh, 640px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--panel, #16161f);
  color: inherit;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.12));
  border-radius: 20px 20px 16px 16px;
  padding: 22px 18px 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
  animation: premiumUpsellIn 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.premium-upsell__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.premium-upsell__banner {
  margin: 0 0 14px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--tint, rgba(255, 255, 255, 0.04));
}
.premium-upsell__banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.premium-upsell__panel h2 {
  margin: 0 36px 8px 0;
  font-size: 1.2rem;
  line-height: 1.25;
}
.premium-upsell__desc {
  margin: 0 0 12px;
  color: var(--muted, inherit);
  font-size: 0.95rem;
  line-height: 1.45;
}
.premium-upsell__highlights {
  margin: 0 0 16px;
  padding: 0 0 0 18px;
}
.premium-upsell__highlights[hidden] {
  display: none !important;
}
.premium-upsell__highlights li {
  margin: 0 0 6px;
  font-size: 0.92rem;
}
.premium-upsell__actions {
  display: grid;
  gap: 8px;
}
.premium-upsell__actions .btn {
  min-height: 48px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
body.premium-upsell-open {
  overflow: hidden;
}

@media (min-width: 901px) {
  .premium-upsell {
    align-items: center;
    padding: 24px;
  }
  .premium-upsell__panel {
    border-radius: 20px;
    padding: 24px 22px 18px;
  }
  .premium-upsell__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-upsell__panel {
    animation: none;
  }
}

@keyframes premiumUpsellIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
