body {
  margin: 0;
  background: radial-gradient(ellipse at center, #0f2027, #203a43, #2c5364);
  font-family: 'Press Start 2P', cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  color: white;
}

#overlay {
  text-align: center;
}

.title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff9a3c; /* Şafak turuncusu */
  text-shadow:
    0 0 3px #fff,
    0 0 7px #ff9a3c,
    0 0 12px #ff9a3c;
  letter-spacing: 2px;
}

#gameWrapper {
  position: relative;
  width: 576px;
  height: 768px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
  border: 4px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
}

canvas {
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
}

#startBtn,
#restartBtn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  width: 180px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 6px #fff);
  z-index: 2;
  transition: transform 0.2s ease;
}

#startBtn:hover,
#restartBtn:hover {
  transform: translateX(-50%) scale(1.1);
}

#startBtn {
  top: 50%;
}

#restartBtn {
  top: 60%;
}
