/* ============================================
   Animated "Новинка" Badge Styles
   ============================================ */

/* Контейнер бейджа — позиционируем в верхнем левом углу карточки */
.new-badge {
  position: absolute;
  top: 72px;
  left: 12px;
  z-index: 10;
  pointer-events: none;
  display: none;
}

/* Новинка — первая (без других бейджей) */
.asset-card:not(.has-popular):not(.has-rating) .new-badge {
  display: block;
  top: 12px;
}

/* Новинка — вторая после популярного */
.asset-card.has-popular:not(.has-rating) .new-badge {
  display: block;
  top: 42px;
}

/* Новинка — третья после популярного и рейтинга */
.asset-card.has-popular.has-rating .new-badge {
  display: block;
  top: 72px;
}

/* Лента бейджа */
.new-badge-text {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.7em;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 6px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #6366f1 100%);
  background-size: 200% 200%;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.7), 0 0 25px rgba(255, 142, 83, 0.5), 0 4px 12px rgba(0, 0, 0, 0.5);
  animation: newBadgePulse 2s ease-in-out infinite, newBadgeGradient 3s ease infinite;
  white-space: nowrap;
}

/* Пульсация свечения */
@keyframes newBadgePulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.7), 0 0 25px rgba(139, 92, 246, 0.5), 0 4px 12px rgba(0, 0, 0, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 25px rgba(168, 85, 247, 0.9), 0 0 40px rgba(139, 92, 246, 0.7), 0 6px 16px rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
  }
}

/* Анимация градиента */
@keyframes newBadgeGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Уважение к настройкам пользователя */
@media (prefers-reduced-motion: reduce) {
  .new-badge-text {
    animation: none;
    background-size: 200% 200%;
  }
}

/* Мобильная адаптация */
@media (max-width: 860px) {
  .asset-card:not(.has-popular):not(.has-rating) .new-badge {
    top: 10px;
    left: 8px;
  }

  .asset-card.has-popular:not(.has-rating) .new-badge {
    top: 38px;
    left: 8px;
  }

  .asset-card.has-popular.has-rating .new-badge {
    top: 62px;
    left: 8px;
  }

  .new-badge-text {
    padding: 2px 8px;
    font-size: 0.65em;
  }
}

/* Если на карточке 3 бейджа — уменьшаем */
.asset-card.has-popular.has-rating.has-new .new-badge-text {
  font-size: 0.6em;
  padding: 2px 8px;
}
