/* css/hud.css — Top bar with clock, action points, mute */

.hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 16px;
  flex-shrink: 0;
}

.hud-clock {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.hud-points {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.hud-coin {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hud-mute {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.hud-mute:hover {
  opacity: 1;
}
