canvas{
    box-shadow: 0 0 5px black;
}
/* Базові стилі */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(180deg, #79cfff 0%, #b3eaff 60%, #e0f7ff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

/* Верхня панель зі скором */
.wrapper {
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  color: #0b3a61;
  font-weight: bold;
}

#score, #best_score {
  font-size: 18px;
}


canvas {
  display: block;
  width: 100%;
  height: auto;
}

/* Кнопка керування */
.control {
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  margin: 12px 0 24px;
}

.btn {
  background: #0b3a61;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

/* Оверлей повідомлень (паузи/старту/кінця гри) */
.overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  background: rgba(11, 58, 97, 0.9);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.canvas-container {
  position: relative;
  width: 100%;
  max-width: 480px;
}