/* ===== StatFlash — +N / -N à GAUCHE de la stat ===== */
.stat-flash-bubble {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translate(-100%, -50%) scale(0.85);
  font-size: 18px;
  font-weight: bold;
  font-family: Georgia, serif;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 40;
  opacity: 0;
  white-space: nowrap;
  text-shadow: 0 1px 3px #000;
  background: rgba(16, 14, 10, 0.88);
  border: 1px solid rgba(200, 180, 120, 0.35);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.stat-flash-bubble.stat-flash-show {
  opacity: 1;
  transform: translate(-100%, -50%) scale(1);
}

.stat-flash-bubble.stat-flash-hide {
  opacity: 0;
  transform: translate(-100%, -70%) scale(0.9);
}

.stat-flash-up {
  color: #2ecc71;
}

.stat-flash-down {
  color: #e74c3c;
}

.stat-flash-sep {
  color: #ccc;
  margin: 0 2px;
}

.fullart-stat .stat-flash-bubble {
  font-size: 24px;
  left: -6px;
}

.battle-char-card .stat {
  overflow: visible;
}

.fullart-stat {
  position: relative;
  overflow: visible;
}