.marquee-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #222;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;

  padding: 5px 0;
  z-index: 999;
}

.marquee {
  display: inline-block;
  will-change: transform;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(110%);
  }
  to {
    transform: translateX(-110%);
  }
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee a {
  margin-right: 50px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.marquee a:hover {
  color: #00bfff;
}

.ycfixed-right {
  position: fixed;
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
  /* z-index: 1040; */
}
.ycfixed-image {
  margin-bottom: 20px;
  position: relative;
}
.ycfixed-image img {
  border: 2px solid #972fd7;
  border-radius: 15px;
}
.ycfixedi {
  width: 5rem;
  height: 5rem;
}
.ycfixedcloses {
  position: absolute;
  top: -10px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  display: block;
  cursor: pointer;
}

.lazy-load {
  display: none;
}

.watched {
  position: absolute;
  top: 0;
  color: #fff;
  font-weight: 600;
  border-radius: 2px;
  background-color: #972fd7;
  padding: 5px 10px;
  line-height: 1;
  font-size: 11px;
}

.scrollspy-active {
  color: var(--primary-content) !important;
  background-color: var(--primary) !important;
}

.enhanced-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  background-color: var(--fallback-s, oklch(var(--s) / 0.2));
}
.enhanced-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: var(--fallback-s, oklch(var(--s) / 0.5));
}
.enhanced-scrollbar::-webkit-scrollbar-track {
  --tw-bg-opacity: 1;
  background-color: var(--fallback-b1, oklch(var(--b1) / var(--tw-bg-opacity)));
}
.enhanced-scrollbar::-webkit-scrollbar {
  width: 0.5rem;
}
