/* 🎨 Declaration de police personnalisee utilisee pour les titres ou le corps du texte */
@font-face {
  font-family: 'LazyDog';
  src: url('/assets/fonts/lazy_dog.ttf') format('truetype');
}

/* 🎨 Declaration de police personnalisee utilisee pour les titres ou le corps du texte */
@font-face {
  font-family: 'OctoberCrow';
  src: url('/assets/fonts/October_Crow.ttf') format('truetype');
}


#troll-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #240047;
  color: #dbdbdb;
  font-family: 'LazyDog', sans-serif;
  padding: 10px;
  z-index: 9999;
  display: none;
  border-radius: 8px;
  border: 1px solid #1cce5b;
  animation: fadeInUp 0.4s ease;
}

#troll-menu.visible {
  display: block;
}

#troll-menu input[type="checkbox"] {
  transform: scale(1.3);
  margin-right: 8px;
}

.troll-title {
  margin-bottom: 8px;
  color: #1cce5b;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





.bg-troll-img {
  position: absolute;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.3s ease;
}





#troll-tooltip {
  position: fixed;
  background: #1cce5b;
  color: #240047d0;
  padding: 6px 12px;
  font-family: 'LazyDog', sans-serif;
  border-radius: 6px;
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
