  body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* Scroll engelle */
    background-color: #2b1d12;
    /* Canvas yüklenene kadar koyu ahşap rengi */
    /* Varsayılan cursor yerine JS ile oluşturduğumuzu atayacağız */
  }

  #sandingCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }

  #instruction {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(90, 60, 30, 0.8);
    font-size: 2rem;
    font-weight: bold;
    pointer-events: none;
    user-select: none;
    z-index: 10000;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.3);
  }