/* --- Listen-Design --- */
ul.check-list {
  list-style-type: disc !important;
  padding-left: 25px;
}

ul.check-list li {
  margin-bottom: 15px;
  display: list-item;
  line-height: 1.6;
}

/* --- Easteregg: Radlader --- */
#radlader-container {
  position: fixed;
  right: -450px;
  bottom: 30px;
  z-index: 9999;
  pointer-events: none;
  width: 300px;
}

.vibrating-kramer {
  width: 300px;
  height: auto;
  animation: kramer-vibration 0.15s infinite linear;
}

@keyframes kramer-vibration {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

/* --- Toast Animation --- */
#toast.show {
  display: block !important;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from { 
    transform: translateY(100px); 
    opacity: 0; 
  }
  to { 
    transform: translateY(0); 
    opacity: 1; 
  }
}