/* no-js.css — если JS выключен, контент не показываем */
body:not(.js-enabled) .swiper-container,
body:not(.js-enabled) .reader-swiper,
body:not(.js-enabled) .swiper-wrapper,
body:not(.js-enabled) img {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

body:not(.js-enabled)::before {
    content: "Для просмотра контента необходимо включить JavaScript";
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A0C10;
    color: white;
    font-size: 18px;
    text-align: center;
    padding: 20px;
    z-index: 99999;
}