#live2d-widget,
#live2dcanvas {
  z-index: 998 !important;
}

.live2d-bubble {
  position: fixed;
  right: 200px;
  bottom: 120px;
  z-index: 999;
  max-width: 220px;
  padding: 8px 12px;
  border: 1px solid rgba(120, 139, 160, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  color: #25313f;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.live2d-bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  #live2d-widget,
  #live2dcanvas,
  .live2d-bubble {
    display: none !important;
  }
}
