body {
    background-image: url('https://i.pinimg.com/originals/96/de/79/96de79c539203df794424dbf49146c95.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: darken;
}
.text-shadow {
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
}
/* Circular Progress Bar */
.circle {
    width: 120px;
    height: 120px;
    border: 12px solid rgba(0, 102, 204, 0.3);
    border-top: 12px solid #0571ff;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pulsing Text Animation */
.pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}