.uc-custom-bg {
    background-image: url('http://example.offerthename.com/background_2.jpg'); /* Укажите путь к вашему изображению */
    background-size: cover; /* Масштабируем фон */
    background-position: center; /* Центрируем фон */
    background-repeat: no-repeat; /* Отключаем повтор */
}
body {
    cursor: url('https://example.offerthename.com/cursor_3.png'), auto;
/* Предзагрузка курсора на уровне всей страницы */
body {
    cursor: url('https://example.offerthename.com/hand_1.png'), auto; /* Предзагрузка картинки */
}

/* Замена курсора на кастомную "руку" при наведении */
a, button {
    cursor: url('https://example.offerthename.com/hand_1.png'), pointer;
}

a:hover, button:hover {
    cursor: url('https://example.offerthename.com/hand_1.png'), pointer;
}
/* Скрытый элемент для предзагрузки */
body::before {
    content: '';
    display: none;
    cursor: url('https://example.offerthename.com/hand_1.png'), pointer;
}
