.pack-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.pack {
  background: #111827;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  color: white;
}

.pack-cards {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.pack-card {
  width: 120px;
  height: 170px;
  background: #1f2933;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.pack-card.show {
  opacity: 1;
  transform: translateY(0);
}

.pack-cards {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
}

.pack-card-wrapper {
  position: relative;
}

.pack-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  padding: 4px 6px;
  font-size: 11px;
  font-weight: bold;
  border-radius: 6px;
  color: #000;
}

.pack-badge.new {
  background: #22c55e;
}

.pack-badge.repeat {
  background: #facc15;
}


