/* Pill hint: "Swipe up for the next game" — feed first-visit + game-over overlay */
:root {
  /* Matches feed.html bottom nav clearance */
  --gs-swipe-hint-bottom: calc(env(safe-area-inset-bottom) + 110px);
}

.gs-swipe-hint {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 10px 16px 10px 14px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  animation: gs-swipe-hint-float 1.6s ease-in-out infinite;
}
.gs-swipe-hint svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@keyframes gs-swipe-hint-float {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(-6px); opacity: 1; }
}

/* Same spot as the feed first-visit hint — above the shell bottom nav */
.gs-swipe-hint--anchored {
  position: fixed;
  left: 0;
  right: 0;
  bottom: var(--gs-swipe-hint-bottom);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
  z-index: 1;
}

#gs-end-overlay .gs-swipe-hint--anchored {
  position: absolute;
}
