.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 20s infinite linear;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 40%;
    animation-delay: -5s;
    animation-duration: 30s;
    background: rgba(255, 107, 107, 0.2);
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 30%;
    left: 60%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.particle:nth-child(4) {
    width: 8px;
    height: 8px;
    top: 40%;
    left: 80%;
    animation-delay: -15s;
    animation-duration: 20s;
    background: rgba(254, 202, 87, 0.2);
}

.particle:nth-child(5) {
    width: 5px;
    height: 5px;
    top: 50%;
    left: 10%;
    animation-delay: -20s;
    animation-duration: 28s;
}

.particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 60%;
    left: 30%;
    animation-delay: -8s;
    animation-duration: 32s;
    background: rgba(78, 205, 196, 0.15);
}

.particle:nth-child(7) {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 50%;
    animation-delay: -12s;
    animation-duration: 24s;
}

.particle:nth-child(8) {
    width: 6px;
    height: 6px;
    top: 80%;
    left: 70%;
    animation-delay: -18s;
    animation-duration: 26s;
    background: rgba(255, 107, 107, 0.15);
}

.particle:nth-child(9) {
    width: 5px;
    height: 5px;
    top: 90%;
    left: 90%;
    animation-delay: -6s;
    animation-duration: 22s;
}

.particle:nth-child(10) {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 5%;
    animation-delay: -14s;
    animation-duration: 38s;
}

.particle:nth-child(11) {
    width: 8px;
    height: 8px;
    top: 25%;
    left: 75%;
    animation-delay: -3s;
    animation-duration: 34s;
    background: rgba(254, 202, 87, 0.1);
}

.particle:nth-child(12) {
    width: 4px;
    height: 4px;
    top: 35%;
    left: 15%;
    animation-delay: -16s;
    animation-duration: 29s;
}

.particle:nth-child(13) {
    width: 6px;
    height: 6px;
    top: 45%;
    left: 85%;
    animation-delay: -9s;
    animation-duration: 31s;
    background: rgba(78, 205, 196, 0.2);
}

.particle:nth-child(14) {
    width: 5px;
    height: 5px;
    top: 55%;
    left: 25%;
    animation-delay: -11s;
    animation-duration: 27s;
}

.particle:nth-child(15) {
    width: 7px;
    height: 7px;
    top: 65%;
    left: 65%;
    animation-delay: -7s;
    animation-duration: 33s;
    background: rgba(255, 255, 255, 0.08);
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}
