/* Uros Visual Effects 1.2.0 */
.uros-effects-root {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none !important;
    z-index: 8500;
    contain: strict;
}

.uros-effects-layer {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
    opacity: 0.9;
}

.uros-effects-root[hidden],
.uros-effects-root.is-disabled {
    display: none !important;
}

.uros-effects-toggle {
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 8600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid rgba(230, 193, 92, 0.46);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.9);
    color: #e6c15c;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    font: 600 11px/1.1 Arial, sans-serif;
    letter-spacing: 0.02em;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.uros-effects-toggle:hover,
.uros-effects-toggle:focus-visible {
    border-color: #e6c15c;
    background: rgba(20, 20, 20, 0.97);
    outline: none;
}

.uros-effects-toggle[aria-pressed="false"] {
    color: #b5b5b5;
    border-color: rgba(181, 181, 181, 0.34);
}

.uros-effects-toggle__icon {
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 768px) {
    .uros-effects-toggle {
        left: 9px;
        bottom: 9px;
        width: 34px;
        min-width: 34px;
        height: 34px;
        min-height: 34px;
        padding: 0;
    }

    .uros-effects-toggle__label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .uros-effects-layer {
        opacity: 0.72;
    }
}
