.bee-game-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 32px;
  background: #fdf6e3;
  border-radius: 20px;
  box-shadow: 0 4px 16px #f5c94e3d;
}
.bee-level h2 {
  color: #ffbb00;
}
.bee-magic {
  font-style: italic;
  color: #9b59b6;
}
#bee-game-controls {
  text-align: center;
  margin-top: 24px;
}
#bee-game-controls button {
  font-size: 1.2em;
  padding: 10px 24px;
  margin: 0 6px;
  background: #ffeb8e;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 6px #eee;
}
#bee-game-controls button:hover {
  background: #ffe155;
}
.bee-level-end {
  text-align: center;
}

/* MEMORY */
.memory-game {
  text-align: center;
  padding: 24px 0;
}
.memory-cards {
  display: grid;
  grid-template-columns: repeat(4, 90px);
  grid-template-rows: repeat(2, 110px);
  gap: 20px;
  justify-content: center;
}
.memory-card {
  background: #fffbe8;
  border: 3px solid #ffd63b;
  border-radius: 15px;
  width: 90px; height: 110px;
  box-shadow: 0 2px 12px #ffeb8e46;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.1em; /* Etwas kleiner, damit Emoji/Bild nicht dominiert */
  cursor: pointer;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
  position: relative;
  user-select: none;
  overflow: hidden;
}
.memory-card.open, .memory-card.found {
  background: #ffe570;
  box-shadow: 0 6px 20px #fff87a80;
  border-color: #96db49;
}
.memory-card.found {
  opacity: 0.7;
  pointer-events: none;
}
.card-label {
  font-size: 0.92em;        /* << kleiner als vorher */
  color: #664400;
  margin-top: 4px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  max-width: 80px;          /* damit längere Namen nicht umbrechen */
  text-align: center;
}
.memory-card .card-img {
  font-size: 1.6em;         /* Emoji/Bild etwas kleiner */
  margin-bottom: 2px;
  line-height: 1;
}
#memory-msg {
  margin-top: 18px;
  font-size: 1.15em;
}
#memory-continue {
  margin-top: 18px;
  font-size: 1.1em;
  background: #ffe155;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
}

#bee-music-controls {
  text-align: right;
  margin-bottom: 6px;
}
#bee-mute-btn {
  background: #ffe155;
  border: none;
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px #ffe15555;
}
#bee-mute-btn:hover {
  background: #ffeb8e;
}

.runner-grid {
  display: grid;
  grid-template-columns: repeat(5, 50px);
  grid-template-rows: repeat(7, 50px);
  gap: 5px;
  justify-content: center;
  margin: 18px auto;

  /* --- Wiesen-Optik neu: --- */
  background: #e9fbe2;           /* Helles freundliches Grün */
  border-radius: 18px;
  padding: 16px 0 14px 0;
  border: 1.5px solid #b9e6a0;   /* Optional: dezenter grüner Rand */
  box-shadow: 0 2px 12px #c1e78b40;
}

.chamber-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}
.chamber-symbol {
  display:inline-flex;
  align-items: center;
  justify-content: center;
  font-size:2.2em;
  margin:0 5px;
  background:#fffbe9;
  border-radius:10px;
  border:2px solid #ffd34e;
  min-width:52px; min-height:52px;
  text-align:center;
  cursor:pointer;
  transition:.1s;
  box-sizing: border-box;
}
.chamber-goal {
  background: #eee;
  border:2px dashed #aaa;
  cursor:default;
}
.chamber-btn:hover {
  background: #ffe68b;
}
