/* 3. trolejbuss: Sastrēgumstunda - Globālie CSS stili */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #0f172a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1e293b;
}

#speles-konteiners {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

#kanva {
  display: block;
  background-color: #e0f2fe;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.5), 0 8px 10px -6px rgb(0 0 0 / 0.5);
}

/* UI Pārklājumi un elementi, kas tiek zīmēti caur DOM, ja nepieciešams, taču Canvas 2D renderē visu spēles interjeru un HUD */
.ekrana-poga {
  min-width: 48px;
  min-height: 48px;
  cursor: pointer;
}
