body {
    background-color: #0b0c10 !important;
    color: #ffffff;
}

#stars-container-f2803010 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.star-f2803010 {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    /* Increased base animation duration for slower movement */
    animation: float-star-f2803010 linear infinite;
}

@keyframes float-star-f2803010 {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.2);
        opacity: 0;
    }
}