/* NEURO-SPARK (L'Étincelle Neurale) */
.neuro-spark {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #a8b3cf;
    margin-bottom: 8px;
    padding-left: 4px;
    opacity: 0.9;
    animation: sparkPulse 1.5s infinite alternate;
}

.neuro-spark.hidden {
    display: none;
}

.spark-icon {
    font-size: 1rem;
    color: #ffd700;
    /* Gold */
}

.spark-text {
    font-weight: 500;
}

@keyframes sparkPulse {
    from {
        opacity: 0.7;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(2px);
    }
}