:root {
    --transition-bar-color: #d8f900;
    --transition-bar-width: 5vw;
    --transition-z-index: 999;
}

/* базова деактивація */
.transition-overlay {
    position: fixed;
    inset: 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: var(--transition-z-index);
}

.transition-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.transition-overlay .bar {
    width: var(--transition-bar-width);
    height: 0;
    background: var(--transition-bar-color); /* значення дублюємо ще й у JS */
    will-change: height;
}