    .page-content {
        display: block !important;
    }

.portrait-lock {
    display: none;
}

/* Real phones */
@media only screen and (max-device-width: 1000px) and (min-aspect-ratio: 1/1) {
    .portrait-lock {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 99999999;
        background: #000;
        color: #fff;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 24px;
        font: 600 1.4rem system-ui, sans-serif;
    }

    .page-content {
        display: none !important;
    }
}

/* Chrome mobile emulation only */
@media only screen and (max-width: 1000px) and (min-aspect-ratio: 1/1) and (pointer: coarse) and (hover: none) {
    .portrait-lock {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 99999999;
        background: #000;
        color: #fff;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 24px;
        font: 600 1.4rem system-ui, sans-serif;
    }

    .page-content {
        display: none !important;
    }
}
