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

body {
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: #fce4ec;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 3px solid #ff69b4;
}

#gameCanvas {
  border: 3px solid #ff69b4;
  background-color: rgba(255, 255, 255, 0.9);
}

.game-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.score,
.level {
  font-size: 1.2em;
  font-weight: bold;
}

button {
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

#pauseBtn {
  background-color: #f44336;
}

#pauseBtn:hover {
  background-color: #da190b;
}

.next-piece {
  margin-top: 20px;
}

#nextPiece {
  border: 1px solid #333;
  background-color: #fff;
}

.block-mushroom {
  background-color: #ff6b6b;
  border: 2px solid #ff4949;
  border-radius: 4px;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.5);
}

.block-big-mushroom {
  background-color: #4ecdc4;
  border: 2px solid #45b7af;
  border-radius: 4px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.6);
}

.block-zombie {
  background-color: #96ceb4;
  border: 2px solid #7ab398;
  border-radius: 4px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
