body {
  margin:0;
  font-family:Georgia, serif;
  background:linear-gradient(to bottom,#fff7fa,#fdeef4);
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:100vh;
  color:#7a4b5d;
}

#game-wrapper {
  text-align:center;
  padding:20px;
}

h1 {
  font-size:42px;
  margin-bottom:10px;
}

#hud {
  display:flex;
  justify-content:space-around;
  font-size:22px;
  margin-bottom:15px;
}

#game {
  display:grid;
  gap:2px;
  justify-content:center;
  background:rgba(255,255,255,0.7);
  padding:12px;
  border-radius:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.cell {
  width:34px;
  height:34px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:18px;
  border-radius:10px;
}

.wall {
  background:#e9c8d6;
}

.path {
  background:#fff;
}

#instructions {
  margin-top:15px;
  font-size:16px;
}

button {
  margin-top:10px;
  padding:10px 18px;
  border:none;
  border-radius:20px;
  background:#d9a8ba;
  color:white;
  font-size:16px;
  cursor:pointer;
}

#mobile-controls {
  margin-top:15px;
}

#mobile-controls div {
  display:flex;
  justify-content:center;
  gap:10px;
}

#mobile-controls button {
  width:60px;
  height:60px;
  border-radius:50%;
  font-size:24px;
}

.hidden {
  display:none;
}

#message-overlay {
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  background:#ffffffdd;
  padding:15px 30px;
  border-radius:20px;
  font-size:22px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  z-index:10;
}

@media(max-width:768px){
  .cell {
    width:24px;
    height:24px;
    font-size:14px;
  }

  h1 {
    font-size:28px;
  }
}
