canvas {
  box-shadow: 0 0 5px greenyellow;
  max-width: 350px;
  width: 100%;
  height: 150px;
}
/* Загальні стилі */
html,
body {
  margin: 0;
  padding: 0;

  overflow: hidden; /* щоб не було скролу */
  background: #0f172a;
  font-family: Arial, sans-serif;
  color: #fff;
  text-align: center;
}

/* SCORE зверху */
.wrapper {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
}

#score,
#best_score {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: bold;
}

/* Канвас на весь екран */
.canvas {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#canvas {
  width: 100vw;
  height: 100vh;
  display: block;
  background: #8ad6ff;
}

/* Кнопка Pause */
.btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: #ffd166;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  z-index: 10;
}

.btn:active {
  transform: translateX(-50%) scale(0.95);
}
