body {
  font-family: 'Georgia', serif;
  background: url("images/background.jpg.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 20px;
  user-select: none;
}

h1 {
  text-shadow: 2px 2px 5px #000;
}

#counter {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.wand {
  width: 150px;
  height: 150px;
  margin: 20px auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.wand:active {
  transform: scale(1.1) rotate(-5deg);
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #6a5acd;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

button:hover {
  background-color: #7b68ee;
}

/* Анимация кликов */
.gold-popup {
  position: absolute;
  color: gold;
  font-weight: bold;
  pointer-events: none;
  animation: float-up 1s ease-out forwards;
}

@keyframes float-up {
  to { transform: translateY(-50px); opacity: 0; }
}

/* Стили для улучшений */
.upgrades {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
