/**
 * Particle Animation Styles
 * Creates a dynamic background with interactive particles
 * 
 * Educational Note:
 * - Canvas element is used for rendering particles
 * - JavaScript controls particle movement and interactions
 * - This creates an engaging, modern interface
 */

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

/* Additional background effects */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 166, 255, 0.03) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

