/* 确保canvas能够覆盖整个视口，包括刘海屏和底部安全区域 */
#universe {
    display: block;
    position: fixed;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-color: transparent;
    transform: translateZ(0);
    overflow: visible;
    /* 确保覆盖安全区域 */
    position: fixed;
    inset: 0;
}

/* 确保body背景色与星空背景协调 */
body {
    background-color: #0f1117 !important;
    margin: 0;
 
    overflow-x: hidden;
}

/* 确保没有其他背景渐变影响 */
body::before {
    display: none !important;
}