/* stars.css - Styles for animated floating stars background */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.floating-element {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-purple, #ccbcfc);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}
