// Инициализация SDK Яндекс Игр
YaGames.init().then(ysdk => {
console.log('Yandex SDK Initialized');
ysdk.features.LoadingAPI?.ready();
});
function startScoreCounter() {
setInterval(() => {
if (!paused && !gameOver) {
score++;
scoreDisplay.textContent = score;
checkScoreMilestones();
}
}, 1000);
}