
.mascotte-container {
  position: fixed;
  bottom: 0px;
  left: 20px;
  width: 140px;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 999;
}

.mascotte-container:hover {
  transform: rotate(-5deg) scale(1.05);
  height: auto;
  transition: opacity 0.5s ease;
}

.blink {
  animation: blinkAnim 0.3s ease-in-out;
}

@keyframes blinkAnim {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.speech-bubble {
  position: absolute;
  bottom: 120%;
  left: 0;
  background: #fffbe6;
  color: #1E2026;
  border: 3px solid #1E2026;
  border-radius: 20px;
  padding: 15px 20px;
  font-family: 'arista';
  font-size: 1rem;
  line-height: 1.4;
  width: 240px;
  box-shadow: 6px 6px 0 #1E2026;
  display: none;
  animation: bounceIn 0.4s ease;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30px;
  border-width: 10px;
  border-style: solid;
  border-color: #fffbe6 transparent transparent transparent;
  transform: rotate(10deg);
}

.bubble-highlight {
  background-color: #ffe066;
  padding: 0 4px;
  border-radius: 6px;
  font-weight: bold;
  color: #d35400;
}

@keyframes bounceIn {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

#mascotteImage {
  transition: opacity 0.3s ease;
}