@keyframes marquee-forward {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.marquee-track-forward {
  animation: marquee-forward 80s linear infinite;
}
.marquee-track-reverse {
  animation: marquee-reverse 80s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.integration-logo {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.8);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid transparent;
  box-sizing: border-box;
}
.integration-logo:hover {
  transform: scale(1.1);
  border-color: #d0d0d0;
}
.integration-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.integration-logo::before {
  content: attr(data-name);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 10px;
  font-weight: bold;
  color: #666;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.integration-logo img[src*="placeholder"] {
  display: none;
}
.marquee-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.marquee-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}