.sign-in-nav-pill {
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sign-in-nav-pill:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: #d4af37;
  color: #e8c547;
}

#auth-slot[data-marra-auth-hidden="true"] {
  display: none !important;
}

.marra-auth-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(110%);
  z-index: 9990;
  width: min(calc(100vw - 2rem), 420px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.marra-auth-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.marra-auth-toast[hidden] {
  display: block;
}

.marra-auth-toast:not(.is-visible) {
  visibility: hidden;
}

.marra-auth-toast.is-visible {
  visibility: visible;
}

.marra-auth-toast__panel {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: linear-gradient(165deg, #18181b 0%, #09090b 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  padding: 1.15rem 1.15rem 1rem;
}

.marra-auth-toast__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  color: #a1a1aa;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.marra-auth-toast__close:hover {
  color: #fafafa;
  background: rgba(255, 255, 255, 0.1);
}

.marra-auth-toast__msg {
  margin: 0 1.75rem 0.85rem 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #d4d4d8;
}

.marra-auth-toast__google {
  display: flex;
  justify-content: center;
  min-height: 44px;
}

@media (prefers-reduced-motion: reduce) {
  .marra-auth-toast {
    transition: none;
  }
}
