/* === Scroll hint visibility fix (Tilda) === */

.uc-scrollhint{
  --sh-opacity: 0.6; /* ← регулируй прозрачность тут (0.4–0.8 обычно идеально) */
}

/* снимаем затемнение родителя */
.uc-scrollhint,
.uc-scrollhint *{
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
}

/* если это картинка (рука PNG/WebP) — делаем белой */
.uc-scrollhint img{
  filter: brightness(0) invert(1) !important;
  opacity: var(--sh-opacity) !important;
}

/* если вдруг SVG */
.uc-scrollhint svg,
.uc-scrollhint svg *{
  fill: #ffffff !important;
  stroke: #ffffff !important;
  opacity: var(--sh-opacity) !important;
}
