.mc-5011b6ee-chart {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mc-5011b6ee-box {
  width: 100%;
  border: 2px solid;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 2px 0 rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  animation: mcFadeUp 0.8s ease both;
}

.mc-5011b6ee-box:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  cursor: pointer;
}

.mc-5011b6ee-arrow {
  line-height: 1;
  user-select: none;
  animation: mcMoveArrow 1.2s ease-in-out infinite;
}

@keyframes mcFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mcMoveArrow {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(6px); opacity: 1; }
}
