.floating-dots-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.dot {
    position: absolute;
    background: rgba(76, 29, 149, 0.35);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(76, 29, 149, 0.4),
                inset 0 0 15px rgba(76, 29, 149, 0.4);
    backdrop-filter: blur(1px);
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(100px, 50px) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translate(50px, 100px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(-50px, 50px) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
}

/* Different sizes and animation delays for dots */
.dot:nth-child(1) { width: 80px; height: 80px; left: 10%; top: 20%; animation-delay: 0s; }
.dot:nth-child(2) { width: 60px; height: 60px; left: 30%; top: 40%; animation-delay: -2s; }
.dot:nth-child(3) { width: 100px; height: 100px; left: 50%; top: 10%; animation-delay: -4s; }
.dot:nth-child(4) { width: 40px; height: 40px; left: 70%; top: 60%; animation-delay: -6s; }
.dot:nth-child(5) { width: 90px; height: 90px; left: 80%; top: 30%; animation-delay: -8s; }
.dot:nth-child(6) { width: 70px; height: 70px; left: 20%; top: 70%; animation-delay: -10s; }
