/* Particles background styling for all pages */
#tsparticles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(26, 15, 60, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* Floating particles animation */
@keyframes particleUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.floating-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--primary-color, #ffcc00);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Main container to ensure content appears above particles */
.container, .main-container, .content-container {
    position: relative;
    z-index: 2;
} 