/* Snake Game için özel stil düzenlemeleri */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

h1 {
  font-size: 2em;
  margin-top: 10px;
}

/* Oyun alanı için stil */
.snake-game-body {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(90vh - 100px); /* header ve butonun yüksekliğini dikkate alır */
  overflow: hidden;
  
}

.game-container {
  position: relative;
  text-align: center;
}

canvas {
  border: 2px solid #fff;
  background-color: #000;
}

.instructions {
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}

.score {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color: #fff;
  display: none;
}

.game-over {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  display: none;
}
