.ouh-box {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 14px;
  padding: 12px 18px;
  color: #fff;
  font-size: 14px;
  min-width: 220px;
  display: inline-block;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ouh-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ouh-pulse {
  width: 10px;
  height: 10px;
  background: #00ff88;
  border-radius: 50%;
  animation: ouhPulse 1.5s infinite;
  box-shadow: 0 0 4px #00ff88;
}

@keyframes ouhPulse {
  0% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
  100% { opacity: 0.5; transform: scale(1); }
}

.ouh-growth {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #00ff88;
  font-size: 12px;
}

.ouh-growth svg {
  width: 14px;
  height: 14px;
}