:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}

body {
  overflow: hidden;
}

#app {
  position: fixed;
  inset: 0;
}

#hud {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  width: 220px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.4);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

#minimap {
  position: fixed;
  top: 0.8rem;
  right: 0.8rem;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  background: rgba(6, 11, 7, 0.8);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.4);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

#hud h1 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fafc;
}

#hud .hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
  text-align: right;
}

.stats span {
  display: inline-block;
  min-width: 2ch;
  font-weight: 600;
  color: #fcd34d;
}

.control-list {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #cbd5f5;
}

.control-list li {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.control-list li span {
  color: #94a3b8;
}

