/* style.css */
body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
  }
  
  h1 {
    margin-top: 20px;
    color: #ff9800;
  }
  
  #game-info {
    margin: 10px 0;
    color: #ff9800;
    font-size: 18px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  #maze {
    margin: 20px auto;
    position: relative;
    width: 400px;
    height: 400px;
    border: 5px solid #ff9800;
    background-color: #1e1e1e;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
  }
  
  #player {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #03a9f4;
    top: 20px;
    left: 20px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(3, 169, 244, 0.8);
    transition: top 0.2s, left 0.2s;
  }
  
  #goal {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #4caf50;
    top: 350px;
    left: 350px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
  }
  
  .wall {
    position: absolute;
    background-color: #ff5722;
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
  }
  
  #status {
    margin-top: 20px;
    font-size: 18px;
    color: #ff9800;
  }
  