.partners-section {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.partners-section h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: var(--muted-2);
  letter-spacing: 0.05em;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scroll 25s linear infinite;
  width: fit-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  border-color: var(--blue-2);
  background: rgba(88, 166, 255, 0.05);
  transform: scale(1.02);
}

.partner-logo img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0.7) grayscale(0.3);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: brightness(1) grayscale(0);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .partner-logo {
    width: 120px;
    height: 60px;
  }
}