/* shared.css — shared rules used by both desktop and mobile stylesheets */

/* Force mobile flow visibility even in landscape widths */
body.mobile-flow #mobile-flow {
    display: block !important;
}

/* Hide desktop stream surfaces when mobile flow is active */
body.mobile-flow .stream-container,
body.mobile-flow .stream-container-desktop,
body.mobile-flow .stream-container-mobile,
body.mobile-flow #stream-desktop,
body.mobile-flow #stream-mobile,
body.mobile-flow #stream,
body.mobile-flow #stream-inner,
body.mobile-flow .photo-gallery,
body.mobile-flow .fog-overlay,
body.mobile-flow #text-content-container,
body.mobile-flow #stream-desktop *,
body.mobile-flow .stream-container-desktop {
    display: none !important;
    pointer-events: none !important;
}

.private-projects-indicator {
    position: fixed;
    bottom: 0;
    right: 24px;
    z-index: 12000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 12px;
    background: #b51f2d;
    color: #ffffff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
}

.private-projects-indicator-lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex: 0 0 auto;
}

.private-projects-indicator-text {
    white-space: nowrap;
}

@media (max-width: 720px) {
    .private-projects-indicator {
        right: 12px;
        bottom: 0;
        padding: 9px 12px 11px;
        font-size: 10px;
        gap: 8px;
    }

    .private-projects-indicator-text {
        white-space: normal;
        max-width: 160px;
        line-height: 1.2;
    }
}
