/* SnaxAchievements — standardized unlock toast. Slides down from just
   under the 44px shell header, auto-dismisses. Kept visually distinct
   from the share toast (#snax-toast, bottom of screen). */
#snax-ach-toast {
  position: fixed;
  top: 56px;
  left: 50%;
  transform: translate(-50%, -160%);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 90vw;
  padding: 12px 18px;
  background: #1f1f2c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  font-family: inherit;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
#snax-ach-toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}
#snax-ach-toast .snax-ach-icon {
  font-size: 26px;
  line-height: 1;
}
#snax-ach-toast .snax-ach-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9aa0b5;
}
#snax-ach-toast .snax-ach-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
