.hidden {
  display: none;
}

/* ============================
   Letzter-Standort-Overlay
   ============================ */

.last-level-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 8, 20, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: llo-fade-in 0.4s ease-out both;
}

.last-level-overlay.is-fading {
  animation: llo-fade-out 1.1s ease-in-out both;
}

.last-level-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: linear-gradient(160deg, #1a120c 0%, #251911 56%, #140e09 100%);
  border: 1px solid rgba(232, 189, 79, 0.3);
  border-radius: 24px;
  padding: 30px 32px 28px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.65);
  max-width: 340px;
  width: 100%;
  text-align: center;
  animation: llo-card-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s both;
}

.last-level-eyebrow {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #E8BD4F;
}

.last-level-icon {
  font-size: 2.4rem;
  line-height: 1;
  animation: llo-pin-drop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.last-level-sub {
  font-size: 0.84rem;
  color: rgba(245, 232, 210, 0.55);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.last-level-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  max-width: 26ch;
}

.last-level-dots {
  display: flex;
  gap: 7px;
  margin-top: 6px;
}

.last-level-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: llo-dot-bounce 1.1s ease-in-out infinite;
}

.last-level-dots span:nth-child(1) { background: #E8BD4F;               }
.last-level-dots span:nth-child(2) { background: #f0a070; animation-delay: 0.18s; }
.last-level-dots span:nth-child(3) { background: #a8d8a0; animation-delay: 0.36s; }

@keyframes llo-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes llo-fade-out {
  0%   { opacity: 1; }
  30%  { opacity: 0.9; }
  100% { opacity: 0; }
}

@keyframes llo-card-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes llo-pin-drop {
  from { opacity: 0; transform: translateY(-12px) scale(0.7); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes llo-dot-bounce {
  0%, 80%, 100% { transform: scaleY(1);   opacity: 0.7; }
  40%            { transform: scaleY(1.5); opacity: 1;   }
}
