/* css/components/particles.css */
/* Estilos para las partículas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

/* Asegurar que el contenido sea legible sobre las partículas */
.section {
    position: relative;
    z-index: 1;
}

/* Mejorar contraste del texto */
.welcome-title,
.section-title,
.content-card h3 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Tema claro para partículas */
body.light-theme #particleCanvas {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%) !important;
}