/* ================================
   SPEL-UI FÖR MOBILSPEL.NU
   ================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #222;
  touch-action: none;
}

#game-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#4ec0ca, #ffffff);
}

canvas#game {
  background: linear-gradient(#4ec0ca, #d2f8ff);
  display: block;
}

/* Översta texten i spelet */
#overlay {
  position: fixed;
  top: 0;   /* mobil */
  left: 0;
  right: 0;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
  pointer-events: none;
  z-index: 5;
}

/* Menyns placering i spelet (desktop) */
#externalMenu {
  top: 12px;
  left: 12px;
}

/* Desktop: flytta overlay nedåt så texten hamnar bakom menyn */
@media (min-width: 900px) {
  #overlay {
    top: 40px;
  }
}
