.velocity-marquee {
  position: relative;
  overflow: hidden;
  display: flex;
  user-select: none;
  gap: 0;
  padding: 1rem 0;
  width: 100%;
  will-change: transform;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  gap: 1.5rem; /* Space between tags */
  flex-shrink: 0;
  padding-right: 1.5rem; /* Match gap for seamless loop */
  will-change: transform;
}


.footer-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.footer-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Row 2 direction/speed handled by JS */
