#hunger-toast-container{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hunger-toast{
  background: rgba(20,20,20,0.92);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  font-size: 14px;
  line-height: 1.3;
  max-width: 320px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: opacity 0.5s ease, transform 0.3s ease;
}
.hunger-toast.level-50{ border-color: #b08900; }
.hunger-toast.level-20{ border-color: #c74a00; }
.hunger-toast.level-10{ border-color: #d00000; }
.hunger-toast.fadeout{ opacity: 0; transform: translateY(-6px); }

.hunger-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.hunger-overlay-content{
  background: #101015;
  color: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  width: min(560px, 90vw);
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}
.hunger-overlay-content h1{
  margin: 0 0 8px 0;
  font-size: 28px;
}
.hunger-overlay-content p{
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

/* Blocca la pagina quando l'overlay è visibile */
body.hunger-blocked{
  overflow: hidden !important;
}