#pagenot {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    z-index: 2147483647 !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background: #f0f0f0 !important;
    background-image: none !important;
    font-family: Arial, sans-serif !important;
    color: #333 !important;
    text-align: center !important;
}

#pagenot h1 {
    font-size: 48px !important;
    color: #333 !important;
    margin: 0 0 20px 0 !important;
    font-weight: bold !important;
}

#pagenot hr {
    width: 300px !important;
    border: none !important;
    border-top: 2px solid #ccc !important;
    margin: 20px auto !important;
}

#pagenot .server-info {
    font-family: 'Courier New', monospace !important;
    font-size: 18px !important;
    color: #666 !important;
    margin-top: 20px !important;
}

@media (min-width: 769px) {
    html, body {
        overflow: hidden !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow: auto !important;
        height: auto !important;
        margin: 0;
        padding: 0;
    }
    
    #pagenot {
        display: none !important;
    }
    
    #mobile-frame {
        display: block !important;
        position: fixed;
        inset: 0;
        z-index: 2147483647;
        pointer-events: none;
    }
    
    #mobile-frame iframe {
        width: 100%;
        height: 100%;
        border: none;
        pointer-events: none;
    }
}

#mobile-frame {
    display: none;
}