body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #111;
    font-family: Arial, sans-serif;
}
canvas {
    background-color: transparent;
}
#loadingText {
    margin-top: 10px;
    font-size: 16px;
    color: #008CFF;
    text-shadow: 0 0 10px #008CFF;
    opacity: 0;
    animation: fadeInPulse 2s infinite alternate ease-in-out;
    text-align: center;
}
@keyframes fadeInPulse {
    0% { opacity: 0.5; text-shadow: 0 0 5px #008CFF; }
    100% { opacity: 1; text-shadow: 0 0 10px #00AAFF; }
}
