/* Particle Animation Styles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 8s linear infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    background: rgba(115, 251, 211, 0.6);
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    background: rgba(138, 126, 252, 0.4);
    left: 20%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    left: 30%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    background: rgba(115, 251, 211, 0.5);
    left: 40%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    background: rgba(138, 126, 252, 0.6);
    left: 50%;
    animation-delay: 4s;
    animation-duration: 11s;
}

.particle:nth-child(6) {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    left: 60%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.particle:nth-child(7) {
    width: 6px;
    height: 6px;
    background: rgba(115, 251, 211, 0.3);
    left: 70%;
    animation-delay: 6s;
    animation-duration: 13s;
}

.particle:nth-child(8) {
    width: 4px;
    height: 4px;
    background: rgba(138, 126, 252, 0.5);
    left: 80%;
    animation-delay: 7s;
    animation-duration: 8s;
}

.particle:nth-child(9) {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    left: 90%;
    animation-delay: 8s;
    animation-duration: 10s;
}

.particle:nth-child(10) {
    width: 3px;
    height: 3px;
    background: rgba(115, 251, 211, 0.7);
    left: 15%;
    animation-delay: 9s;
    animation-duration: 9s;
}

.particle:nth-child(11) {
    width: 4px;
    height: 4px;
    background: rgba(138, 126, 252, 0.4);
    left: 25%;
    animation-delay: 10s;
    animation-duration: 11s;
}

.particle:nth-child(12) {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    left: 35%;
    animation-delay: 11s;
    animation-duration: 7s;
}

.particle:nth-child(13) {
    width: 3px;
    height: 3px;
    background: rgba(115, 251, 211, 0.6);
    left: 45%;
    animation-delay: 12s;
    animation-duration: 12s;
}

.particle:nth-child(14) {
    width: 5px;
    height: 5px;
    background: rgba(138, 126, 252, 0.5);
    left: 55%;
    animation-delay: 13s;
    animation-duration: 8s;
}

.particle:nth-child(15) {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    left: 65%;
    animation-delay: 14s;
    animation-duration: 10s;
}

.particle:nth-child(16) {
    width: 3px;
    height: 3px;
    background: rgba(115, 251, 211, 0.8);
    left: 75%;
    animation-delay: 15s;
    animation-duration: 9s;
}

.particle:nth-child(17) {
    width: 6px;
    height: 6px;
    background: rgba(138, 126, 252, 0.3);
    left: 85%;
    animation-delay: 16s;
    animation-duration: 13s;
}

.particle:nth-child(18) {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    left: 95%;
    animation-delay: 17s;
    animation-duration: 7s;
}

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