/* ── Wurf-Modal ─────────────────────────────────────────── */
#litter-modal {
  display: none;
  position: fixed;
  inset: 0;                       /* top/right/bottom/left = 0 */
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#litter-modal.active {
  display: flex;
}

.litter-modal-box {
  background: #fff;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 2rem 2rem 1.5rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { transform: translateY(-20px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.litter-modal-box h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.litter-modal-box p {
  line-height: 1.6;
}

#litter-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  color: #555;
}

#litter-modal-close:hover {
  color: #000;
}