.energy-labels-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  z-index: 99;
  pointer-events: none;
}

/* Flechas estilizadas */
.label-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  color: #fff;
  font-size: 13px;
  padding: 4px 14px 4px 28px;
  min-width: 70px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.label-item i {
  margin-right: 6px;
}

/* Gradientes */
.label-item.fuel {
  background: linear-gradient(90deg, #e67e22, #f39c12);
}
.label-item.grip {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
}
.label-item.noise {
  background: linear-gradient(90deg, #f1c40f, #f7dc6f);
  color: #222;
}

/* Brilho sutil */
.label-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  mix-blend-mode: overlay;
}

@media (max-width: 768px) {
  .energy-labels-overlay {
    bottom: 8px;
    right: 8px;
    gap: 4px;
  }
  .label-item {
    font-size: 12px;
    padding: 3px 10px 3px 24px;
  }
}
