html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: black;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* MENU SCREEN */
#menu-screen {
   position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Füllfarbe links/rechts/oben/unten */
  background-color: #000; /* oder eine Farbe, die zum Bild passt */

  /* dein Menübild */
  background-image: url("../assets/images/background.png");
  background-repeat: no-repeat;    /* <- verhindert das “Kacheln” */
  background-size: contain;        /* <- Bild vollständig sichtbar */
  background-position: center;     /* <- zentriert */
}

#menu-content {
  text-align: center;
  color: white;
  padding: 18px 28px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.55);
}

.menu-buttons {
  margin-top: 16px;
}

button {
  font-size: 18px;
  padding: 10px 18px;
  cursor: pointer;
}

.hint {
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.9;
}

/* AUDIO TOGGLES */
#audio-toggles {
  position: fixed;     
  top: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  z-index: 1000;        /* über Menü & Canvas */
  pointer-events: auto;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  padding: 0;
}

.icon-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}



/* GAME CANVAS */
#game-canvas {
  display: none;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: black;
  /* Breite/Höhe werden in JS gesetzt (resizeCanvasDisplay) */
}
