/* Estilos injetados em runtime pelo site original (marquee, scrollbars, glow) */
@keyframes smoothGlow { 0%, 100% { opacity: 1; text-shadow: 0 0 4px rgba(248, 113, 113, 0.6); } 50% { opacity: 0.7; text-shadow: 0 0 8px rgba(248, 113, 113, 0.9); } }

.rfm-marquee-container {
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  width: var(--width);
  transform: var(--transform);
}
.rfm-marquee-container:hover div {
  animation-play-state: var(--pause-on-hover);
}
.rfm-marquee-container:active div {
  animation-play-state: var(--pause-on-click);
}

.rfm-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.rfm-overlay::before, .rfm-overlay::after {
  background: linear-gradient(to right, var(--gradient-color), rgba(255, 255, 255, 0));
  content: "";
  height: 100%;
  position: absolute;
  width: var(--gradient-width);
  z-index: 2;
  pointer-events: none;
  touch-action: none;
}
.rfm-overlay::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.rfm-overlay::before {
  left: 0;
  top: 0;
}

.rfm-marquee {
  flex: 0 0 auto;
  min-width: var(--min-width);
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
  animation-play-state: var(--play);
  animation-delay: var(--delay);
  animation-direction: var(--direction);
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.rfm-initial-child-container {
  flex: 0 0 auto;
  display: flex;
  min-width: auto;
  flex-direction: row;
  align-items: center;
}

.rfm-child {
  transform: var(--transform);
}

.ultra-thin-scrollbar{scrollbar-width:thin;scrollbar-color:rgba(203,213,225,.5)transparent}.ultra-thin-scrollbar::-webkit-scrollbar{width:3px}.ultra-thin-scrollbar::-webkit-scrollbar-track{background:transparent}.ultra-thin-scrollbar::-webkit-scrollbar-thumb{background:rgba(203,213,225,.5);border-radius:2px;transition:background.2s ease}.ultra-thin-scrollbar::-webkit-scrollbar-thumb:hover{background:rgba(148,163,184,.7)}.videos-scrollbar::-webkit-scrollbar{height:0px;width:0px;background:transparent}.videos-scrollbar{scrollbar-width:none;-ms-overflow-style:none}

.matches-scrollbar.jsx-e2d8d9184b9687a9::-webkit-scrollbar{height:0px;width:0px;background:transparent}.matches-scrollbar.jsx-e2d8d9184b9687a9{scrollbar-width:none;-ms-overflow-style:none}
