.oca-marquee-section {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background: #0d0917;
  border-top: 1px solid rgba(113, 75, 103, 0.18);
  border-bottom: 1px solid rgba(113, 75, 103, 0.18);
}

.oca-marquee-label {
  margin-bottom: 14px;
  color: rgba(242, 238, 246, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.oca-marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.oca-marquee-wrapper::before,
.oca-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.oca-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0d0917, transparent);
}

.oca-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0d0917, transparent);
}

.oca-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ocaMarqueeScroll 30s linear infinite;
}

.oca-marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  color: rgba(242, 238, 246, 0.58);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.oca-marquee-item:hover {
  color: rgba(196, 154, 189, 0.92);
}

.oca-marquee-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  color: #f7f3f7;
  background: linear-gradient(135deg, rgba(113, 75, 103, 0.8), rgba(1, 126, 132, 0.65));
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
}

.oca-marquee-sep {
  color: rgba(113, 75, 103, 0.55);
  font-size: 10px;
}

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

@media (max-width: 720px) {
  .oca-marquee-wrapper::before,
  .oca-marquee-wrapper::after {
    width: 56px;
  }

  .oca-marquee-item {
    padding: 0 18px;
  }
}
