#loader-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
canvas {
    display: block;
}
.loading-text {
    margin-top: 24px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-2px); }
}