
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
}

#repulse-circle-div {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

/*--------------------------------------------------------------
# Particles
--------------------------------------------------------------*/
#particles-js {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

canvas {
    display: block;
    vertical-align: bottom;
}


.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}


.floating-blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(100px);
    animation: blobMove 10s infinite alternate ease-in-out;
    z-index: 0;
}

.blob-1 {
    top: 10%;
    left: 5%;
    animation-duration: 12s;
}

.blob-2 {
    bottom: 10%;
    right: 5%;
    animation-duration: 15s;
}

.glowing-orb {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,120,200,1) 0%, rgba(255,50,120,0) 80%);
    border-radius: 50%;
    filter: blur(50px);
    animation: orbFloat 6s infinite alternate ease-in-out;
    z-index: 0;
}

.orb-1 {
    top: 20%;
    right: 20%;
    animation-duration: 8s;
}

.orb-2 {
    bottom: 20%;
    left: 20%;
    animation-duration: 10s;
}


.rotating-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff7eb3, #ff758c);
    opacity: 0.1;
    animation: cubeRotate 8s infinite linear;
}

.cube-1 {
    top: 15%;
    left: 10%;
    animation-duration: 12s;
}

.cube-2 {
    bottom: 15%;
    right: 10%;
    animation-duration: 10s;
}

@keyframes cubeRotate {
    0% {
        transform: rotateX(0deg) rotateY(0deg) translateY(0);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) translateY(-20px);
    }
}

.pulsing-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 120, 200, 0.5);
    border-radius: 50%;
    animation: ringPulse 5s infinite ease-in-out;
    z-index: 0;
}

.ring-1 {
    top: 25%;
    right: 30%;
    animation-duration: 6s;
}

.ring-2 {
    bottom: 25%;
    left: 30%;
    animation-duration: 7s;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Glowing Dots */
.glowing-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff758c;
    border-radius: 50%;
    opacity: 0.8;
    animation: dotMove 4s infinite alternate ease-in-out;
    z-index: 0;
}

.dot-1 {
    top: 40%;
    left: 15%;
    animation-duration: 5s;
}

.dot-2 {
    bottom: 40%;
    right: 15%;
    animation-duration: 6s;
}

@keyframes dotMove {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(-15px) translateX(10px);
    }
}

/* Animations */
@keyframes blobMove {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes orbFloat {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(-15px) translateX(10px);
    }
}
