body {
    margin: 0;
    overflow: hidden; /* Prevent scrollbars */
    background: radial-gradient(ellipse at bottom, #0d1226 0%, #050610 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#starCanvas {
    display: block;
    background-color: transparent; /* Main animation canvas is transparent */
    position: relative; /* Ensure it's above the background stars */
    z-index: 1; /* Make sure it's on top */
}

#backgroundStarsCanvas {
    position: fixed; /* Fixed position relative to the viewport */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; /* Place it behind the main animation canvas */
    background-color: transparent; /* Ensure its own background is transparent */
    pointer-events: none; /* Allow mouse events to pass through */
}