/* 确保绝对全屏 */
#pagenot {
    /* 使用inset简写 */
    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;
}

/* 阻止页面滚动 */
html, body {
    overflow: hidden !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}