html {
  scroll-behavior: smooth;
}
    body {
        margin: 0;
        background: black;
        overflow: hidden;
        font-family: 'Rubik', Arial, sans-serif !important;
        font-size: 14px;
        line-height: 1;
        color: #3a3a3a;
        background-color: #fff;
        height: 100%;
    }

    video {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }

    /* стилі лічильника */
    #counter {
        position: fixed;
        bottom: 5px;
        right: 10px;
        color: white;
        background: rgba(0,0,0,0.5);
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 6px;
        font-family: Arial, sans-serif;
    }




/********* 9:00 **********/
#custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none; /* блокує дії */
    cursor: none; /* Сховати курсор */
}

.blur-layer {
    backdrop-filter: blur(10px);
    background-color: rgba(99, 192, 226, 0.64); /* світлий синій напівпрозорий */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.popup-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: auto; /* дозволяє взаємодію лише з картинкою */
    background-image: url(/images/hvylyna_movchania.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 40px;
    color: #fff;
    font-size: 20px;
}
.popup-content img {
    width: auto;
    height: 50px;
    object-fit: contain;
    float: right;
}

#countdown-timer {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e3dca7;
    margin: 10px 0 20px;
    text-align: center;
}

/* Заборона прокрутки */
.no-scroll {
    overflow: hidden;
}

/* Блокування всього позаду */
body.no-interaction * {
    pointer-events: none !important;
    user-select: none !important;
}