[data-theme="light"] {
    --background-overlay-color: rgba(245, 247, 250, 0.85);
}

[data-theme="dark"] {
    --background-overlay-color: rgba(30, 30, 30, 0.85);
}

.moving-image {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100vh;
    z-index: 0;
    display: block;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1;
}

.background-overlay {
    background: var(--background-overlay-color);
}

body {
    height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
    -webkit-overflow-scrolling: none;
}

html, body {
    overflow: hidden;
    -webkit-overflow-scrolling: none;
}

@media screen and (max-width: 480px) {
    html, body {
        position: fixed;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        touch-action: none;
    }
    
    * {
        touch-action: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .news-content-wrapper {
        touch-action: pan-x;
    }
}