/* Pixelowa czcionka w stylu klasycznych gier Pokemon */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
  --hud-font: 'Press Start 2P', monospace;
  --hud-border-dark: #2d2d2d;
  --hud-border-light: #f4d35e;
  --hud-bg: #1a1a2e;
  --hud-text: #ffffff;
}

/* Wszystkie piksel-arty (ikony, tekstury w HUD) renderowane bez rozmycia */
.pixel-art {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

/* Dolny dialog box NPC — pełna szerokość, zadokowany na dole ekranu */
.dialog-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 120px;
  background: var(--hud-bg);
  border-top: 4px solid var(--hud-border-dark);
  box-shadow: inset 0 0 0 2px var(--hud-border-light);
  display: flex;
  align-items: center;
  padding: 16px 24px;
  box-sizing: border-box;
  font-family: var(--hud-font);
  color: var(--hud-text);
  z-index: 100;
}

.dialog-box__portrait {
  width: 64px;
  height: 64px;
  margin-right: 16px;
  border: 3px solid var(--hud-border-light);
  flex-shrink: 0;
}

.dialog-box__text {
  font-size: 14px;
  line-height: 1.6;
}

/* Prompt interakcji ("E - Prof. Oak", "click or SPACE") */
.interaction-prompt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hud-bg);
  border: 3px solid var(--hud-border-light);
  padding: 6px 12px;
  font-family: var(--hud-font);
  font-size: 11px;
  color: var(--hud-text);
}

.interaction-prompt__icon {
  width: 16px;
  height: 16px;
}

/* Etykiety stref na mapie ("PALLET TOWN - Safe") */
.zone-label {
  font-family: var(--hud-font);
  font-size: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--hud-border-light);
  padding: 6px 14px;
  color: var(--hud-text);
}
