

.marquee-section {
  padding: var(--section-padding);
  
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 2; 
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  margin: 15px 0;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite; 
}

.marquee-row:nth-child(even) .marquee-content {
  animation-direction: reverse;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  font-size: 8vw;
  font-weight: 900;
  padding: 0 20px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
  color: #fff; 
  font-family: "Inter", sans-serif; 
}

.marquee-item:hover {
  opacity: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.marquee-item.stroke {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

@media (min-width: 768px) {
  .marquee-section {
    padding: var(--section-padding);
  }

  .marquee-row {
    margin: -15px 0;
  }

  .marquee-item {
    font-size: 3vw;
    padding: 0 40px;
  }

  .marquee-item.stroke {
    -webkit-text-stroke: 2px #fff;
  }
}

@media (min-width: 1024px) {
  .marquee-section {
    padding: var(--section-padding);
  }

  .marquee-item {
    padding: 0 50px;
  }
}
