.snake-shell {
  border: 1px solid #dce5f3;
  border-radius: 14px;
  background: #ffffff;
  padding: 14px;
}

.snake-hud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.snake-hud p {
  margin: 0;
  border: 1px solid #dce5f3;
  border-radius: 10px;
  background: #f9fbff;
  padding: 8px 6px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
}

#snake-canvas {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 auto;
  border: 2px solid #19273f;
  border-radius: 10px;
  background: #0f172a;
}

.status {
  margin-top: 10px;
  text-align: center;
  color: #334155;
  font-weight: 700;
}

@media (max-width: 760px) {
  .snake-hud {
    grid-template-columns: 1fr;
  }
}
