#tablet-orientation-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    color: #fff;
    font-size: 2.2rem;
    ont-family: var(--e-global-typography-accent-font-family), Serif;
    font-weight: var(--e-global-typography-accent-font-weight);
    text-align: center;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    transition: opacity 0.3s;
}
#tablet-orientation-overlay.active {
    display: flex;
    opacity: 1;
}
#tablet-orientation-overlay .overlay-content {
    width: 100vw;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} 