/* ====================== СКРОЛЛБАР ====================== */
@media screen and (min-width: 961px) {
    ::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background-color: #333333;
    }
    ::-webkit-scrollbar-track {
        background-color: #151515;
    }
    ::-webkit-scrollbar {
        width: 7px;
        height: 7px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background-color: #555555; /* ← здесь можно менять цвет при наведении */
    }
}



/* ====================== ШРИФТ ДЛЯ ЦИФР ====================== */
@font-face {
    font-family: 'Nor';
    font-weight: 700;
    font-style: normal;
    src: url('https://xn----7sbbf2b7bj7b.tilda.ws/files/normalidad-extended-bold.woff') format('woff');
    font-display: swap;
}

/* Основной текст (Tilda Sans) */
.js-promo-text {
    font-family: "Tilda Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    font-size: 20px;           /* ← Меняй размер слов «часов минут секунд» здесь */
    line-height: 1.4;
    color: #222222;
    text-align: center;
}

/* Цифры (Nor) */
.timer-numbers {
    font-family: 'Nor', 'Normalidad Extended Bold', sans-serif;
    font-weight: 700;
    font-size: 24px;           /* ← Меняй размер цифр здесь (абсолютный px) */
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

/* Истёкший таймер */
.js-promo-text.expired .timer-numbers {
    color: #e74c3c;
}