.stat-logo-bg {
    position: relative;
}

/* لوگو (لایه تصویر) */
.stat-logo-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--stat-logo);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    opacity: 0.2;
    pointer-events: none;
}

.stat-logo-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
    rgba(255,255,255,0.90) 15%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.00) 75%
    );
    pointer-events: none;
}

html.dark .stat-logo-bg::before {
    opacity: 0.44;
    filter: invert(1) saturate(0) brightness(1.2);
}

html.dark .stat-logo-bg::after {
    background: linear-gradient(to right,
    rgba(17,24,39,0.92) 15%,
    rgba(17,24,39,0.55) 45%,
    rgba(17,24,39,0.00) 75%
    );
}
