/* Стили для системы комбо игры "Планетки" */

/* Стиль для большого текста комбо */
.combo-indicator {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  width: 90%;
}

.combo-active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Сообщение в стиле AMAZING */
.combo-message {
  font-size: 36px;
  font-weight: 900;
  /* Вместо color и text-shadow, используем SVG filter */
  filter: drop-shadow(0 0 0px white) drop-shadow(0 0 10px rgba(29, 144, 255, 0.7));
  color: #1E90FF;
  margin-bottom: 5px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: scale(1);
  animation: combo-message-pulse 0.5s infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  
  filter: drop-shadow(0px 0px 2px white) 
          drop-shadow(0px 0px 2px white) 
          drop-shadow(0px 0px 2px white);
  text-shadow: 
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    2px 2px 0 #fff;
}

/* Скрываем прогресс-бар */
.combo-progress-bar {
  display: none;
}

/* Анимация пульсации для текста сообщения */
@keyframes combo-message-pulse {
  0% {transform: scale(1);}
  100% {transform: scale(1.05);}
}

/* Анимация пульсации для счета */
@keyframes score-pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Класс для раскраски счета во время комбо */
.score-combo-active {
  animation: score-pulse 0.5s infinite alternate;
  border-color: currentColor !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

