/* 星空加载特效样式 */

.starry-loading-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: black;
    transition: opacity 1s ease;
}

/* 加载完成后的淡出效果 */
.starry-loading-canvas.fade-out {
    opacity: 0;
}

/* 确保页面内容在加载时不可见 */
body.loading {
    overflow: hidden;
}

/* 加载完成后显示页面内容 */
body.loaded {
    overflow: auto;
}

/* 星空特效容器 */
.starry-loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .starry-loading-canvas {
        width: 100vw;
        height: 100vh;
    }
}

@media (max-width: 375px) {
    .starry-loading-canvas {
        width: 100vw;
        height: 100vh;
    }
} 