/* shared-components-body-default style 1 */
body.bg-with-multiply {
                    background-blend-mode: multiply;
            }

/* shared-components-body-default style 2 */
#game-nav-section.nav-with-multiply {
                position: relative;
                isolation: isolate; /* isolates blending */
                z-index: 0;
            }

                /* Background multiply layer */
                #game-nav-section.nav-with-multiply::before {
                    content: '';
                    position: absolute;
                    inset: 0; /* shorthand for top:0;left:0;right:0;bottom:0 */
                    mix-blend-mode: multiply;
                    pointer-events: none;
                    z-index: -1; /* behind content */
                }

                /* Content stays fully opaque and unaffected */
                #game-nav-section.nav-with-multiply > * {
                    position: relative;
                    z-index: 1;
                }

/* shared-components-body-default style 3 */
body.bg-with-multiply {
            background-blend-mode: multiply;
        }

/* shared-components-body-default razor-escaped style 1 */
@media screen and (max-width: 768px) {
        .livechat-container {
            display: none;
        }
    }
